@a5c-ai/babysitter-gemini-cli 5.0.1-staging.e920fef118ef → 5.0.1-staging.fa900f15bc4d

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.
@@ -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.e920fef118ef",
107
+ version: "5.0.1-staging.fa900f15bc4d",
108
108
  author: { name: "a5c.ai" },
109
109
  };
110
110
  if (idx >= 0) marketplace.plugins[idx] = entry;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@a5c-ai/babysitter-gemini-cli",
3
- "version": "5.0.1-staging.e920fef118ef",
3
+ "version": "5.0.1-staging.fa900f15bc4d",
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.e920fef118ef"
37
+ "@a5c-ai/babysitter-sdk": "5.0.1-staging.fa900f15bc4d"
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.e920fef118ef",
3
+ "version": "5.0.1-staging.fa900f15bc4d",
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",
@@ -9,6 +9,17 @@ version: 0.1.3
9
9
 
10
10
  Follow the commands below exactly. but apply judgement and creativity to get the job done. no matter how small or simple the task may seem, you must use the babysitter SDK and run lifecycle to execute it. This is non-negotiable. If you are asked to do something that seems like it could be done with a simple tool call, you must still use the babysitter SDK to create a run, define tasks, execute them, and complete the run. This is how you will learn and demonstrate mastery of the babysitter system. Always follow the full process, even for trivial tasks.
11
11
 
12
+ Subagents that need a scratch checkout or working directory must create it under
13
+ `/tmp/<descriptive-name>/`, not under `.a5c/runs/<runId>/work`. Before returning
14
+ deliverables, validate that no run-dir worktree was left behind, for example:
15
+
16
+ ```bash
17
+ find .a5c/runs -maxdepth 3 -name work -type d -print
18
+ ```
19
+
20
+ That command should print nothing. If it prints a non-empty work directory, move
21
+ or remove only the scratch data you created before returning.
22
+
12
23
  ## Dependencies
13
24
 
14
25
  ### Babysitter SDK and CLI
@@ -17,11 +28,13 @@ Read the SDK version from `versions.json` to ensure version compatibility:
17
28
 
18
29
  ```bash
19
30
  SDK_VERSION=$(node -e "try{console.log(JSON.parse(require('fs').readFileSync('${CLAUDE_PLUGIN_ROOT}/versions.json','utf8')).sdkVersion||'latest')}catch{console.log('latest')}")
20
- npm i -g @a5c-ai/babysitter-sdk@$SDK_VERSION
31
+ npm i -g @a5c-ai/babysitter-sdk@$SDK_VERSION || npm i -g @a5c-ai/babysitter-sdk@latest
21
32
 
22
33
  CLI="npx -y @a5c-ai/babysitter-sdk@$SDK_VERSION"
23
34
  ```
24
35
 
36
+ If the pinned version fails to install (e.g. not yet published), the fallback installs `latest`.
37
+
25
38
  If `babysitter` is already installed globally at the correct version, you may use `CLI="babysitter"` instead.
26
39
 
27
40
  ### jq
package/versions.json CHANGED
@@ -1,4 +1,4 @@
1
1
  {
2
- "sdkVersion": "5.0.1-staging.e920fef118ef",
3
- "extensionVersion": "5.0.1-staging.e920fef118ef"
2
+ "sdkVersion": "5.0.1-staging.fa900f15bc4d",
3
+ "extensionVersion": "5.0.1-staging.fa900f15bc4d"
4
4
  }