Agent skill
babysitter:call
Start a babysitter orchestration run. Use this command to start babysitting a complex workflow.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/call
SKILL.md
babysitter:call
Orchestrate .a5c/runs/<runId>/ through iterative execution. Use the babysitter SDK CLI to drive the orchestration loop inside Codex CLI.
Dependencies
Ensure babysitter CLI is available:
npx -y @a5c-ai/[email protected] version --json
Workflow
1. Interview Phase (Interactive)
Gather user intent, requirements, goals, and scope. Research the repo structure, search the process library for relevant specializations and methodologies.
2. Process Creation
Create the process .js file with task definitions. Install @a5c-ai/babysitter-sdk in .a5c/package.json if not present.
3. Create Run
babysitter run:create \
--process-id <id> \
--entry <path>#<export> \
--inputs <inputs-file> \
--prompt "$PROMPT" \
--harness codex \
--session-id "$CODEX_SESSION_ID" \
--plugin-root "$CODEX_PLUGIN_ROOT" \
--json
4. Iteration Loop
babysitter run:iterate .a5c/runs/<runId> --json --iteration <n> --plugin-root "$CODEX_PLUGIN_ROOT"
For each pending task:
- agent — Build prompt from role/task/instructions, execute via Codex tools
- node — Execute Node.js script via shell
- shell — Run shell command directly
- breakpoint — Pause for user approval (interactive) or auto-resolve (yolo)
- sleep — Wait until timestamp
- skill — Load and follow SKILL.md instructions
- hook — Fire named lifecycle hook
- parallel — Execute sub-effects concurrently
- orchestrator_task — Delegate sub-orchestration
5. Post Results
Write result value to a separate file, then post via CLI:
babysitter task:post .a5c/runs/<runId> <effectId> \
--status ok \
--value tasks/<effectId>/output.json \
--json
6. Check Completion
When run:iterate returns status: "completed" with a completionProof, the run is done. Return the proof wrapped in <promise>PROOF</promise> to signal completion.
Profile Integration
Read user profile for personalization:
babysitter profile:read --user --json
babysitter profile:read --project --json
Quick Reference
| Command | Description |
|---|---|
run:create |
Create and bind a new run |
run:iterate |
Get next pending tasks |
run:status |
Check run state |
task:list --pending |
List pending effects |
task:post |
Post task result |
session:resume |
Resume existing session |
skill:discover |
Find available skills/agents |
health --json |
SDK health check |
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?