install
source · Clone the upstream repo
git clone https://github.com/a5c-ai/babysitter
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/a5c-ai/babysitter "$T" && mkdir -p ~/.claude/skills && cp -r "$T/plugins/babysitter-omp/skills/contrib" ~/.claude/skills/a5c-ai-babysitter-contrib && rm -rf "$T"
manifest:
plugins/babysitter-omp/skills/contrib/SKILL.mdsource content
contrib
Invoke the babysitter:babysit skill (using the Skill tool) and follow its instructions (SKILL.md).
Process Routing
Contribution processes live under the active process library's
cradle/ directory. Resolve the active library root with babysitter process-library:active --json and route based on arguments:
Issue-based (opens a GitHub issue in a5c-ai/babysitter)
- Bug report →
— Report a bug in the SDK, CLI, process library, etc.cradle/bug-report.js#process - Feature request →
— Request a new feature or enhancementcradle/feature-request.js#process - Documentation question →
— Ask about undocumented behavior or missing docscradle/documentation-question.js#process
PR-based (forks repo, creates branch, submits PR to a5c-ai/babysitter)
- Bugfix →
— User already has the fix for a bugcradle/bugfix.js#process - Feature implementation →
— User already has a feature implementationcradle/feature-implementation-contribute.js#process - Harness integration →
— User has a harness (CI/CD, IDE, editor) integrationcradle/feature-harness-integration-contribute.js#process - Library contribution →
— New or improved process/skill/subagent for the librarycradle/library-contribution.js#process - Documentation answer →
— User has an answer for an unanswered docs questioncradle/documentation-contribute-answer.js#process
Router (when arguments are empty or general)
- Contribute →
— Explains contribution types and routes to the specific processcradle/contribute.js#process
Contribution Rules
- PR-based contributions: fork the babysitter repo (a5c-ai/babysitter) for the user, ask to star if not already starred, perform changes, submit PR
- Issue-based contributions: gather details, search for duplicates, review, then open an issue in a5c-ai/babysitter
- Add breakpoints (permissions) before ALL gh actions (fork, star, submit PR/issue) to allow user review and cancellation
- If arguments are empty: use the
router process to show options and route accordinglycontribute.js