@a5c-ai/babysitter-gemini-cli 5.0.1-staging.686c8b317 → 5.0.1-staging.8f9a37dcd451

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
@@ -4,10 +4,10 @@ Orchestrate complex, multi-step workflows with event-sourced state management, h
4
4
 
5
5
  ## Prerequisites
6
6
 
7
- Install the Babysitter SDK CLI:
7
+ Install the Babysitter CLI once. The `babysitter` command is backed by the SDK and exposes the canonical harness/plugin installer used in tests:
8
8
 
9
9
  ```bash
10
- npm install -g @a5c-ai/babysitter-sdk
10
+ npm install -g @a5c-ai/babysitter
11
11
  ```
12
12
 
13
13
  ## Installation — Gemini CLI
@@ -19,6 +19,13 @@ babysitter-gemini-cli install --global
19
19
 
20
20
  Restart Gemini CLI to pick up the installed plugin.
21
21
 
22
+ For scriptable installs, prefer the SDK helper shape:
23
+
24
+ ```bash
25
+ babysitter harness:install-plugin <harness>
26
+ babysitter harness:install-plugin <harness> --workspace /path/to/repo
27
+ ```
28
+
22
29
  ## What's Included
23
30
 
24
31
  - **Skills**: babysit
@@ -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.686c8b317",
107
+ version: "5.0.1-staging.8f9a37dcd451",
108
108
  author: { name: "a5c.ai" },
109
109
  };
110
110
  if (idx >= 0) marketplace.plugins[idx] = entry;
@@ -1,3 +1,3 @@
1
1
  description = "Orchestrate a babysitter run. use this command to start babysitting a complex workflow."
2
2
 
3
- prompt = "Invoke the babysitter:babysit skill (using the Skill tool) and follow its instructions (SKILL.md)."
3
+ prompt = "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.\n\nUser arguments for this command:\n\n$ARGUMENTS"
@@ -1,3 +1,3 @@
1
1
  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."
2
2
 
3
- prompt = "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."
3
+ prompt = "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 harness:yolo --harness claude-code --workspace \"$PWD\" --prompt \"<user arguments>\" --json`; in Codex, run `babysitter harness: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.\n\nUser arguments for this command:\n\n$ARGUMENTS"
package/hooks/hooks.json CHANGED
@@ -7,7 +7,7 @@
7
7
  {
8
8
  "name": "babysitter-session-start",
9
9
  "type": "command",
10
- "command": "npx -y -p @a5c-ai/hooks-mux-cli -c \"a5c-hooks-mux invoke --adapter gemini --handler 'bash ${GEMINI_EXTENSION_PATH}/hooks/babysitter-proxied-session-start.sh' --json\"",
10
+ "command": "a5c-hooks-mux invoke --adapter gemini --handler \"bash ${GEMINI_EXTENSION_PATH}/hooks/babysitter-proxied-session-start.sh\" --json",
11
11
  "timeout": 30000,
12
12
  "description": "babysitter SessionStart hook"
13
13
  }
@@ -20,7 +20,7 @@
20
20
  {
21
21
  "name": "babysitter-user-prompt-submit",
22
22
  "type": "command",
23
- "command": "npx -y -p @a5c-ai/hooks-mux-cli -c \"a5c-hooks-mux invoke --adapter gemini --handler 'bash ${GEMINI_EXTENSION_PATH}/hooks/babysitter-proxied-user-prompt-submit.sh' --json\"",
23
+ "command": "a5c-hooks-mux invoke --adapter gemini --handler \"bash ${GEMINI_EXTENSION_PATH}/hooks/babysitter-proxied-user-prompt-submit.sh\" --json",
24
24
  "timeout": 30000,
25
25
  "description": "babysitter UserPromptSubmit hook"
26
26
  }
@@ -33,7 +33,7 @@
33
33
  {
34
34
  "name": "babysitter-pre-tool-use",
35
35
  "type": "command",
36
- "command": "npx -y -p @a5c-ai/hooks-mux-cli -c \"a5c-hooks-mux invoke --adapter gemini --handler 'bash ${GEMINI_EXTENSION_PATH}/hooks/babysitter-proxied-before-tool.sh' --json\"",
36
+ "command": "a5c-hooks-mux invoke --adapter gemini --handler \"bash ${GEMINI_EXTENSION_PATH}/hooks/babysitter-proxied-before-tool.sh\" --json",
37
37
  "timeout": 30000,
38
38
  "description": "babysitter PreToolUse hook"
39
39
  }
@@ -46,7 +46,7 @@
46
46
  {
47
47
  "name": "babysitter-post-tool-use",
48
48
  "type": "command",
49
- "command": "npx -y -p @a5c-ai/hooks-mux-cli -c \"a5c-hooks-mux invoke --adapter gemini --handler 'bash ${GEMINI_EXTENSION_PATH}/hooks/babysitter-proxied-after-tool.sh' --json\"",
49
+ "command": "a5c-hooks-mux invoke --adapter gemini --handler \"bash ${GEMINI_EXTENSION_PATH}/hooks/babysitter-proxied-after-tool.sh\" --json",
50
50
  "timeout": 30000,
51
51
  "description": "babysitter PostToolUse hook"
52
52
  }
