plugins/babysitter-codex/.codex/skills/babysitter/call/SKILL.md
Start a babysitter orchestration run. Use this command to start babysitting a complex workflow.
npx skillsauth add a5c-ai/babysitter babysitter:callInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Orchestrate .a5c/runs/<runId>/ through iterative execution. Use the babysitter SDK CLI to drive the orchestration loop inside Codex CLI.
Ensure babysitter CLI is available:
npx -y @a5c-ai/[email protected] version --json
Gather user intent, requirements, goals, and scope. Research the repo structure, search the process library for relevant specializations and methodologies.
Create the process .js file with task definitions. Install @a5c-ai/babysitter-sdk in .a5c/package.json if not present.
When searching for reusable processes, skills, and agents:
.a5c/processesupstream/babysitter/skills/babysit/processupstream/babysitter/skills/babysit/referenceOverride process root with BABYSITTER_PROCESS_LIBRARY_ROOT when needed.
babysitter run:create \
--process-id <id> \
--entry <path>#<export> \
--inputs <inputs-file> \
--prompt "$PROMPT" \
--harness codex \
--session-id "${CODEX_THREAD_ID:-$CODEX_SESSION_ID}" \
--plugin-root "$CODEX_PLUGIN_ROOT" \
--json
babysitter run:iterate .a5c/runs/<runId> --json --iteration <n> --plugin-root "$CODEX_PLUGIN_ROOT"
For each pending task:
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
When run:iterate returns status: "completed" with a completionProof, the run is done. Return the proof wrapped in <promise>PROOF</promise> to signal completion.
Read user profile for personalization:
babysitter profile:read --user --json
babysitter profile:read --project --json
| 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 |
development
Model documentation skill for generating model cards following Google's model card framework.
development
MLflow integration skill for experiment tracking, model registry, and artifact management. Enables LLMs to log experiments, compare runs, manage model lifecycle, and retrieve artifacts through the MLflow API.
data-ai
LIME-based local explanation skill for individual predictions across tabular, text, and image data.
devops
Kubeflow Pipelines skill for ML workflow orchestration, component management, and Kubernetes-native ML.