Skip to content

Releases: SetraTheXX/Codex-Engineering-Workflow-Pack

v0.3.1-beta.0 - Adapter config hardening

11 Jun 15:22

Choose a tag to compare

Summary

CEWP v0.3.1-beta.0 continues the v0.3 adapter foundation work with adapter config hardening, doctor visibility, init template support, and CodeGraph workflow hygiene.

This release still supports only the codex-exec provider. External provider support is not implemented yet.

Added / Improved

  • Added optional root-level cewp.config.json adapter config support
  • Added cewp doctor adapter config source/provider summary
  • Added cewp init --with-config to generate a starter adapter config template
  • Hardened adapter config coverage across dispatch, workers, and pipeline dry-run flows
  • Added CodeGraph-assisted discovery documentation and local index hygiene
  • Added package surface guards for .codegraph/ and other local/private folders
  • Updated install and adapter contract documentation

Safety

  • External providers were not added
  • Runtime guardrails were not changed
  • allowedFiles / forbiddenFiles behavior remains unchanged
  • Reviewer Decision: PASS finalize gate remains unchanged
  • .codegraph/, .ctxo/, .cewp/, .cewp-worktrees/, and tests/ are not included in the npm package surface

Validation

  • node ./bin/cewp.js --help
  • node ./bin/cewp.js doctor
  • npm test
  • npm run smoke
  • npm run check
  • npm run pack:dry-run
  • npm pack --dry-run

v0.3.0-beta.0 - Adapter foundation

08 Jun 09:09

Choose a tag to compare

Summary

CEWP v0.3.0-beta.0 introduces the first adapter foundation layer for Coordinator Mode.

This release does not add external provider support yet. The current production provider remains codex-exec, but the internal adapter boundary is now cleaner and better prepared for future provider experiments.

Added / Improved

  • Formalized fake/test adapter harness
  • Minimal internal adapter registry
  • Adapter result shape normalization
  • Role-based adapter config normalization foundation
  • Dispatch adapter resolution through config helpers
  • Centralized codex-exec command construction
  • codex-exec availability checks in doctor/preflight
  • Adapter contract documentation updates

Safety

  • CEWP guardrails remain active
  • allowedFiles / forbiddenFiles checks remain CEWP-owned
  • Committed and uncommitted scope checks remain active
  • Reviewer Decision: PASS gate remains required for finalize
  • No automatic merge, push, publish, release, or tag behavior was added
  • External provider support is not implemented in this release

Validation

  • node ./bin/cewp.js --help
  • node ./bin/cewp.js doctor
  • node ./bin/cewp.js list
  • npm test
  • npm run smoke
  • npm run check
  • npm run pack:dry-run
  • npm pack --dry-run
  • Dev Node Linux validation PASS

v0.2.0-beta.2 - Lifecycle smoke and failure-path hardening

07 Jun 21:14

Choose a tag to compare

Summary

CEWP v0.2.0-beta.2 focuses on lifecycle test hardening, failure-path coverage, and public documentation cleanup after v0.2.0-beta.1.

Added / Improved

  • Fake worker lifecycle smoke tests
  • Fake reviewer lifecycle smoke tests
  • Pipeline failure-path smoke tests
  • Pipeline failure summary UX
  • Dev Node validation workflow hardening
  • Public adapter contract documentation
  • Adapter roadmap details trimmed from public docs
  • Package surface hygiene checks strengthened

Validation

  • npm test
  • npm run smoke
  • npm run check
  • npm run pack:dry-run
  • Dev Node Linux validation PASS

Notes

No automatic merge, push, publish, release, or tag behavior was added. CEWP guardrails remain active.

v0.2.0-beta.1 - Policy enforcement and guardrail hardening

31 May 17:13

Choose a tag to compare

v0.2.0-beta.1 - Policy enforcement and guardrail hardening

This patch hardens the v0.2 Coordinator Mode runtime without changing the core workflow shape.

Highlights

  • Added runtime enforcement for Operator Policy modes.

  • safe is the default behavior when no policy file exists.

  • High-impact local CEWP actions now require policy permission:

    • worker execution
    • reviewer execution
    • dispatch pipeline execution
    • finalize
    • cleanup
    • prune deletion
  • full-authority now works as a real advanced local workflow mode while preserving CEWP guardrails.

  • Real worker execution now requires explicit non-empty allowedFiles.

  • Parallel worker execution now detects common overlapping scopes such as docs/** vs docs/install.md.

  • External or absolute targetWorktree paths are blocked by default unless they resolve under the CEWP-managed worktree root.

  • Added more harness coverage for policy gates, worker scope guardrails, parallel overlap detection, and target worktree policy.

  • Added npm scripts for local validation:

    • npm test
    • npm run smoke
    • npm run check
    • npm run pack:dry-run
  • Updated installer wording, package description, docs, and release notes.

Safety

  • No automatic merge.
  • No automatic push.
  • No automatic publish or release.
  • Cleanup and prune remain guarded.
  • Reviewer PASS is still required for finalize.
  • Worker scope checks include both uncommitted and committed branch changes.
  • allowedFiles / forbiddenFiles guardrails remain active.
  • full-authority does not disable CEWP safety checks.

Verification

Validated with:

node .\bin\cewp.js doctor
npm test
npm pack --dry-run

The npm package is published as:

npm install @setrathex/codex-engineering-workflow-pack

Current npm dist-tags:

latest: 0.2.0-beta.1
beta: 0.2.0-beta.1

v0.2.0-beta.0 - Coordinator Mode runtime and guarded parallel dispatch

31 May 15:44

Choose a tag to compare

Release Notes

0.2.0-beta.0

Summary

CEWP now includes a local-first Coordinator Mode runtime for multi-agent engineering workflows, with worktree isolation, dispatch planning, guarded Codex execution, parallel workers, reviewer gate, operator policy modes, harness smoke tests, and modularized CLI internals.

Added

  • Coordinator Mode runtime under .cewp/runs/<run-id>/
  • Worktree helpers: plan/create/status
  • Review packet collection
  • Finalize, cleanup, prune helpers
  • Dispatch plan/check/prompts/start dry-run
  • Guarded codex-exec adapter execution
  • Sequential and parallel worker execution
  • Reviewer execution
  • Dispatch pipeline
  • Operator policy config:
    • cewp policy show
    • cewp policy set safe
    • cewp policy set trusted
    • cewp policy set full-authority
    • cewp policy reset
  • Harness smoke tests
  • Modular src/** runtime structure

Safety

  • No automatic merge
  • No automatic push
  • No automatic publish/release
  • Cleanup is dry-run by default
  • Finalize requires reviewer Decision: PASS
  • Worker scope checks include both uncommitted and committed branch changes
  • allowedFiles / forbiddenFiles guardrails remain active
  • Full authority mode is supported but does not disable CEWP guardrails

Verification

  • node --check ./bin/cewp.js
  • node ./bin/cewp.js --help
  • node ./bin/cewp.js doctor
  • node ./bin/cewp.js list
  • node ./tests/harness/run-smoke.js
  • npm pack --dry-run