@a5c-ai/babysitter-opencode 5.0.1-staging.702617b8 → 5.0.1-staging.70c61e4c7b4d
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +17 -19
- package/bin/install-shared.js +4 -4
- package/commands/blueprints.md +64 -0
- package/commands/call.md +11 -7
- package/commands/check-forbidden-markers.md +68 -0
- package/commands/cleanup.md +37 -9
- package/commands/contrib.md +31 -31
- package/commands/doctor.md +2 -3
- package/commands/forever.md +6 -6
- package/commands/help.md +11 -10
- package/commands/observe.md +6 -1
- package/commands/plan.md +17 -7
- package/commands/plugins.md +22 -255
- package/commands/project-install.md +10 -10
- package/commands/resume.md +8 -8
- package/commands/retrospect.md +55 -55
- package/commands/user-install.md +10 -10
- package/commands/yolo.md +11 -7
- package/hooks/babysitter-proxied-session-created.js +4 -2
- package/hooks/babysitter-proxied-session-created.sh +0 -0
- package/hooks/babysitter-proxied-shell-env.js +4 -2
- package/hooks/babysitter-proxied-shell-env.sh +0 -0
- package/hooks/babysitter-proxied-stop-hook.sh +3 -0
- package/hooks/babysitter-proxied-tool-execute-after.js +4 -2
- package/hooks/babysitter-proxied-tool-execute-after.sh +0 -0
- package/hooks/babysitter-proxied-tool-execute-before.js +4 -2
- package/hooks/babysitter-proxied-tool-execute-before.sh +0 -0
- package/hooks/hooks.json +0 -8
- package/package.json +6 -8
- package/plugin.json +1 -1
- package/scripts/create-release-tag.mjs +18 -0
- package/scripts/publish-from-tag.mjs +41 -0
- package/scripts/team-install.js +0 -0
- package/skills/accomplish-status/SKILL.md +8 -2
- package/skills/babysit/SKILL.md +35 -10
- package/skills/blueprints/SKILL.md +66 -0
- package/skills/call/SKILL.md +5 -1
- package/skills/check-forbidden-markers/SKILL.md +69 -0
- package/skills/cleanup/SKILL.md +37 -9
- package/skills/contrib/SKILL.md +25 -25
- package/skills/doctor/SKILL.md +2 -3
- package/skills/help/SKILL.md +11 -10
- package/skills/observe/SKILL.md +6 -1
- package/skills/plan/SKILL.md +11 -1
- package/skills/plugins/SKILL.md +18 -251
- package/skills/project-install/SKILL.md +3 -3
- package/skills/resume/SKILL.md +1 -1
- package/skills/retrospect/SKILL.md +48 -48
- package/skills/user-install/SKILL.md +3 -3
- package/skills/yolo/SKILL.md +5 -1
- package/versions.json +2 -2
- package/hooks/babysitter-proxied-session-idle.js +0 -24
- package/hooks/babysitter-proxied-session-idle.sh +0 -3
- package/scripts/sync-command-docs.cjs +0 -107
- package/scripts/sync-command-surfaces.js +0 -52
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ complex multi-step workflows -- powered by the Babysitter SDK.
|
|
|
9
9
|
## Plugin Structure
|
|
10
10
|
|
|
11
11
|
```
|
|
12
|
-
plugins/
|
|
12
|
+
artifacts/generated-plugins/opencode/
|
|
13
13
|
bin/
|
|
14
14
|
cli.cjs CLI entry point (babysitter-opencode command)
|
|
15
15
|
install.cjs Installation script
|
|
@@ -36,31 +36,29 @@ plugins/babysitter-opencode/
|
|
|
36
36
|
|
|
37
37
|
### Prerequisites
|
|
38
38
|
|
|
39
|
-
Install the Babysitter
|
|
39
|
+
Install the Babysitter CLI once:
|
|
40
40
|
|
|
41
41
|
```bash
|
|
42
|
-
npm install -g @a5c-ai/babysitter
|
|
42
|
+
npm install -g @a5c-ai/babysitter
|
|
43
43
|
```
|
|
44
44
|
|
|
45
|
-
### Method 1:
|
|
45
|
+
### Method 1: Babysitter harness install (recommended)
|
|
46
46
|
|
|
47
|
-
|
|
48
|
-
npm install -g @a5c-ai/babysitter-opencode
|
|
49
|
-
```
|
|
50
|
-
|
|
51
|
-
The `postinstall` script automatically copies the plugin into your current
|
|
52
|
-
workspace's `.opencode/plugins/babysitter/` directory.
|
|
53
|
-
|
|
54
|
-
To install into a specific workspace:
|
|
47
|
+
Use the SDK helper for scriptable global or workspace installs. This is the canonical path used by the installer tests and resolves to `npx --yes @a5c-ai/babysitter-opencode install ...` under the hood:
|
|
55
48
|
|
|
56
49
|
```bash
|
|
57
|
-
|
|
50
|
+
# Global install
|
|
51
|
+
babysitter harness:install-plugin opencode
|
|
52
|
+
|
|
53
|
+
# Workspace install
|
|
54
|
+
babysitter harness:install-plugin opencode --workspace /path/to/project
|
|
58
55
|
```
|
|
59
56
|
|
|
60
|
-
### Method 2:
|
|
57
|
+
### Method 2: Published package installer
|
|
61
58
|
|
|
62
59
|
```bash
|
|
63
|
-
babysitter
|
|
60
|
+
npx --yes @a5c-ai/babysitter-opencode install --global
|
|
61
|
+
npx --yes @a5c-ai/babysitter-opencode install --workspace /path/to/project
|
|
64
62
|
```
|
|
65
63
|
|
|
66
64
|
### Method 3: Manual copy
|
|
@@ -94,13 +92,13 @@ OpenCode config directory (`<userDataPath>/opencode/plugins/babysitter/`).
|
|
|
94
92
|
|
|
95
93
|
```bash
|
|
96
94
|
# Auto-detects Accomplish during standard install
|
|
97
|
-
|
|
95
|
+
npx --yes @a5c-ai/babysitter-opencode install --global
|
|
98
96
|
|
|
99
97
|
# Or target Accomplish explicitly
|
|
100
|
-
babysitter-opencode install --accomplish
|
|
98
|
+
npx --yes @a5c-ai/babysitter-opencode install --accomplish
|
|
101
99
|
|
|
102
100
|
# Install to both standalone OpenCode and Accomplish
|
|
103
|
-
babysitter-opencode install --global --accomplish
|
|
101
|
+
npx --yes @a5c-ai/babysitter-opencode install --global --accomplish
|
|
104
102
|
```
|
|
105
103
|
|
|
106
104
|
Accomplish stores OpenCode config at platform-specific locations:
|
|
@@ -206,7 +204,7 @@ babysitter process-library:active --json
|
|
|
206
204
|
## Running Tests
|
|
207
205
|
|
|
208
206
|
```bash
|
|
209
|
-
cd plugins/
|
|
207
|
+
cd artifacts/generated-plugins/opencode
|
|
210
208
|
npm test
|
|
211
209
|
```
|
|
212
210
|
|
package/bin/install-shared.js
CHANGED
|
@@ -29,7 +29,7 @@ function writeFileIfChanged(filePath, contents) {
|
|
|
29
29
|
try {
|
|
30
30
|
const existing = fs.readFileSync(filePath, 'utf8');
|
|
31
31
|
if (existing === contents) return false;
|
|
32
|
-
} catch {}
|
|
32
|
+
} catch (e) { process.stderr.write('[extension-mux] file read failed for ' + filePath + ', overwriting: ' + (e instanceof Error ? e.message : String(e)) + '\n'); }
|
|
33
33
|
fs.mkdirSync(path.dirname(filePath), { recursive: true });
|
|
34
34
|
fs.writeFileSync(filePath, contents);
|
|
35
35
|
return true;
|
|
@@ -82,7 +82,7 @@ function writeJson(filePath, value) {
|
|
|
82
82
|
function ensureExecutable(filePath) {
|
|
83
83
|
try {
|
|
84
84
|
fs.chmodSync(filePath, 0o755);
|
|
85
|
-
} catch {}
|
|
85
|
+
} catch (e) { process.stderr.write('[extension-mux] chmod failed for ' + filePath + ': ' + (e instanceof Error ? e.message : String(e)) + '\n'); }
|
|
86
86
|
}
|
|
87
87
|
|
|
88
88
|
function normalizeMarketplaceSourcePath(source, marketplacePath) {
|
|
@@ -104,7 +104,7 @@ function ensureMarketplaceEntry(marketplacePath, pluginRoot) {
|
|
|
104
104
|
name: PLUGIN_NAME,
|
|
105
105
|
source: relSource,
|
|
106
106
|
description: "Orchestrate complex, multi-step workflows with event-sourced state management, hook-based extensibility, and human-in-the-loop approval",
|
|
107
|
-
version: "5.0.
|
|
107
|
+
version: "5.0.1-staging.70c61e4c7b4d",
|
|
108
108
|
author: { name: "a5c.ai" },
|
|
109
109
|
};
|
|
110
110
|
if (idx >= 0) marketplace.plugins[idx] = entry;
|
|
@@ -147,7 +147,7 @@ function resolveCliCommand(packageRoot) {
|
|
|
147
147
|
const versionsPath = path.join(packageRoot, 'versions.json');
|
|
148
148
|
const versions = readJson(versionsPath) || {};
|
|
149
149
|
const ver = versions.sdkVersion || 'latest';
|
|
150
|
-
return `
|
|
150
|
+
return `npm exec --yes --package @a5c-ai/babysitter-sdk@${ver} -- babysitter`;
|
|
151
151
|
}
|
|
152
152
|
|
|
153
153
|
function runCli(packageRoot, cliArgs, options = {}) {
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: manage Babysitter blueprints. Use this command to list installed blueprints, browse marketplaces, install, update, uninstall, configure, or create a new blueprint.
|
|
3
|
+
argument-hint: Blueprint action and options.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
This command installs and manages Babysitter blueprints. A blueprint is a version-managed package of contextual instructions or deterministic Babysitter processes, not a conventional software plugin.
|
|
7
|
+
|
|
8
|
+
If the command is run without arguments, list installed blueprints with their name, version, marketplace, installation date, and last update date. Also list configured marketplaces and show how to add the default marketplace when none exist.
|
|
9
|
+
|
|
10
|
+
Blueprints can be installed at two scopes:
|
|
11
|
+
|
|
12
|
+
- **global** (`--global`): stored under `~/.a5c/`, available for all projects
|
|
13
|
+
- **project** (`--project`): stored under `<projectDir>/.a5c/`, project-specific
|
|
14
|
+
|
|
15
|
+
## Marketplace Management
|
|
16
|
+
|
|
17
|
+
Marketplaces are git repositories containing a `marketplace.json` manifest and blueprint package directories. The SDK clones new marketplaces to `.a5c/blueprints/marketplaces/` for the selected scope and reads legacy `.a5c/marketplaces/` clones for compatibility.
|
|
18
|
+
|
|
19
|
+
### Add a marketplace
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
babysitter blueprint:add-marketplace --marketplace-url <url> [--marketplace-path <relative-path>] [--marketplace-branch <ref>] [--force] --global|--project [--json]
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
### Update a marketplace
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
babysitter blueprint:update-marketplace --marketplace-name <name> [--marketplace-branch <ref>] --global|--project [--json]
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
### List blueprints in a marketplace
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
babysitter blueprint:list-plugins --marketplace-name <name> --global|--project [--json]
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## Blueprint Lifecycle
|
|
38
|
+
|
|
39
|
+
For `blueprint:install`, `blueprint:update`, `blueprint:configure`, and `blueprint:list-plugins`, the `--marketplace-name` flag is auto-detected when only one marketplace is cloned for the selected scope.
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
babysitter blueprint:install --plugin-name <name> [--marketplace-name <mp>] --global|--project [--json]
|
|
43
|
+
babysitter blueprint:update --plugin-name <name> --marketplace-name <mp> --global|--project [--json]
|
|
44
|
+
babysitter blueprint:configure --plugin-name <name> --marketplace-name <mp> --global|--project [--json]
|
|
45
|
+
babysitter blueprint:uninstall --plugin-name <name> --marketplace-name <mp> --global|--project [--json]
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
The `--plugin-name` flag is preserved for CLI compatibility with existing marketplace manifests. User-facing docs should call the installable a blueprint.
|
|
49
|
+
|
|
50
|
+
## Registry Management
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
babysitter blueprint:list-installed --global|--project [--json]
|
|
54
|
+
babysitter blueprint:update-registry --plugin-name <name> --plugin-version <ver> --marketplace-name <mp> --global|--project [--json]
|
|
55
|
+
babysitter blueprint:remove-from-registry --plugin-name <name> --global|--project [--json]
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
## Deprecated Aliases
|
|
59
|
+
|
|
60
|
+
The old `plugin:*` commands remain available as deprecated aliases for one release. Prefer `blueprint:*` in new docs, skills, and process instructions.
|
|
61
|
+
|
|
62
|
+
## Agent Plugins Are Separate
|
|
63
|
+
|
|
64
|
+
Do not rename or reinterpret agent harness plugins while handling blueprints. `CLAUDE_PLUGIN_ROOT`, `PI_PLUGIN_ROOT`, `.claude/plugins/`, hooks-mux, extension-mux, and agent plugin manifests stay plugin-specific.
|
package/commands/call.md
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
|
-
---
|
|
2
|
-
description: Orchestrate a babysitter run. use this command to start babysitting a complex workflow.
|
|
3
|
-
argument-hint: Specific instructions for the run.
|
|
4
|
-
allowed-tools: Read, Grep, Write, Task, Bash, Edit, Grep, Glob, WebFetch, WebSearch, Search, AskUserQuestion, TodoWrite, TodoRead, Skill, BashOutput, KillShell, MultiEdit, LS
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
Invoke the babysitter:babysit skill (using the Skill tool) and follow its instructions (SKILL.md).
|
|
1
|
+
---
|
|
2
|
+
description: Orchestrate a babysitter run. use this command to start babysitting a complex workflow.
|
|
3
|
+
argument-hint: Specific instructions for the run.
|
|
4
|
+
allowed-tools: Read, Grep, Write, Task, Bash, Edit, Grep, Glob, WebFetch, WebSearch, Search, AskUserQuestion, TodoWrite, TodoRead, Skill, BashOutput, KillShell, MultiEdit, LS
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
Invoke the babysitter:babysit skill (using the Skill tool) and follow its instructions (SKILL.md). Then continue executing the returned instructions in this same turn. Do not stop after the Skill tool returns; carry the requested run through to completion proof.
|
|
8
|
+
|
|
9
|
+
User arguments for this command:
|
|
10
|
+
|
|
11
|
+
$ARGUMENTS
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Pre-deploy gate that scans built JS chunks for forbidden substring markers (saga-era / obsolete code paths) listed in a project-local forbidden-markers.txt
|
|
3
|
+
argument-hint: "[--markers-file <path>] [--chunks-dir <path>] [--json] Optional overrides; defaults are project-relative."
|
|
4
|
+
allowed-tools: Read, Grep, Write, Task, Bash, Edit, Grep, Glob, WebFetch, WebSearch, Search, AskUserQuestion, TodoWrite, TodoRead, Skill, BashOutput, KillShell, MultiEdit, LS
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
Invoke the babysitter:babysit skill (using the Skill tool) and follow its instructions (SKILL.md). Compose the gate from the shared helper at `library/processes/shared/forbidden-markers-scanner.js` (issue #477).
|
|
8
|
+
|
|
9
|
+
## What this gate does
|
|
10
|
+
|
|
11
|
+
Reads a list of literal substring markers from `scripts/forbidden-markers.txt` (blank lines and `#`-prefixed comments stripped) and greps every `.js` chunk under `.vercel/output/static/_next/static/chunks/` (Next.js / Vercel default; configurable) for any occurrence. Reports structured hits per `(marker, chunk)` pair with occurrence counts. Designed to chain between `vercel build --prod` and `vercel deploy --prod`.
|
|
12
|
+
|
|
13
|
+
Use this gate when a refactor or restart-from-baseline replaced load-bearing code paths and you need a structural guarantee the obsolete symbols never re-ship. Burned-in evidence: cookbook VI-9 / VI-12 near-miss revivals during the 2026-05 iOS-Safari saga; the prototype lives at `cookbook/scripts/check-no-forbidden.mjs` and shipped two upstream contributions before being generalized as this gate.
|
|
14
|
+
|
|
15
|
+
## When to use
|
|
16
|
+
|
|
17
|
+
- **Pre-deploy.** Insert after build, before deploy. Block the deploy when `ok: false`.
|
|
18
|
+
- **Post-restart.** After a baseline rollback + step-by-step re-add, snapshot the saga-era markers in `forbidden-markers.txt` and let CI hold the line.
|
|
19
|
+
- **Post-refactor.** When old helper / handler / module names must not coexist with the new ones in the same bundle.
|
|
20
|
+
|
|
21
|
+
## Expected config locations
|
|
22
|
+
|
|
23
|
+
- `scripts/forbidden-markers.txt` — one marker per line, `#` for comments. The list is the contract; the gate is mechanical. Commit this file to source control.
|
|
24
|
+
- `.vercel/output/static/_next/static/chunks/` — default scan target. Override for non-Vercel frameworks via the `--chunks-dir` flag or the `chunksDir` task input.
|
|
25
|
+
|
|
26
|
+
A missing markers file is a no-op (`ok: true`, `reason: 'missing-markers-file'`) — misconfiguration is never a deploy block. A missing chunks directory is likewise a no-op (`reason: 'missing-chunks-dir'`) so the gate is safe to chain into `check:all` before the build runs.
|
|
27
|
+
|
|
28
|
+
## Exit semantics
|
|
29
|
+
|
|
30
|
+
| Reason | `ok` | Deploy decision |
|
|
31
|
+
|-------------------------|--------|--------------------------------|
|
|
32
|
+
| `missing-markers-file` | true | Pass (no gate active) |
|
|
33
|
+
| `missing-chunks-dir` | true | Pass (run before build) |
|
|
34
|
+
| `empty-markers` | true | Pass (list is empty) |
|
|
35
|
+
| `no-chunks` | true | Pass (nothing to scan) |
|
|
36
|
+
| `clean` | true | Pass — proceed to deploy |
|
|
37
|
+
| `hits` | false | **BLOCK** — surface hits, ask for triage |
|
|
38
|
+
|
|
39
|
+
For each hit, the gate emits `{ marker, chunk, count }` so the operator sees the exact marker string, the absolute chunk path, and the number of occurrences in that chunk. Multiple hits across chunks for the same marker are reported separately.
|
|
40
|
+
|
|
41
|
+
## Programmatic surface
|
|
42
|
+
|
|
43
|
+
```js
|
|
44
|
+
import { scanForbiddenMarkers, checkForbiddenMarkersTask } from '@a5c-ai/babysitter-library/processes/shared';
|
|
45
|
+
|
|
46
|
+
// Direct call:
|
|
47
|
+
const result = await scanForbiddenMarkers({
|
|
48
|
+
markersFile: 'scripts/forbidden-markers.txt',
|
|
49
|
+
chunksDir: '.vercel/output/static/_next/static/chunks',
|
|
50
|
+
});
|
|
51
|
+
if (!result.ok) {
|
|
52
|
+
// result.hits: Array<{ marker, chunk, count }>
|
|
53
|
+
// result.reason === 'hits'
|
|
54
|
+
process.exit(1);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
// Or dispatched as a babysitter task:
|
|
58
|
+
const gate = await ctx.task(checkForbiddenMarkersTask, {
|
|
59
|
+
projectDir: '.',
|
|
60
|
+
// markersFile / chunksDir are inferred from projectDir if omitted
|
|
61
|
+
});
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
## Reference
|
|
65
|
+
|
|
66
|
+
- Issue: https://github.com/a5c-ai/babysitter/issues/477
|
|
67
|
+
- Helper module: `library/processes/shared/forbidden-markers-scanner.js`
|
|
68
|
+
- Origin (cookbook prototype): `cookbook/scripts/check-no-forbidden.mjs` (81 lines)
|
package/commands/cleanup.md
CHANGED
|
@@ -6,15 +6,43 @@ allowed-tools: Read, Grep, Write, Task, Bash, Edit, Grep, Glob, WebFetch, WebSea
|
|
|
6
6
|
|
|
7
7
|
Invoke the babysitter:babysit skill (using the Skill tool) and follow its instructions (SKILL.md).
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
Resolve the active process library with:
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
babysitter process-library:active --json
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Read `binding.dir` from that JSON and create/run the cleanup process from `cradle/cleanup-runs.js#process` relative to that active library root. Do not use plugin-cache-relative cradle paths.
|
|
10
16
|
|
|
11
17
|
Implementation notes (for the process):
|
|
12
18
|
- Parse arguments for `--dry-run` flag (if present, set dryRun: true in inputs) and `--keep-days N` (default: 7)
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
-
|
|
18
|
-
-
|
|
19
|
-
-
|
|
20
|
-
-
|
|
19
|
+
|
|
20
|
+
CRITICAL: The cleanup MUST follow this exact phase order. Do NOT delete any run before Phase 2 completes.
|
|
21
|
+
|
|
22
|
+
Phase 1 — Scan:
|
|
23
|
+
- Scan .a5c/runs/ for all runs
|
|
24
|
+
- Classify each as terminal (completed/failed) or active (in-progress/created)
|
|
25
|
+
- Identify terminal runs older than the keep-days threshold as removal candidates
|
|
26
|
+
- Never mark active/in-progress runs for removal
|
|
27
|
+
- Count and report: total runs, terminal, active, removal candidates, disk usage
|
|
28
|
+
|
|
29
|
+
Phase 2 — Aggregate insights (BEFORE any deletion):
|
|
30
|
+
- For EVERY removal candidate, read its run.json and journal/ events
|
|
31
|
+
- Extract: processId, prompt, status, event count, created date, task summaries
|
|
32
|
+
- Group by process type and extract patterns (retry counts, convergence behavior, failure modes)
|
|
33
|
+
- Append a new dated section to docs/run-history-insights.md with:
|
|
34
|
+
- Summary statistics (runs removed, disk freed, runs retained)
|
|
35
|
+
- Run categories with counts and descriptions
|
|
36
|
+
- Key patterns observed (multi-batch convergence, retry behavior, etc.)
|
|
37
|
+
- What worked well / what didn't from the run data
|
|
38
|
+
- This file MUST be written and verified before proceeding to Phase 3
|
|
39
|
+
|
|
40
|
+
Phase 3 — Confirm removal:
|
|
41
|
+
- In interactive mode, show the user what will be removed via a breakpoint
|
|
42
|
+
- In non-interactive mode (yolo), proceed with defaults
|
|
43
|
+
- In dry-run mode, stop here and show what would be removed
|
|
44
|
+
|
|
45
|
+
Phase 4 — Remove:
|
|
46
|
+
- Delete the terminal runs older than keep-days threshold
|
|
47
|
+
- Identify and remove orphaned process files not referenced by remaining runs
|
|
48
|
+
- Show remaining run count and disk usage after cleanup
|
package/commands/contrib.md
CHANGED
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
---
|
|
2
|
-
description: Submit feedback or contribute to babysitter project
|
|
3
|
-
argument-hint: Specific instructions for the run.
|
|
4
|
-
allowed-tools: Read, Grep, Write, Task, Bash, Edit, Grep, Glob, WebFetch, WebSearch, Search, AskUserQuestion, TodoWrite, TodoRead, Skill, BashOutput, KillShell, MultiEdit, LS
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
Invoke the babysitter:babysit skill (using the Skill tool) and follow its instructions (SKILL.md).
|
|
8
|
-
|
|
9
|
-
## Process Routing
|
|
10
|
-
|
|
1
|
+
---
|
|
2
|
+
description: Submit feedback or contribute to babysitter project
|
|
3
|
+
argument-hint: Specific instructions for the run.
|
|
4
|
+
allowed-tools: Read, Grep, Write, Task, Bash, Edit, Grep, Glob, WebFetch, WebSearch, Search, AskUserQuestion, TodoWrite, TodoRead, Skill, BashOutput, KillShell, MultiEdit, LS
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
Invoke the babysitter:babysit skill (using the Skill tool) and follow its instructions (SKILL.md).
|
|
8
|
+
|
|
9
|
+
## Process Routing
|
|
10
|
+
|
|
11
11
|
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:
|
|
12
|
-
|
|
13
|
-
### Issue-based (opens a GitHub issue in a5c-ai/babysitter)
|
|
14
|
-
* **Bug report** → `cradle/bug-report.js#process` — Report a bug in the SDK, CLI, process library, etc.
|
|
15
|
-
* **Feature request** → `cradle/feature-request.js#process` — Request a new feature or enhancement
|
|
16
|
-
* **Documentation question** → `cradle/documentation-question.js#process` — Ask about undocumented behavior or missing docs
|
|
17
|
-
|
|
18
|
-
### PR-based (forks repo, creates branch, submits PR to a5c-ai/babysitter)
|
|
19
|
-
* **Bugfix** → `cradle/bugfix.js#process` — User already has the fix for a bug
|
|
20
|
-
* **Feature implementation** → `cradle/feature-implementation-contribute.js#process` — User already has a feature implementation
|
|
21
|
-
* **Harness integration** → `cradle/feature-harness-integration-contribute.js#process` — User has a harness (CI/CD, IDE, editor) integration
|
|
22
|
-
* **Library contribution** → `cradle/library-contribution.js#process` — New or improved process/skill/subagent for the library
|
|
23
|
-
* **Documentation answer** → `cradle/documentation-contribute-answer.js#process` — User has an answer for an unanswered docs question
|
|
24
|
-
|
|
25
|
-
### Router (when arguments are empty or general)
|
|
26
|
-
* **Contribute** → `cradle/contribute.js#process` — Explains contribution types and routes to the specific process
|
|
27
|
-
|
|
28
|
-
## Contribution Rules
|
|
29
|
-
|
|
30
|
-
* PR-based contributions: fork the babysitter repo (a5c-ai/babysitter) for the user, ask to star if not already starred, perform changes, submit PR
|
|
31
|
-
* Issue-based contributions: gather details, search for duplicates, review, then open an issue in a5c-ai/babysitter
|
|
32
|
-
* Add breakpoints (permissions) before ALL gh actions (fork, star, submit PR/issue) to allow user review and cancellation
|
|
12
|
+
|
|
13
|
+
### Issue-based (opens a GitHub issue in a5c-ai/babysitter)
|
|
14
|
+
* **Bug report** → `cradle/bug-report.js#process` — Report a bug in the SDK, CLI, process library, etc.
|
|
15
|
+
* **Feature request** → `cradle/feature-request.js#process` — Request a new feature or enhancement
|
|
16
|
+
* **Documentation question** → `cradle/documentation-question.js#process` — Ask about undocumented behavior or missing docs
|
|
17
|
+
|
|
18
|
+
### PR-based (forks repo, creates branch, submits PR to a5c-ai/babysitter)
|
|
19
|
+
* **Bugfix** → `cradle/bugfix.js#process` — User already has the fix for a bug
|
|
20
|
+
* **Feature implementation** → `cradle/feature-implementation-contribute.js#process` — User already has a feature implementation
|
|
21
|
+
* **Harness integration** → `cradle/feature-harness-integration-contribute.js#process` — User has a harness (CI/CD, IDE, editor) integration
|
|
22
|
+
* **Library contribution** → `cradle/library-contribution.js#process` — New or improved process/skill/subagent for the library
|
|
23
|
+
* **Documentation answer** → `cradle/documentation-contribute-answer.js#process` — User has an answer for an unanswered docs question
|
|
24
|
+
|
|
25
|
+
### Router (when arguments are empty or general)
|
|
26
|
+
* **Contribute** → `cradle/contribute.js#process` — Explains contribution types and routes to the specific process
|
|
27
|
+
|
|
28
|
+
## Contribution Rules
|
|
29
|
+
|
|
30
|
+
* PR-based contributions: fork the babysitter repo (a5c-ai/babysitter) for the user, ask to star if not already starred, perform changes, submit PR
|
|
31
|
+
* Issue-based contributions: gather details, search for duplicates, review, then open an issue in a5c-ai/babysitter
|
|
32
|
+
* Add breakpoints (permissions) before ALL gh actions (fork, star, submit PR/issue) to allow user review and cancellation
|
|
33
33
|
* If arguments are empty: use the `contribute.js` router process to show options and route accordingly
|
package/commands/doctor.md
CHANGED
|
@@ -156,7 +156,6 @@ If it exists:
|
|
|
156
156
|
**Goal:** Inspect babysitter session files for health and detect runaway loops.
|
|
157
157
|
|
|
158
158
|
- Search for session state files using Glob:
|
|
159
|
-
- `plugins/babysitter/skills/babysit/state/*.md`
|
|
160
159
|
- `.a5c/state/*.md`
|
|
161
160
|
- `.a5c/state/*.json`
|
|
162
161
|
- For each session state file found:
|
|
@@ -260,7 +259,7 @@ Mark as PASS if total size < 500MB and no files > 10MB. Mark as WARN if total si
|
|
|
260
259
|
|
|
261
260
|
### 10a. Hook Registration
|
|
262
261
|
|
|
263
|
-
- Locate the plugin root. Check for `CLAUDE_PLUGIN_ROOT` env var, or search for `
|
|
262
|
+
- Locate the plugin root. Check for `CLAUDE_PLUGIN_ROOT` env var first, or search for a babysitter `hooks.json` by walking up from the current directory.
|
|
264
263
|
- If found, read `hooks.json` and verify:
|
|
265
264
|
- A `Stop` hook entry exists with a command referencing `babysitter-stop-hook.sh`.
|
|
266
265
|
- A `SessionStart` hook entry exists with a command referencing `babysitter-session-start-hook.sh`.
|
|
@@ -315,7 +314,7 @@ If the stop hook shows NO evidence of execution (no log entries, no journal even
|
|
|
315
314
|
|
|
316
315
|
Perform these diagnostic steps in order and report the first failure found:
|
|
317
316
|
|
|
318
|
-
1. **Plugin not installed**: Check if `
|
|
317
|
+
1. **Plugin not installed**: Check if `CLAUDE_PLUGIN_ROOT` is set or if a babysitter plugin directory exists relative to the project root. If neither exists, report: "Plugin not installed — the babysitter plugin directory is missing."
|
|
319
318
|
|
|
320
319
|
2. **Plugin not enabled**: Check for Claude settings files:
|
|
321
320
|
- `~/.claude/settings.json` — look for `babysitter` in `enabledPlugins`.
|
package/commands/forever.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
---
|
|
2
|
-
description: Use this command to start babysitting a never-ending babysitter run.
|
|
3
|
-
argument-hint: Specific instructions for the run.
|
|
4
|
-
allowed-tools: Read, Grep, Write, Task, Bash, Edit, Grep, Glob, WebFetch, WebSearch, Search, AskUserQuestion, TodoWrite, TodoRead, Skill, BashOutput, KillShell, MultiEdit, LS
|
|
5
|
-
---
|
|
6
|
-
|
|
1
|
+
---
|
|
2
|
+
description: Use this command to start babysitting a never-ending babysitter run.
|
|
3
|
+
argument-hint: Specific instructions for the run.
|
|
4
|
+
allowed-tools: Read, Grep, Write, Task, Bash, Edit, Grep, Glob, WebFetch, WebSearch, Search, AskUserQuestion, TodoWrite, TodoRead, Skill, BashOutput, KillShell, MultiEdit, LS
|
|
5
|
+
---
|
|
6
|
+
|
|
7
7
|
Invoke the babysitter:babysit skill (using the Skill tool) and follow its instructions (SKILL.md). but create a process that uses an infinte loop and a ctx.sleep to create a never-ending babysitter loop. an example of such process is a daily process that reads new support ticket every day and tries to resolve them, then sleeps for 4 hours and repeats the process.
|
package/commands/help.md
CHANGED
|
@@ -179,13 +179,13 @@ SECONDARY COMMANDS
|
|
|
179
179
|
a fuzzy comparison step before strict assertion. Implement this fix?")
|
|
180
180
|
|
|
181
181
|
|
|
182
|
-
/babysitter:
|
|
183
|
-
Manage
|
|
184
|
-
update, configure, uninstall, or create new
|
|
185
|
-
instruction packages
|
|
186
|
-
configure, and uninstall steps
|
|
182
|
+
/babysitter:blueprints [action]
|
|
183
|
+
Manage Babysitter blueprints: list installed blueprints, browse marketplaces,
|
|
184
|
+
install, update, configure, uninstall, or create new blueprints. Blueprints are
|
|
185
|
+
version-managed instruction packages or process bundles that guide the agent
|
|
186
|
+
through install, configure, and uninstall steps.
|
|
187
187
|
|
|
188
|
-
Without arguments: shows installed
|
|
188
|
+
Without arguments: shows installed blueprints (name, version, marketplace, dates) and
|
|
189
189
|
available marketplaces. With arguments: routes to the specific action.
|
|
190
190
|
|
|
191
191
|
Key actions:
|
|
@@ -193,11 +193,11 @@ SECONDARY COMMANDS
|
|
|
193
193
|
- configure <name> --global|--project: fetch configure.md and walk through options
|
|
194
194
|
- update <name> --global|--project: resolve migration chain via BFS and apply steps
|
|
195
195
|
- uninstall <name> --global|--project: fetch uninstall.md and execute removal
|
|
196
|
-
- create: scaffold a new
|
|
196
|
+
- create: scaffold a new blueprint package
|
|
197
197
|
|
|
198
|
-
Example: /babysitter:
|
|
198
|
+
Example: /babysitter:blueprints install sound-hooks --project
|
|
199
199
|
(fetches sound-hooks from marketplace, reads install.md, walks you through player
|
|
200
|
-
detection, sound selection, hook configuration, and registers
|
|
200
|
+
detection, sound selection, hook configuration, and registers the blueprint)
|
|
201
201
|
|
|
202
202
|
|
|
203
203
|
/babysitter:contrib [feedback]
|
|
@@ -233,7 +233,8 @@ SECONDARY COMMANDS
|
|
|
233
233
|
How it works: Runs npx @a5c-ai/babysitter-observer-dashboard@latest which watches
|
|
234
234
|
the .a5c/runs/ directory (or a parent directory containing multiple projects) and
|
|
235
235
|
serves a live dashboard. The process is blocking -- it runs until you stop it, and
|
|
236
|
-
it prints the local URL to share with the user.
|
|
236
|
+
it prints the local URL to share with the user. Do not use `babysitter observe`
|
|
237
|
+
as a fallback; the core Babysitter CLI does not expose that subcommand.
|
|
237
238
|
|
|
238
239
|
Example: /babysitter:observe
|
|
239
240
|
(opens browser showing all runs with live-updating task
|
package/commands/observe.md
CHANGED
|
@@ -7,6 +7,11 @@ allowed-tools: Read, Grep, Write, Task, Bash
|
|
|
7
7
|
Run the babysitter observer dashboard:
|
|
8
8
|
|
|
9
9
|
1. Determine the watch directory — this is usually the project's container directory (the parent of the project dir), or the current working directory if not specified.
|
|
10
|
-
2. Launch the dashboard: `npx -y @a5c-ai/babysitter-observer-dashboard@latest --watch-dir <dir
|
|
10
|
+
2. Launch the standalone dashboard package: `npx -y @a5c-ai/babysitter-observer-dashboard@latest --watch-dir <dir>`.
|
|
11
11
|
3. This is a blocking process — it will keep running until stopped.
|
|
12
12
|
4. Report the URL printed by the dashboard to the user, then open it in the browser.
|
|
13
|
+
|
|
14
|
+
Do not fall back to `babysitter observe`; the core Babysitter CLI does not expose
|
|
15
|
+
that subcommand. Some harness runtimes may provide a separate
|
|
16
|
+
`agent-platform observe` surface, but this skill uses the verified standalone
|
|
17
|
+
dashboard package.
|
package/commands/plan.md
CHANGED
|
@@ -1,7 +1,17 @@
|
|
|
1
|
-
---
|
|
2
|
-
description: Plan a babysitter run. use this command to plan a complex workflow, without actually running it.
|
|
3
|
-
argument-hint: Specific instructions for the run.
|
|
4
|
-
allowed-tools: Read, Grep, Write, Task, Bash, Edit, Grep, Glob, WebFetch, WebSearch, Search, AskUserQuestion, TodoWrite, TodoRead, Skill, BashOutput, KillShell, MultiEdit, LS
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
Invoke the babysitter:babysit skill (using the Skill tool) and follow its instructions (SKILL.md).
|
|
1
|
+
---
|
|
2
|
+
description: Plan a babysitter run. use this command to plan a complex workflow, without actually running it.
|
|
3
|
+
argument-hint: Specific instructions for the run.
|
|
4
|
+
allowed-tools: Read, Grep, Write, Task, Bash, Edit, Grep, Glob, WebFetch, WebSearch, Search, AskUserQuestion, TodoWrite, TodoRead, Skill, BashOutput, KillShell, MultiEdit, LS
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
Invoke the babysitter:babysit skill (using the Skill tool) and follow its instructions (SKILL.md). Focus on creating the best process possible, but without creating and running the actual run.
|
|
8
|
+
|
|
9
|
+
Before drafting the process, run Phase 0 -- REUSE-AUDIT: extract keyword nouns and verbs from the request, scan for matching existing migrations, API routes, environment variables, SDK dependencies, and imports, honor `.a5c/reuse-audit.json` when present, and put a `Reuse-audit findings (REVIEW BEFORE PROCEEDING)` block before Phase 1 of the plan.
|
|
10
|
+
|
|
11
|
+
## Process Shape Selection
|
|
12
|
+
|
|
13
|
+
Choose the process shape before authoring `process.js`:
|
|
14
|
+
|
|
15
|
+
- Use a flat phase list when the spec is well-defined, the work is wiring or composition, the bug class is already known if this is a fix, and execution should proceed sequentially through clear phases.
|
|
16
|
+
- Use a HYPOTHESES tree when the bug class is unknown, forensics are required, multiple causal models compete, and each hypothesis needs its own observations, falsifying observations, and follow-up phases.
|
|
17
|
+
- Rule of thumb: if the first phase is "investigate", use HYPOTHESES-tree mode. If the first phase is "implement X", use flat-phase-list mode.
|