@a5c-ai/babysitter 5.0.1-staging.ff2c19f9 → 5.0.1-staging.ff407b73
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 +9 -3
- package/package.json +13 -4
package/README.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
Metapackage for installing all babysitter npm packages.
|
|
4
4
|
|
|
5
|
+
<!-- docs-status:start -->
|
|
6
|
+
> Status: Public metapackage.
|
|
7
|
+
> Canonical docs home: [Package and Plugin Docs Map](../../docs/package-and-plugin-map.md).
|
|
8
|
+
> This README remains the canonical package contract for the metapackage install surface.
|
|
9
|
+
<!-- docs-status:end -->
|
|
10
|
+
|
|
5
11
|
## Installation
|
|
6
12
|
|
|
7
13
|
```bash
|
|
@@ -23,12 +29,12 @@ babysitter --help # agent-facing commands (default)
|
|
|
23
29
|
babysitter --help-human # human-facing SDK/install commands
|
|
24
30
|
```
|
|
25
31
|
|
|
26
|
-
For
|
|
27
|
-
`invoke`, `resume`, `start-server`, and `tui`, install the optional
|
|
32
|
+
For agent runtime orchestration commands such as `call`, `yolo`,
|
|
33
|
+
`invoke`, `resume`, `start-server`, and `tui`, install the optional agent CLI:
|
|
28
34
|
|
|
29
35
|
```bash
|
|
30
36
|
npm install -g @a5c-ai/babysitter-agent
|
|
31
|
-
babysitter-
|
|
37
|
+
babysitter-agent --help-human
|
|
32
38
|
```
|
|
33
39
|
|
|
34
40
|
## What's Included
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@a5c-ai/babysitter",
|
|
3
|
-
"version": "5.0.1-staging.
|
|
3
|
+
"version": "5.0.1-staging.ff407b73",
|
|
4
4
|
"description": "Metapackage for installing all babysitter npm packages",
|
|
5
|
-
"license": "
|
|
5
|
+
"license": "MIT",
|
|
6
6
|
"type": "commonjs",
|
|
7
7
|
"bin": {
|
|
8
8
|
"babysitter": "bin/babysitter.js"
|
|
@@ -11,15 +11,24 @@
|
|
|
11
11
|
"bin/",
|
|
12
12
|
"README.md"
|
|
13
13
|
],
|
|
14
|
+
"publishConfig": {
|
|
15
|
+
"access": "public"
|
|
16
|
+
},
|
|
14
17
|
"scripts": {
|
|
15
18
|
"lint": "eslint \"bin/**/*.js\" --max-warnings=0"
|
|
16
19
|
},
|
|
17
20
|
"dependencies": {
|
|
18
|
-
"@a5c-ai/babysitter-sdk": "5.0.1-staging.
|
|
21
|
+
"@a5c-ai/babysitter-sdk": "5.0.1-staging.ff407b73",
|
|
22
|
+
"@a5c-ai/babysitter-agent": "5.0.1-staging.ff407b73"
|
|
19
23
|
},
|
|
20
24
|
"repository": {
|
|
21
25
|
"type": "git",
|
|
22
|
-
"url": "https://github.com/a5c-ai/babysitter.git"
|
|
26
|
+
"url": "git+https://github.com/a5c-ai/babysitter.git",
|
|
27
|
+
"directory": "packages/babysitter"
|
|
28
|
+
},
|
|
29
|
+
"homepage": "https://github.com/a5c-ai/babysitter/tree/main/packages/babysitter#readme",
|
|
30
|
+
"bugs": {
|
|
31
|
+
"url": "https://github.com/a5c-ai/babysitter/issues"
|
|
23
32
|
},
|
|
24
33
|
"keywords": [
|
|
25
34
|
"babysitter",
|