@kbediako/codex-orchestrator 0.1.15-alpha.2 → 0.1.15

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/docs/README.md +2 -0
  2. package/package.json +9 -1
package/docs/README.md CHANGED
@@ -110,6 +110,8 @@ Use `npx @kbediako/codex-orchestrator resume --run <run-id>` to continue interru
110
110
  - Release tags: `vX.Y.Z` or `vX.Y.Z-alpha.N` must match `package.json` version.
111
111
  - Dist-tags: stable publishes to `latest`; alpha publishes to `alpha` and uses a GitHub prerelease.
112
112
  - Publishing auth: workflow attempts OIDC trusted publishing first (`id-token: write` + `--provenance`), then falls back to `secrets.NPM_TOKEN` when OIDC is unavailable. `secrets.NPM_TOKEN` must be an npm automation token (not a token that requires OTP).
113
+ - Trusted publisher config: npm expects workflow filename `release.yml` (the file must exist at `.github/workflows/release.yml` on the default branch). Leave environment blank unless the publish job sets `environment: ...`.
114
+ - OIDC runtime prereqs: npm trusted publishing currently requires Node.js `22.14.0+` and npm `11.5.1+`; the publish job installs npm `^11.5.1` before publishing.
113
115
 
114
116
  ## Parallel Runs (Meta-Orchestration)
115
117
  The orchestrator executes a single pipeline serially. “Parallelism” comes from running multiple orchestrator runs at the same time, ideally in separate git worktrees so builds/tests don’t contend for the same working tree outputs.
package/package.json CHANGED
@@ -1,7 +1,15 @@
1
1
  {
2
2
  "name": "@kbediako/codex-orchestrator",
3
- "version": "0.1.15-alpha.2",
3
+ "version": "0.1.15",
4
4
  "license": "MIT",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/Kbediako/CO"
8
+ },
9
+ "homepage": "https://github.com/Kbediako/CO#readme",
10
+ "bugs": {
11
+ "url": "https://github.com/Kbediako/CO/issues"
12
+ },
5
13
  "type": "module",
6
14
  "bin": {
7
15
  "codex-orchestrator": "dist/bin/codex-orchestrator.js",