@@ -59,7 +59,7 @@
59
59
  {
60
60
  "name": "babysitter-pre-compact",
61
61
  "type": "command",
62
- "command": "npx -y -p @a5c-ai/hooks-mux-cli -c \"a5c-hooks-mux invoke --adapter gemini --handler 'bash ${GEMINI_EXTENSION_PATH}/hooks/babysitter-proxied-pre-compact.sh' --json\"",
62
+ "command": "a5c-hooks-mux invoke --adapter gemini --handler \"bash ${GEMINI_EXTENSION_PATH}/hooks/babysitter-proxied-pre-compact.sh\" --json",
63
63
  "timeout": 30000,
64
64
  "description": "babysitter PreCompact hook"
65
65
  }
@@ -72,7 +72,7 @@
72
72
  {
73
73
  "name": "babysitter-after-agent",
74
74
  "type": "command",
75
- "command": "npx -y -p @a5c-ai/hooks-mux-cli -c \"a5c-hooks-mux invoke --adapter gemini --handler 'bash ${GEMINI_EXTENSION_PATH}/hooks/babysitter-proxied-after-agent.sh' --json\"",
75
+ "command": "a5c-hooks-mux invoke --adapter gemini --handler \"bash ${GEMINI_EXTENSION_PATH}/hooks/babysitter-proxied-after-agent.sh\" --json",
76
76
  "timeout": 30000,
77
77
  "description": "babysitter AfterAgent hook"
78
78
  }
@@ -85,7 +85,7 @@
85
85
  {
86
86
  "name": "babysitter-session-end",
87
87
  "type": "command",
88
- "command": "npx -y -p @a5c-ai/hooks-mux-cli -c \"a5c-hooks-mux invoke --adapter gemini --handler 'bash ${GEMINI_EXTENSION_PATH}/hooks/babysitter-proxied-session-end.sh' --json\"",
88
+ "command": "a5c-hooks-mux invoke --adapter gemini --handler \"bash ${GEMINI_EXTENSION_PATH}/hooks/babysitter-proxied-session-end.sh\" --json",
89
89
  "timeout": 30000,
90
90
  "description": "babysitter SessionEnd hook"
91
91
  }
@@ -98,7 +98,7 @@
98
98
  {
99
99
  "name": "babysitter-session-idle",
100
100
  "type": "command",
101
- "command": "npx -y -p @a5c-ai/hooks-mux-cli -c \"a5c-hooks-mux invoke --adapter gemini --handler 'bash ${GEMINI_EXTENSION_PATH}/hooks/babysitter-proxied-session-idle.sh' --json\"",
101
+ "command": "a5c-hooks-mux invoke --adapter gemini --handler \"bash ${GEMINI_EXTENSION_PATH}/hooks/babysitter-proxied-session-idle.sh\" --json",
102
102
  "timeout": 30000,
103
103
  "description": "babysitter SessionIdle hook"
104
104
  }
@@ -111,7 +111,7 @@
111
111
  {
112
112
  "name": "babysitter-shell-env",
113
113
  "type": "command",
114
- "command": "npx -y -p @a5c-ai/hooks-mux-cli -c \"a5c-hooks-mux invoke --adapter gemini --handler 'bash ${GEMINI_EXTENSION_PATH}/hooks/babysitter-proxied-shell-env.sh' --json\"",
114
+ "command": "a5c-hooks-mux invoke --adapter gemini --handler \"bash ${GEMINI_EXTENSION_PATH}/hooks/babysitter-proxied-shell-env.sh\" --json",
115
115
  "timeout": 30000,
116
116
  "description": "babysitter ShellEnv hook"
117
117
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@a5c-ai/babysitter-gemini-cli",
3
- "version": "5.0.1-staging.686c8b317",
3
+ "version": "5.0.1-staging.8f9a37dcd451",
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",
@@ -34,7 +34,7 @@
34
34
  "access": "public"
35
35
  },
36
36
  "dependencies": {
37
- "@a5c-ai/babysitter-sdk": "5.0.1-staging.686c8b317"
37
+ "@a5c-ai/babysitter-sdk": "5.0.1-staging.8f9a37dcd451"
38
38
  },
39
39
  "repository": {
40
40
  "type": "git",
package/plugin.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babysitter",
3
- "version": "5.0.1-staging.686c8b317",
3
+ "version": "5.0.1-staging.8f9a37dcd451",
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",
package/versions.json CHANGED
@@ -1,4 +1,4 @@
1
1
  {
2
- "sdkVersion": "5.0.1-staging.686c8b317",
3
- "extensionVersion": "5.0.1-staging.686c8b317"
2
+ "sdkVersion": "5.0.1-staging.8f9a37dcd451",
3
+ "extensionVersion": "5.0.1-staging.8f9a37dcd451"
4
4
  }