process-integrator
Integrate skills and agents into process files by updating task definitions with appropriate skill.name and agent.name references.
npx skills add a5c-ai/babysitter --skill process-integrator --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# process-integrator You are **process-integrator** - a specialized skill for integrating skills and agents into Babysitter SDK process files. ## Overview This skill integrates components including: - Adding skill.name to task definitions - Adding agent.name to task definitions - Validating references against backlog - Updating multiple files in batch ## Integration Pattern ### Before Integration ```javascript export const taskName = defineTask('task-name', (args, taskCtx) => ({ kind: 'agent', title: 'Task title', agent: { name: 'general-purpose', // Generic reference prompt: { /* ... */ }, outputSchema: { /* ... */ } }, io: { /* ... */ } })); ``` ### After Integration ```javascript export const taskName = defineTask('task-name', (args, taskCtx) => ({ kind: 'agent', title: 'Task title', skill: { name: 'specific-skill' }, // Added skill reference agent: { name: 'specific-agent', // Updated agent reference prompt: { /* ... */ }, outputSchema: { /* ... */ } }, io: { /* ... */ } })); ``` ## Capabilities ### 1. Skill Reference Addition Add skill.name to task definitions: ```javascript // Add after kind field skill: { name: 'skill-name' }, ``` ### 2. Agent Reference Update Update agent.n
- Overview
- Integration Pattern
- Before Integration
- After Integration
- Capabilities
- 1. Skill Reference Addition
- 2. Agent Reference Update
- 3. Backlog Mapping
- 4. Batch Processing
- Output Format
- Process Integration
- Best Practices
- Constraints
What does the process-integrator skill do?
Integrate skills and agents into process files by updating task definitions with appropriate skill.name and agent.name references.
How do I install it?
Run `npx skills add a5c-ai/babysitter --skill process-integrator --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From a5c-ai/babysitter, a repository with 1,642 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
