@a5c-ai/babysitter 0.0.29
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 +38 -0
- package/bin/babysitter.js +8 -0
- package/package.json +29 -0
package/README.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# @a5c-ai/babysitter
|
|
2
|
+
|
|
3
|
+
Metapackage for installing all babysitter npm packages.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g @a5c-ai/babysitter
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
Once installed, you can use the `babysitter` command:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npx @a5c-ai/babysitter --help
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Or if installed globally:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
babysitter --help
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## What's Included
|
|
26
|
+
|
|
27
|
+
This metapackage installs:
|
|
28
|
+
|
|
29
|
+
- **@a5c-ai/babysitter-sdk** - Core SDK with CLI for managing babysitter workflows
|
|
30
|
+
- **@a5c-ai/babysitter-breakpoints** - Breakpoint management system
|
|
31
|
+
|
|
32
|
+
## CLI Entry Point
|
|
33
|
+
|
|
34
|
+
The `babysitter` command provided by this metapackage is an alias to the CLI from `@a5c-ai/babysitter-sdk`.
|
|
35
|
+
|
|
36
|
+
## Repository
|
|
37
|
+
|
|
38
|
+
https://github.com/a5c-ai/babysitter
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
"use strict";
|
|
3
|
+
|
|
4
|
+
// Alias to @a5c-ai/babysitter-sdk CLI
|
|
5
|
+
// This metapackage re-exports the babysitter CLI from the SDK package
|
|
6
|
+
const { createBabysitterCli } = require("@a5c-ai/babysitter-sdk/dist/cli/main.js");
|
|
7
|
+
|
|
8
|
+
void createBabysitterCli().run();
|
package/package.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@a5c-ai/babysitter",
|
|
3
|
+
"version": "0.0.29",
|
|
4
|
+
"description": "Metapackage for installing all babysitter npm packages",
|
|
5
|
+
"license": "UNLICENSED",
|
|
6
|
+
"type": "commonjs",
|
|
7
|
+
"bin": {
|
|
8
|
+
"babysitter": "bin/babysitter.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"bin/",
|
|
12
|
+
"README.md"
|
|
13
|
+
],
|
|
14
|
+
"dependencies": {
|
|
15
|
+
"@a5c-ai/babysitter-sdk": "^0.0.1",
|
|
16
|
+
"@a5c-ai/babysitter-breakpoints": "^0.0.28"
|
|
17
|
+
},
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "https://github.com/a5c-ai/babysitter.git"
|
|
21
|
+
},
|
|
22
|
+
"keywords": [
|
|
23
|
+
"babysitter",
|
|
24
|
+
"a5c",
|
|
25
|
+
"o",
|
|
26
|
+
"orchestration",
|
|
27
|
+
"workflow"
|
|
28
|
+
]
|
|
29
|
+
}
|