Help us improve
Share bugs, ideas, or general feedback.
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 babysitterHow this skill is triggered — by the user, by Claude, or both
Slash command
/babysitter:babysitThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Orchestrate `.a5c/runs/<runId>/` through iterative execution.
Orchestrates multi-phase workflows chaining foundational task skills (git-wrapup, release-and-publish, maintenance, etc.) for MCP server projects. Routes user intent to workflow files for greenfield builds, maintenance, or fix-and-release.
Validates, runs, and debugs multi-agent YAML workflows. Use when orchestrating AI agents, configuring routing, or setting up human-in-the-loop gates.
Executes orchestration workflows using -> || ~> syntax with real-time ASCII visualization, interactive steering at checkpoints, error recovery, and resume from .orchestration/state.json.
Share bugs, ideas, or general feedback.
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.