Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

Babysitter Process Builder

Scaffolds new process definitions for the babysitter event-sourced orchestration framework following official SDK patterns.

Dev & CodingAdvanced1,761103AI 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 .js process file.
  • Supplies the full file template: JSDoc header (@process, @inputs, @outputs, @graph), export async function process(inputs, ctx), and defineTask task 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

  1. "Add a core-mechanics-prototyping process under game-development" → picks the right directory, creates README/references/backlog, then the process file.
  2. "Build a methodology that iterates until quality hits 85" → applies the convergence loop with parallel coverage/lint/security/test checks.
  3. "Validate the process I just wrote" → runs the checklist for @graph nodes, 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)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download 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.

  1. Open a terminal.
  2. Clone the repository: git clone https://github.com/a5c-ai/babysitter.git
  3. Create the skills directory: mkdir -p ~/.claude/skills
  4. Copy the skill: cp -r babysitter/.claude/skills/process-builder ~/.claude/skills/
  5. Restart Claude Code and invoke it with "use the process-builder skill".
  6. Note: it is only useful inside the babysitter repo or a project that has @a5c-ai/babysitter-sdk and the babysitter CLI installed.