Agent skill

accomplish-status

Report babysitter orchestration run status to Accomplish AI desktop app via file-based IPC

a5c-ai1,642★ · 1 repos on radarProfile →
claude-codecodexMIT
Install
npx skills add a5c-ai/babysitter --skill accomplish-status-skill --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 4 KB
Bundled scripts: none
Path: plugins/babysitter-unified/per-harness/opencode/accomplish-status-skill/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,642
Language: JavaScript

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. Overview
  2. Status File Location
  3. Dependencies
  4. Babysitter SDK and CLI
  5. Instructions
  6. 1. Resolve the status directory
  7. 2. Get run status from babysitter
  8. 3. Write the status file
  9. 4. Status file format
  10. 5. When to update
  11. 6. Cleanup
Commands it runs
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
More from babysitter
All skills →
About this skill
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.

Keep going