Babysitter Process Builder
Scaffolds new process definitions for the babysitter event-sourced orchestration framework following official SDK patterns.
Dev & CodingAdvanced★ 1,761⑂ 103AI score 7/10Last updated: Sep 2, 2026
What it does
- Scaffolds new processes into babysitter's
library/layout (methodologies, engineering specializations, and domain specializations). - Walks a 3-phase workflow: research & docs (README, references) →
processes-backlog.md→ the actual.jsprocess file. - Supplies the full file template: JSDoc header (
@process,@inputs,@outputs,@graph),export async function process(inputs, ctx), anddefineTasktask definitions. - Documents the SDK context API (
ctx.task,ctx.breakpoint,ctx.parallel.all/map,ctx.sleepUntil,ctx.log) plus reusable patterns: quality convergence loops, phased workflows with human reviews, parallel fan-out with aggregation. - Includes CLI testing commands (
babysitter run:create,run:iterate,task:list,task:post) and a final validation checklist.
Who it's for
- Developers contributing new methodology or specialization processes to a5c-ai/babysitter.
- Teams adding human-approval breakpoints to event-sourced orchestration runs.
- Maintainers enforcing consistent file structure and Atlas graph metadata.
Example uses
- "Add a core-mechanics-prototyping process under game-development" → picks the right directory, creates README/references/backlog, then the process file.
- "Build a methodology that iterates until quality hits 85" → applies the convergence loop with parallel coverage/lint/security/test checks.
- "Validate the process I just wrote" → runs the checklist for
@graphnodes, input defaults, phase comments, and return-schema alignment.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/a5c-ai/babysitter/HEAD/.claude/skills/process-builder/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the .claude/skills/process-builder folder from the GitHub repo a5c-ai/babysitter into my ~/.claude/skills/process-builder/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/a5c-ai/babysitter.git /tmp/babysitter && mkdir -p ~/.claude/skills && cp -r /tmp/babysitter/.claude/skills/process-builder ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the repository:
git clone https://github.com/a5c-ai/babysitter.git - Create the skills directory:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r babysitter/.claude/skills/process-builder ~/.claude/skills/ - Restart Claude Code and invoke it with "use the process-builder skill".
- Note: it is only useful inside the babysitter repo or a project that has
@a5c-ai/babysitter-sdkand thebabysitterCLI installed.
View source on GitHub ↗License: MIT