Agent skill · Workflow & Productivity

process-builder

Scaffold new babysitter process definitions following SDK patterns, proper structure, and best practices. Guides the 3-phase workflow from research to implementation.

a5c-aigithub.com/a5c-aiGitHub ↗
claude-codecodexMIT
Install
npx skills add a5c-ai/babysitter --skill process-builder --agent claude-code

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

Facts
Files in the skill folder: 1
SKILL.md size: 18 KB
Bundled scripts: none
Path: .claude/skills/process-builder/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 Builder Create new process definitions for the babysitter event-sourced orchestration framework. ## Quick Reference ``` Processes live in: library/ ├── methodologies/ # Reusable development approaches (TDD, BDD, Scrum, etc.) │ └── [name]/ │ ├── README.md # Documentation │ ├── [name].js # Main process │ └── examples/ # Sample inputs │ └── specializations/ # Domain-specific processes ├── [category]/ # Engineering specializations (direct children) │ └── [process].js └── domains/ └── [domain]/ # Business, Science, Social Sciences └── [spec]/ ├── README.md ├── references.md ├── processes-backlog.md └── [process].js ``` ## 3-Phase Workflow ### Phase 1: Research & Documentation Create foundational documentation: ```bash # Check existing specializations ls library/specializations/ # Check methodologies ls library/methodologies/ ``` **Create:** - `README.md` - Overview, roles, goals, use cases, common flows - `references.md` - External references, best practices, links to sources ### Phase 2: Identify Processes Create `processes-backlog.md` with identified processes: ```markdown # Processes Backlog - [Specialization Name] ## Identified Processes - [ ] **process-name** - Short desc

What's inside
Steps it walks through
  1. Quick Reference
  2. 3-Phase Workflow
  3. Phase 1: Research & Documentation
  4. Phase 2: Identify Processes
  5. Phase 3: Create Process Files
  6. Process File Structure
  7. SDK Context API Reference
  8. Task Kinds
  9. Breakpoint Patterns
  10. Basic Approval Gate
  11. With File References (for UI display)
  12. Conditional Breakpoint
  13. Common Patterns
  14. Quality Convergence Loop
Commands it runs
Check existing specializations
ls library/specializations/
Check methodologies
ls library/methodologies/
Create a new run
babysitter run:create \
Iterate the run
babysitter run:iterate .a5c/runs/<runId> --json
List pending tasks
babysitter task:list .a5c/runs/<runId> --pending --json
More from babysitter
All skills →
About this skill
What does the process-builder skill do?

Scaffold new babysitter process definitions following SDK patterns, proper structure, and best practices. Guides the 3-phase workflow from research to implementation.

How do I install it?

Run `npx skills add a5c-ai/babysitter --skill process-builder --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