Skip to content

🐛 A2UI bundle fails: PeekabooCore package not found #316

@YuriNachos

Description

@YuriNachos

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

  1. Run bash scripts/bundle-a2ui.sh
  2. 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:

  1. Missing initialization step in the build script
  2. Incorrect path resolution for the submodule
  3. 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 ..
fi

Or verify the path to PeekabooCore package is correct.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions