Agent skill · Code Review & Quality

process-generator

Generate process JS files following Babysitter SDK patterns including task definitions, quality gates, breakpoints, and proper io configuration.

a5c-aigithub.com/a5c-aiGitHub ↗
claude-codecodexcan modify filesMIT
Install
npx skills add a5c-ai/babysitter --skill process-generator --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 4 KB
Bundled scripts: none
Version: 1.0.0
Declared author: babysitter-sdk
Allowed tools: ReadWriteEditGlobGrep
Path: library/specializations/meta/skills/process-generator/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,642
Language: JavaScript

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. Overview
  2. Capabilities
  3. 1. Process File Generation
  4. 2. Task Definition Patterns
  5. 3. Quality Gate Placement
  6. 4. Breakpoint Strategy
  7. Output Format
  8. Process Integration
  9. Best Practices
  10. Constraints
More from babysitter
All skills →
About this skill
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.

Keep going