@a5c-ai/babysitter-codex 6.0.1 → 6.0.2
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/.codex-plugin/plugin.json +1 -1
- package/README.md +16 -5
- package/bin/install-shared.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -46,19 +46,30 @@ npx --yes @a5c-ai/babysitter-codex install --global
|
|
|
46
46
|
npx --yes @a5c-ai/babysitter-codex install --workspace /path/to/repo
|
|
47
47
|
```
|
|
48
48
|
|
|
49
|
-
Alternatively, use the official Codex marketplace CLI
|
|
50
|
-
marketplace
|
|
49
|
+
Alternatively, use the official Codex marketplace CLI. This repo ships a
|
|
50
|
+
self-contained codex marketplace manifest (`.agents/plugins/marketplace.json`),
|
|
51
|
+
so add it directly and install the `babysitter` plugin from it:
|
|
51
52
|
|
|
52
53
|
```bash
|
|
53
|
-
codex plugin marketplace add a5c-ai/babysitter
|
|
54
|
+
codex plugin marketplace add a5c-ai/babysitter-codex
|
|
55
|
+
codex plugin add babysitter --marketplace babysitter
|
|
54
56
|
```
|
|
55
57
|
|
|
56
|
-
|
|
58
|
+
> `--marketplace babysitter` is the marketplace **name** declared in
|
|
59
|
+
> `.agents/plugins/marketplace.json` (not the repo name).
|
|
60
|
+
|
|
61
|
+
You can also add the marketplace from the **monorepo** with a sparse checkout, or
|
|
62
|
+
from a local clone:
|
|
57
63
|
|
|
58
64
|
```bash
|
|
59
|
-
codex plugin marketplace add
|
|
65
|
+
codex plugin marketplace add a5c-ai/babysitter --ref main --sparse .agents/plugins
|
|
66
|
+
codex plugin marketplace add ./path/to/babysitter-codex
|
|
60
67
|
```
|
|
61
68
|
|
|
69
|
+
> For the monorepo form, use the released default branch (`main`) or a released
|
|
70
|
+
> tag for `--ref` — **never** `--ref staging`. Codex resolves a released plugin
|
|
71
|
+
> version; a `6.0.x-staging.*` build-metadata prerelease will not resolve.
|
|
72
|
+
|
|
62
73
|
Then browse and install:
|
|
63
74
|
|
|
64
75
|
```bash
|
package/bin/install-shared.js
CHANGED
|
@@ -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: "6.0.
|
|
107
|
+
version: "6.0.2",
|
|
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-codex",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.2",
|
|
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
|
"test": "npm run validate:ci",
|