From babysitter
Orchestrates A5C runs in .a5c/runs/<runId>/ via babysitter CLI for iterative execution. Installs SDK/jq, fetches instructions, and manages processes with tools like Bash/Task.
npx claudepluginhub a5c-ai/babysitter --plugin babysitterThis skill is limited to using the following tools:
Orchestrate `.a5c/runs/<runId>/` through iterative execution.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Guides MCP server integration in Claude Code plugins via .mcp.json or plugin.json configs for stdio, SSE, HTTP types, enabling external services as tools.
Orchestrate .a5c/runs/<runId>/ through iterative execution.
Read the SDK version from versions.json to ensure version compatibility:
SDK_VERSION=$(node -e "try{console.log(JSON.parse(require('fs').readFileSync('${CLAUDE_PLUGIN_ROOT}/versions.json','utf8')).sdkVersion||'latest')}catch{console.log('latest')}")
sudo npm i -g @a5c-ai/babysitter-sdk@$SDK_VERSION
# sudo is depending on the env and system
then use the CLI alias: CLI="babysitter"
Alternatively, use the CLI alias: CLI="npx -y @a5c-ai/babysitter-sdk@$SDK_VERSION"
make sure you have jq installed and available in the path. if not, install it.
Run the following command to get full orchestration instructions:
babysitter instructions:babysit-skill --harness claude-code --interactive
For non-interactive mode (running with -p flag or no AskUserQuestion tool):
babysitter instructions:babysit-skill --harness claude-code --no-interactive
Follow the instructions returned by the command above to orchestrate the run.