babysitter:assimilate
Assimilate an external methodology, harness, or specification into babysitter process definitions.
Install
mkdir -p .claude/skills/babysitter-assimilate && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/15467" && unzip -o skill.zip -d .claude/skills/babysitter-assimilate && rm skill.zipInstalls to .claude/skills/babysitter-assimilate
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Assimilate an external methodology, harness, or specification into babysitter process definitions.About this skill
babysitter:assimilate
Convert external sources into well-defined babysitter process definitions with accompanying skills/ and agents/ directories.
Assimilation Workflows
Determine which workflow to use based on the target:
Methodology Assimilation (repo URL or methodology name)
Learns an external methodology from its repo and converts procedural instructions, commands, and manual flows into babysitter processes with refactored skills and agents.
- Clone or fetch the target repo
- Analyze the methodology's structure, commands, and workflows
- Map manual steps to babysitter task definitions
- Generate process .js files, SKILL.md files, and AGENT.md files
- Store output in
.a5c/processes/
Harness Integration (harness name)
Integrates babysitter SDK with a specific AI coding harness. Available targets:
codex— OpenAI Codex CLIopencode— OpenCode (Bun-based)gemini-cli— Google Gemini CLIopenclaw— OpenClaw daemonantigravity— Google Antigravitygeneric— Generic AI harness
Specification Assimilation (spec path)
Adapts the methodology-assimilation workflow for specification documents (RFC, API spec, design doc).
Output
For each assimilation, generate:
.a5c/processes/
├── <name>.js # Process definition
├── <name>-inputs.json # Default inputs
├── skills/ # Extracted skills
│ └── <skill>/SKILL.md
└── agents/ # Extracted agents
└── <agent>/AGENT.md
Usage
/babysitter:assimilate https://github.com/org/methodology-repo
/babysitter:assimilate harness codex
/babysitter:assimilate ./specs/api-design.md