Babysitter babysit
install
source · Clone the upstream repo
git clone https://github.com/a5c-ai/babysitter
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/a5c-ai/babysitter "$T" && mkdir -p ~/.claude/skills && cp -r "$T/plugins/babysitter-codex/skills/babysit" ~/.claude/skills/a5c-ai-babysitter-babysit && rm -rf "$T"
manifest:
plugins/babysitter-codex/skills/babysit/SKILL.mdsource content
babysit
Orchestrate
.a5c/runs/<runId>/ through iterative execution.
Dependencies
Babysitter SDK and CLI
Read the SDK version from
versions.json to ensure version compatibility:
SDK_VERSION=$(node -e "try{console.log(JSON.parse(require('fs').readFileSync('${CODEX_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"
jq
make sure you have jq installed and available in the path. if not, install it.
Instructions
Run the following command to get full orchestration instructions:
babysitter instructions:babysit-skill --harness codex --interactive
For non-interactive runs (e.g., with
-p flag or no question tool):
babysitter instructions:babysit-skill --harness codex --no-interactive
Follow the instructions returned by the command above to orchestrate the run.