accomplish-status
Report babysitter orchestration run status to Accomplish AI desktop app via file-based IPC
Profile →npx skills add a5c-ai/babysitter --skill accomplish-status-skill --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# accomplish-status Report babysitter run status to the [Accomplish AI](https://github.com/accomplish-ai/accomplish) desktop app via file-based IPC. ## Overview This skill writes run status JSON to a well-known directory. External consumers (such as a future Accomplish daemon integration or other tooling) can watch this directory for changes to track orchestration progress, pending breakpoints, and completion state. ## Status File Location Status files are written to: ``` <OPENCODE_CONFIG_DIR>/run-status/<runId>.json ``` Where `OPENCODE_CONFIG_DIR` is resolved from the `OPENCODE_CONFIG_DIR` environment variable (typically `~/.config/opencode` or platform equivalent). ## Dependencies ### Babysitter SDK and CLI Read the SDK version from `versions.json` to ensure version compatibility: ```bash SDK_VERSION=$(node -e "try{const fs=require('fs');const probes=['./plugins/babysitter-unified/versions.json','./node_modules/@a5c-ai/babysitter-opencode/versions.json'];for(const probe of probes){if(fs.existsSync(probe)){console.log(JSON.parse(fs.readFileSync(probe,'utf8')).sdkVersion||'latest');process.exit(0)}}console.log('latest')}catch{console.log('latest')}") npm i -g @a5c-ai/babysitter-sdk
- Overview
- Status File Location
- Dependencies
- Babysitter SDK and CLI
- Instructions
- 1. Resolve the status directory
- 2. Get run status from babysitter
- 3. Write the status file
- 4. Status file format
- 5. When to update
- 6. Cleanup
npm i -g @a5c-ai/babysitter-sdk@$SDK_VERSION if command -v babysitter >/dev/null 2>&1 && babysitter --version >/dev/null 2>&1; then else fi mkdir -p "$STATUS_DIR" babysitter run:status .a5c/runs/<runId> --json
What does the accomplish-status skill do?
Report babysitter orchestration run status to Accomplish AI desktop app via file-based IPC
How do I install it?
Run `npx skills add a5c-ai/babysitter --skill accomplish-status-skill --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.