Integrate skills and agents into process files by updating task definitions with appropriate skill.name and agent.name references.
Updates task definitions with skill and agent names when integrating components into process files.
npx claudepluginhub a5c-ai/babysitterThis skill is limited to using the following tools:
You are process-integrator - a specialized skill for integrating skills and agents into Babysitter SDK process files.
This skill integrates components including:
export const taskName = defineTask('task-name', (args, taskCtx) => ({
kind: 'agent',
title: 'Task title',
agent: {
name: 'general-purpose', // Generic reference
prompt: { /* ... */ },
outputSchema: { /* ... */ }
},
io: { /* ... */ }
}));
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: { /* ... */ }
}));
Add skill.name to task definitions:
// Add after kind field
skill: { name: 'skill-name' },
Update agent.name field:
agent: {
name: 'specialized-agent', // From backlog mapping
// ... rest unchanged
}
Read mapping from skills-agents-backlog.md:
| Process | Skills | Agents |
|---|---|---|
| process.js | SK-001: skill-name | AG-001: agent-name |
Process multiple files:
{
"files": ["process1.js", "process2.js"],
"updates": [
{ "file": "process1.js", "task": "task1", "skill": "skill1", "agent": "agent1" }
]
}
{
"filesUpdated": 5,
"integrationsAdded": 12,
"updatedFiles": [
{
"path": "process1.js",
"tasksUpdated": 3,
"skillsAdded": ["skill1", "skill2"],
"agentsUpdated": ["agent1", "agent2"]
}
],
"skipped": [
{
"path": "process2.js",
"reason": "No mapping found"
}
],
"artifacts": []
}
This skill integrates with:
phase7-integrate-skills-agents.js - Primary integrationspecialization-creation.js - Phase 7batch-process-integration.js - Batch processingActivates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.