smithery.ai

babysitter-breakpoint

Use the breakpoint API to communicate with users during babysitter runs (post breakpoints, poll for release, fetch feedback, and read context files). Trigger whenever a babysitter workflow needs approval, input, or status updates via breakpoints.

First seen Mar 26, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,243 B
  • docs SUMMARY.md 275 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

babysitter-breakpoint

Use this skill to handle all user communication via the breakpoints CLI. Do not prompt the user directly. Always post a breakpoint and poll until it is released, then fetch feedback and continue.

Workflow

  1. Create a breakpoint with the required payload and payload.context.files.
  2. Poll breakpoints breakpoint wait <id> --interval 3 until released.
  3. Apply feedback from the printed details and continue.

Payload structure

Always include a context.files array for referenced files:

{
  "context": {
    "runId": "run-...",
    "files": [
      { "path": ".a5c/runs/<runId>/artifacts/process.md", "format": "markdown" },
      { "path": ".a5c/runs/<runId>/inputs.json", "format": "code", "language": "json" },
      { "path": ".a5c/runs/<runId>/code/main.js", "format": "code", "language": "javascript" }
    ]
  }
}

See references/breakpoint-api.md for curl examples and endpoints.