@open-agent-toolkit/cli 0.0.65 → 0.0.66

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.
@@ -1,6 +1,6 @@
1
1
  {
2
- "cli": "0.0.65",
3
- "docs-config": "0.0.65",
4
- "docs-theme": "0.0.65",
5
- "docs-transforms": "0.0.65"
2
+ "cli": "0.0.66",
3
+ "docs-config": "0.0.66",
4
+ "docs-theme": "0.0.66",
5
+ "docs-transforms": "0.0.66"
6
6
  }
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: oat-project-implement
3
- version: 2.0.6
3
+ version: 2.0.7
4
4
  description: Use when plan.md is ready for execution. Dispatches phase-level subagents with bounded fix loops; supports plan-declared parallel phase groups with worktree-isolated execution and ordered fan-in.
5
5
  argument-hint: '[--retry-limit <N>] [--dry-run]'
6
6
  disable-model-invocation: true
@@ -23,7 +23,7 @@ Execute the implementation plan task-by-task with full state tracking.
23
23
  **Purpose:** Execute plan tasks with TDD discipline, track progress, handle blockers.
24
24
 
25
25
  **CRITICAL — Bookkeeping commits are mandatory, not optional.**
26
- After every code commit and after every phase/review-fix completion, you MUST commit the OAT tracking files (`implementation.md`, `state.md`, `plan.md`) as a separate bookkeeping commit. Do not defer, batch, or skip these commits under the reasoning that they "aren't related to the implementation." Skipping a bookkeeping commit is the primary cause of cross-session state drift and will cause the next implementation run to fail bookkeeping cross-checks. If bookkeeping commits feel frequent, that is the intended design — they are cheap and they prevent drift.
26
+ After every code commit and after every phase/review-fix completion, you MUST commit the OAT tracking files (project: `implementation.md`, `state.md`, `plan.md`; repo dashboard: `.oat/state.md`) as a separate bookkeeping commit. Refresh the repo dashboard with `oat state refresh` immediately before staging so `.oat/state.md` reflects the just-completed phase/task. Do not defer, batch, or skip these commits under the reasoning that they "aren't related to the implementation." Skipping a bookkeeping commit (or skipping the dashboard refresh) is the primary cause of cross-session state drift and will cause the next implementation run to fail bookkeeping cross-checks. If bookkeeping commits feel frequent, that is the intended design — they are cheap and they prevent drift.
27
27
 
28
28
  **CRITICAL — Review boundaries require a committed artifact baseline.**
29
29
  Do not enter checkpoint review, final review, revise, or PR-final handoff with dirty core project artifacts (`discovery.md`, `spec.md`, `design.md`, `plan.md`, `implementation.md`, `state.md`, plus `.oat/state.md` when refreshed). If one of those boundaries is next and artifact bookkeeping is still uncommitted, stop and create the bookkeeping commit first.
@@ -646,7 +646,8 @@ For each phase that completed:
646
646
  **Bookkeeping commit (mandatory):**
647
647
 
648
648
  ```bash
649
- git add {PROJECT_PATH}/implementation.md {PROJECT_PATH}/state.md {PROJECT_PATH}/plan.md
649
+ oat state refresh
650
+ git add {PROJECT_PATH}/implementation.md {PROJECT_PATH}/state.md {PROJECT_PATH}/plan.md .oat/state.md
650
651
  git commit -m "chore(oat): bookkeeping after {pNN} {pass|fail}"
651
652
  ```
652
653
 
@@ -719,14 +720,15 @@ When pausing:
719
720
 
720
721
  **DO NOT SKIP.** This commit prevents state drift across sessions.
721
722
 
722
- After phase summary and task pointer advancement, commit all modified OAT tracking files:
723
+ After phase summary and task pointer advancement, refresh the repo dashboard and commit all modified OAT tracking files:
723
724
 
724
725
  ```bash
725
- git add "$PROJECT_PATH/implementation.md" "$PROJECT_PATH/state.md" "$PROJECT_PATH/plan.md"
726
+ oat state refresh
727
+ git add "$PROJECT_PATH/implementation.md" "$PROJECT_PATH/state.md" "$PROJECT_PATH/plan.md" .oat/state.md
726
728
  git diff --cached --quiet || git commit -m "chore(oat): update tracking artifacts for {phase} completion"
727
729
  ```
728
730
 
729
- Do not use `git add -A` or glob patterns. Only commit the three OAT project files listed above.
731
+ Do not use `git add -A` or glob patterns. Only commit the four files listed above (three project artifacts plus the regenerated repo dashboard).
730
732
 
731
733
  **Note on HiLL types:**
732
734
 
@@ -852,14 +854,15 @@ Implementation - Tasks complete; awaiting final review.
852
854
 
853
855
  **DO NOT SKIP.** This commit prevents state drift across sessions.
854
856
 
855
- After updating state.md to reflect implementation completion, commit all modified OAT tracking files:
857
+ After updating state.md to reflect implementation completion, refresh the repo dashboard and commit all modified OAT tracking files:
856
858
 
857
859
  ```bash
858
- git add "$PROJECT_PATH/implementation.md" "$PROJECT_PATH/state.md" "$PROJECT_PATH/plan.md"
860
+ oat state refresh
861
+ git add "$PROJECT_PATH/implementation.md" "$PROJECT_PATH/state.md" "$PROJECT_PATH/plan.md" .oat/state.md
859
862
  git diff --cached --quiet || git commit -m "chore(oat): update tracking artifacts for implementation complete"
860
863
  ```
861
864
 
862
- Do not use `git add -A` or glob patterns. Only commit the three OAT project files listed above.
865
+ Do not use `git add -A` or glob patterns. Only commit the four files listed above (three project artifacts plus the regenerated repo dashboard).
863
866
 
864
867
  ### Step 13: Final Verification
865
868
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-agent-toolkit/cli",
3
- "version": "0.0.65",
3
+ "version": "0.0.66",
4
4
  "private": false,
5
5
  "description": "Open Agent Toolkit CLI",
6
6
  "homepage": "https://github.com/voxmedia/open-agent-toolkit/tree/main/packages/cli",
@@ -33,7 +33,7 @@
33
33
  "ora": "^9.0.0",
34
34
  "yaml": "2.8.2",
35
35
  "zod": "^3.25.76",
36
- "@open-agent-toolkit/control-plane": "0.0.65"
36
+ "@open-agent-toolkit/control-plane": "0.0.66"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@types/node": "^22.10.0",