@a5c-ai/babysitter-codex 0.1.10-staging.fd09e30e → 0.1.11-staging.06ee31ad
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/package.json +2 -2
- package/skills/babysit/SKILL.md +5 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@a5c-ai/babysitter-codex",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.11-staging.06ee31ad",
|
|
4
4
|
"description": "Babysitter Codex skill bundle and integration package for OpenAI Codex CLI with SDK-managed process-library bootstrapping, 15 orchestration modes, and BOM-safe SKILL installation",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "node test/integration.test.js && node test/packaged-install.test.js",
|
|
@@ -45,6 +45,6 @@
|
|
|
45
45
|
},
|
|
46
46
|
"homepage": "https://github.com/a5c-ai/babysitter/tree/main/plugins/babysitter-codex#readme",
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@a5c-ai/babysitter-sdk": "0.0.
|
|
48
|
+
"@a5c-ai/babysitter-sdk": "0.0.188-staging.06ee31ad"
|
|
49
49
|
}
|
|
50
50
|
}
|
package/skills/babysit/SKILL.md
CHANGED
|
@@ -18,30 +18,27 @@ Read the SDK version from `versions.json` to ensure version compatibility:
|
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
20
|
SDK_VERSION=$(node -e "try{console.log(JSON.parse(require('fs').readFileSync('${CODEX_PLUGIN_ROOT}/versions.json','utf8')).sdkVersion||'latest')}catch{console.log('latest')}")
|
|
21
|
-
|
|
22
|
-
# sudo is depending on the env and system
|
|
21
|
+
CLI="npx -y @a5c-ai/babysitter-sdk@$SDK_VERSION"
|
|
23
22
|
```
|
|
24
23
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
**Alternatively, use the CLI alias:** `CLI="npx -y @a5c-ai/babysitter-sdk@$SDK_VERSION"`
|
|
24
|
+
If `babysitter` is already installed globally at the correct version, you may use `CLI="babysitter"` instead.
|
|
28
25
|
|
|
29
26
|
### jq
|
|
30
27
|
|
|
31
|
-
|
|
28
|
+
Make sure `jq` is installed and available in the path. If not, install it.
|
|
32
29
|
|
|
33
30
|
## Instructions
|
|
34
31
|
|
|
35
32
|
Run the following command to get full orchestration instructions:
|
|
36
33
|
|
|
37
34
|
```bash
|
|
38
|
-
|
|
35
|
+
$CLI instructions:babysit-skill --harness codex --interactive
|
|
39
36
|
```
|
|
40
37
|
|
|
41
38
|
For non-interactive runs (e.g., with `-p` flag or no question tool):
|
|
42
39
|
|
|
43
40
|
```bash
|
|
44
|
-
|
|
41
|
+
$CLI instructions:babysit-skill --harness codex --no-interactive
|
|
45
42
|
```
|
|
46
43
|
|
|
47
44
|
Follow the instructions returned by the command above to orchestrate the run.
|