process-integrator

Solid

Integrate skills and agents into process files by updating task definitions with appropriate skill.name and agent.name references.

AI & Automation 814 stars 53 forks Updated today MIT

Install

View on GitHub

Quality Score: 95/100

Stars 20%
97
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# 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.name field: ```javascript agent: { name: 'specialized-agent', // From backlog mapping // ... rest unchanged } ``` ### 3. Backlog Mapping Read mapping from skills-agents-backlog.md: | Process | Skills | Agents | |--------...

Details

Author
a5c-ai
Repository
a5c-ai/babysitter
Created
4 months ago
Last Updated
today
Language
JavaScript
License
MIT

Related Skills