opencode-codegraph 0.1.10 → 0.1.12
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.
- package/CHANGELOG.md +10 -0
- package/README.md +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.12 - 2026-03-20
|
|
4
|
+
|
|
5
|
+
- add `ready_to_push` workflow state when CPG is fresh, review trace is green, and the worktree is clean
|
|
6
|
+
- let dogfooding status recommend an exact `git push` command when the session is fully ready
|
|
7
|
+
|
|
8
|
+
## 0.1.11 - 2026-03-20
|
|
9
|
+
|
|
10
|
+
- add conversational workflow-intent enrichment when the user asks what to do next, whether the change is ready, or whether they can push
|
|
11
|
+
- automatically append current dogfooding status in those workflow-guidance conversations
|
|
12
|
+
|
|
3
13
|
## 0.1.10 - 2026-03-20
|
|
4
14
|
|
|
5
15
|
- add conversational workflow-intent enrichment when the user asks what to do next, whether a change is ready, or whether they can push
|
package/README.md
CHANGED
|
@@ -49,6 +49,7 @@ Every conversation includes:
|
|
|
49
49
|
- a lightweight dogfooding status block when available, including freshness, current `HEAD`, review-trace state, and recommended next action.
|
|
50
50
|
- a recommended command (`/status`, `/update`, or `/review`) when the workflow can point to a deterministic next step.
|
|
51
51
|
- a normalized workflow state so the session can distinguish `refresh_needed`, `trace_pending`, `review_required`, and `ready_to_continue`.
|
|
52
|
+
- a `ready_to_push` state when the session is fresh, the review trace is green, and the worktree is clean.
|
|
52
53
|
|
|
53
54
|
### Post-Commit Updates
|
|
54
55
|
|