automata-cli 0.6.0-develop.282 → 0.6.0-develop.293

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.
Files changed (2) hide show
  1. package/README.md +25 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -158,7 +158,30 @@ Already cloned without `--recurse-submodules`? Fetch the vendored agent plugins
158
158
  git submodule update --init --recursive
159
159
  ```
160
160
 
161
- `vendor/agent-plugins-base` is registered in `.claude/settings.json` as a project-scope Claude Code marketplace, and the `github-alk` plugin is enabled from it — so its skills load for anyone working in this repository. See [docs/plugins.md](docs/plugins.md).
161
+ `vendor/agent-plugins-base` is registered in `.claude/settings.json` as a project-scope Claude Code marketplace, so its skills load for anyone working in this repository with no further setup.
162
+
163
+ #### Importing the plugin at user scope
164
+
165
+ The devcontainer does this for you on creation. Run it by hand to make the skills available in **every** project rather than just this one, or to reach Codex — which keeps marketplaces in `~/.codex/config.toml` and has no project-scoped equivalent, so it needs this step even inside this repository.
166
+
167
+ ```bash
168
+ # from the repository root
169
+ PLUGIN_ROOT="$(pwd)/vendor/agent-plugins-base"
170
+
171
+ # Claude Code
172
+ claude plugin marketplace add "$PLUGIN_ROOT" --scope user
173
+ claude plugin install github-alk@agent-plugins-base --scope user --yes
174
+
175
+ # Codex
176
+ codex plugin marketplace add "$PLUGIN_ROOT"
177
+ codex plugin add github-alk@agent-plugins-base
178
+ ```
179
+
180
+ Both clients need an **absolute** path here. Verify with `claude plugin list` (expect `Scope: user`, enabled) and `codex plugin list`.
181
+
182
+ To remove them again: `claude plugin uninstall github-alk@agent-plugins-base` and `codex plugin remove github-alk@agent-plugins-base`.
183
+
184
+ Full reference, including how the two scopes interact: [docs/plugins.md](docs/plugins.md).
162
185
 
163
186
  ### Scripts
164
187
 
@@ -172,7 +195,7 @@ git submodule update --init --recursive
172
195
  | `npm run audit:prod` | Audit the dependencies that ship — also runs via `prepublishOnly`, so an advisory blocks publishing |
173
196
  | `npm run audit:all` | Audit the whole tree, dev toolchain included (advisory only) |
174
197
 
175
- Agent plugins are vendored as a submodule and registered with Claude Code — see [docs/plugins.md](docs/plugins.md).
198
+ Agent plugins are vendored as a submodule and registered with both Claude Code and Codex — see [docs/plugins.md](docs/plugins.md).
176
199
 
177
200
  ### Maintenance
178
201
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automata-cli",
3
- "version": "0.6.0-develop.282",
3
+ "version": "0.6.0-develop.293",
4
4
  "description": "Automata CLI tool",
5
5
  "type": "module",
6
6
  "engines": {