execplans
v0.2.0
Published
Scaffold and validate ExecPlan workflows for AI coding assistants
Readme
execplans
Scaffold and validate ExecPlan workflows for AI coding assistants.
Development
npm install
npm run ciCLI
npx -y execplans@latest initOr after global install:
npm i -g execplans
execplans initCodex-max preset
Use the codex-max preset to scaffold the expanded docs structure and Codex harness files:
execplans init --preset codex-maxAfter scaffold, boot the worktree-local runtime used by UI legibility workflows:
.agent/harness/worktree/up.sh
.agent/harness/worktree/status.sh
# when finished
.agent/harness/worktree/down.shValidate codex-max scaffold health:
execplans doctor --preset codex-maxRun local observability smoke checks (requires Docker daemon access):
docker compose -f .agent/harness/observability/docker-compose.yml up -d
bash .agent/harness/observability/smoke.sh
docker compose -f .agent/harness/observability/docker-compose.yml down -vRelease workflow
- CI runs on pull requests and pushes to
mainvia.github/workflows/ci.yml. - To cut a release, run the
releaseworkflow manually and selectpatch,minor, ormajor. - The
releaseworkflow now bumps version, updates changelog, pushes commit+tag, and publishes to npm in the same run. - Publishing requires
NPM_TOKENrepository secret.
Local release helpers:
npm run release:patch
# or npm run release:minor / npm run release:major