@a5c-ai/babysitter-opencode 5.0.1-staging.16f8c86f4 → 5.0.1-staging.19eb57a3c2fd

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 CHANGED
@@ -36,31 +36,29 @@ artifacts/generated-plugins/opencode/
36
36
 
37
37
  ### Prerequisites
38
38
 
39
- Install the Babysitter SDK CLI:
39
+ Install the Babysitter CLI once:
40
40
 
41
41
  ```bash
42
- npm install -g @a5c-ai/babysitter-sdk
42
+ npm install -g @a5c-ai/babysitter
43
43
  ```
44
44
 
45
- ### Method 1: npm global install (recommended)
45
+ ### Method 1: Babysitter harness install (recommended)
46
46
 
47
- ```bash
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
- babysitter-opencode install --workspace /path/to/project
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: Babysitter harness install
57
+ ### Method 2: Published package installer
61
58
 
62
59
  ```bash
63
- babysitter harness:install-plugin opencode
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
- npm install -g @a5c-ai/babysitter-opencode
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:
@@ -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.1-staging.16f8c86f4",
107
+ version: "5.0.1-staging.19eb57a3c2fd",
108
108
  author: { name: "a5c.ai" },
109
109
  };
110
110
  if (idx >= 0) marketplace.plugins[idx] = entry;
package/commands/call.md CHANGED
@@ -4,4 +4,8 @@ argument-hint: Specific instructions for the run.
4
4
  allowed-tools: Read, Grep, Write, Task, Bash, Edit, Grep, Glob, WebFetch, WebSearch, Search, AskUserQuestion, TodoWrite, TodoRead, Skill, BashOutput, KillShell, MultiEdit, LS
5
5
  ---
6
6
 
7
- Invoke the babysitter:babysit skill (using the Skill tool) and follow its instructions (SKILL.md).
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
package/commands/yolo.md CHANGED
@@ -1,7 +1,11 @@
1
- ---
2
- description: Orchestrate a babysitter run. use this command to start babysitting a complex workflow in a non-interactive mode, without any user interaction or breakpoints in the 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
- Invoke the babysitter:babysit skill (using the Skill tool) and follow its instructions (SKILL.md). but without any user interaction or breakpoints in the run.
1
+ ---
2
+ description: Orchestrate a babysitter run. use this command to start babysitting a complex workflow in a non-interactive mode, without any user interaction or breakpoints in the 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
+ Start the Babysitter run directly through the CLI, without any user interaction or breakpoints. Do not invoke the Skill tool and do not run an instructions-only command. In Claude Code, use Bash to run `babysitter-agent yolo --harness claude-code --workspace "$PWD" --prompt "<user arguments>" --json`; in Codex, run `babysitter-agent yolo --harness codex --workspace "$PWD" --prompt "<user arguments>" --json`; in other harnesses, use the same command with that harness id. Replace `<user arguments>` with the arguments shown below, wait for the command to finish, and treat the CLI completion proof as the result.
8
+
9
+ User arguments for this command:
10
+
11
+ $ARGUMENTS
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@a5c-ai/babysitter-opencode",
3
- "version": "5.0.1-staging.16f8c86f4",
3
+ "version": "5.0.1-staging.19eb57a3c2fd",
4
4
  "description": "Orchestrate complex, multi-step workflows with event-sourced state management, hook-based extensibility, and human-in-the-loop approval",
5
5
  "scripts": {
6
6
  "deploy": "npm publish --access public",
@@ -35,7 +35,7 @@
35
35
  "access": "public"
36
36
  },
37
37
  "dependencies": {
38
- "@a5c-ai/babysitter-sdk": "5.0.1-staging.16f8c86f4"
38
+ "@a5c-ai/babysitter-sdk": "5.0.1-staging.19eb57a3c2fd"
39
39
  },
40
40
  "repository": {
41
41
  "type": "git",
package/plugin.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babysitter",
3
- "version": "5.0.1-staging.16f8c86f4",
3
+ "version": "5.0.1-staging.19eb57a3c2fd",
4
4
  "description": "Orchestrate complex, multi-step workflows with event-sourced state management, hook-based extensibility, and human-in-the-loop approval",
5
5
  "author": "a5c.ai",
6
6
  "license": "MIT",
@@ -5,4 +5,8 @@ description: Orchestrate a babysitter run. use this command to start babysitting
5
5
 
6
6
  # call
7
7
 
8
- Invoke the babysitter:babysit skill (using the Skill tool) and follow its instructions (SKILL.md).
8
+ 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.
9
+
10
+ User arguments for this command:
11
+
12
+ $ARGUMENTS
@@ -5,4 +5,8 @@ description: Orchestrate a babysitter run. use this command to start babysitting
5
5
 
6
6
  # yolo
7
7
 
8
- Invoke the babysitter:babysit skill (using the Skill tool) and follow its instructions (SKILL.md). but without any user interaction or breakpoints in the run.
8
+ Start the Babysitter run directly through the CLI, without any user interaction or breakpoints. Do not invoke the Skill tool and do not run an instructions-only command. In Claude Code, use Bash to run `babysitter-agent yolo --harness claude-code --workspace "$PWD" --prompt "<user arguments>" --json`; in Codex, run `babysitter-agent yolo --harness codex --workspace "$PWD" --prompt "<user arguments>" --json`; in other harnesses, use the same command with that harness id. Replace `<user arguments>` with the arguments shown below, wait for the command to finish, and treat the CLI completion proof as the result.
9
+
10
+ User arguments for this command:
11
+
12
+ $ARGUMENTS
package/versions.json CHANGED
@@ -1,4 +1,4 @@
1
1
  {
2
- "sdkVersion": "5.0.1-staging.16f8c86f4",
3
- "extensionVersion": "5.0.1-staging.16f8c86f4"
2
+ "sdkVersion": "5.0.1-staging.19eb57a3c2fd",
3
+ "extensionVersion": "5.0.1-staging.19eb57a3c2fd"
4
4
  }