library/specializations/meta/skills/process-integrator/SKILL.md
Integrate skills and agents into process files by updating task definitions with appropriate skill.name and agent.name references.
npx skillsauth add a5c-ai/babysitter process-integratorInstall 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.
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 processingdevelopment
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.