-
-
Notifications
You must be signed in to change notification settings - Fork 52.9k
Closed
Description
GitHub Issue: PeekabooCore not found during bundle-a2ui build
Title
🐛 A2UI bundle fails: "PeekabooCore" package not found
Description
During bundle-a2ui.sh execution, the build fails with error:
⏺️ Ошибка сборки — не найден пакет PeekabooCore.
The Peekaboo submodule exists at Peekaboo/ but is not initialized properly for the build process.
Reproduction Steps
- Run
bash scripts/bundle-a2ui.sh - Observe error about PeekabooCore not found
Environment
- Clawdbot version: 2026.1.5-3
- Submodule status: Peekaboo (v3.0.0-beta2-59-gc1243a79)
Root Cause
The Peekaboo submodule (Peekaboo/) is present but the PeekabooCore package is not found during the build process, suggesting:
- Missing initialization step in the build script
- Incorrect path resolution for the submodule
- Submodule not properly cloned/initialized
Suggested Fix
Add proper submodule initialization in scripts/bundle-a2ui.sh:
# Initialize Peekaboo submodule before build
if [ ! -d "Peekaboo/node_modules" ]; then
echo "Initializing Peekaboo submodule..."
cd Peekaboo && npm install && cd ..
fiOr verify the path to PeekabooCore package is correct.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels