@stellar-agent/codex-plugin 0.4.2 → 0.4.3

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 +14 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  Validation, manifest, and release tooling for the bundled Codex plugin under `plugins/codex`.
4
4
 
5
+ ## Install
6
+
7
+ ```bash
8
+ npm install @stellar-agent/codex-plugin
9
+ ```
10
+
11
+ ## Commands
12
+
5
13
  ```bash
6
14
  pnpm build
7
15
  node packages/codex-plugin/dist/cli.js validate plugins/codex
@@ -17,3 +25,9 @@ pnpm release:preflight
17
25
  ```
18
26
 
19
27
  That command builds this package, stages `plugins/codex`, writes `plugin-manifest.json`, creates the versioned `stellar-agent-codex-plugin-v*.tgz` artifact, then verifies the artifact through the installed `stellar-agent-codex-plugin` binary from the generated npm tarball.
28
+
29
+ ## Links
30
+
31
+ - GitHub: https://github.com/someone-in-texas/Stellar-Agent
32
+ - Codex plugin docs: https://github.com/someone-in-texas/Stellar-Agent/blob/main/docs/codex-plugin.md
33
+ - Bundled plugin README: https://github.com/someone-in-texas/Stellar-Agent/blob/main/plugins/codex/README.md
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stellar-agent/codex-plugin",
3
- "version": "0.4.2",
3
+ "version": "0.4.3",
4
4
  "description": "Validation and manifest tooling for the Stellar Agent Bridge Codex plugin artifact.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -12,7 +12,7 @@
12
12
  "bugs": {
13
13
  "url": "https://github.com/someone-in-texas/Stellar-Agent/issues"
14
14
  },
15
- "homepage": "https://github.com/someone-in-texas/Stellar-Agent#readme",
15
+ "homepage": "https://github.com/someone-in-texas/Stellar-Agent/tree/main/packages/codex-plugin#readme",
16
16
  "engines": {
17
17
  "node": ">=22"
18
18
  },