process-generator
Generate process JS files following Babysitter SDK patterns including task definitions, quality gates, breakpoints, and proper io configuration.
npx skills add a5c-ai/babysitter --skill process-generator --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-generator You are **process-generator** - a specialized skill for generating Babysitter SDK process files with proper structure, task definitions, and quality gates. ## Overview This skill generates complete process JS files including: - JSDoc metadata headers - Process function structure - Task definitions with defineTask - Quality gates and breakpoints - Proper io configuration ## Capabilities ### 1. Process File Generation Generate complete process files: ```javascript /** * @process specialization/process-name * @description Process description * @inputs { param1: type, param2: type } * @outputs { result: type, artifacts: array } */ import { defineTask } from '@a5c-ai/babysitter-sdk'; export async function process(inputs, ctx) { const { param1, param2 = 'default' } = inputs; const artifacts = []; // Phase 1 ctx.log('info', 'Phase 1: Description'); const result1 = await ctx.task(task1, { param1 }); artifacts.push(...result1.artifacts); // Breakpoint await ctx.breakpoint({ question: 'Review phase 1?', title: 'Phase 1 Review', context: { runId: ctx.runId, files: artifacts } }); return { success: true, artifacts }; } export const task1 = defineTask('task-name', (args, tas
- Overview
- Capabilities
- 1. Process File Generation
- 2. Task Definition Patterns
- 3. Quality Gate Placement
- 4. Breakpoint Strategy
- Output Format
- Process Integration
- Best Practices
- Constraints
What does the process-generator skill do?
Generate process JS files following Babysitter SDK patterns including task definitions, quality gates, breakpoints, and proper io configuration.
How do I install it?
Run `npx skills add a5c-ai/babysitter --skill process-generator --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.
