@osovv/vv-opencode 1.3.3 → 1.3.5
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 +19 -0
- package/README.md +323 -385
- package/dist/lib/plugin-toggle-config.d.ts +2 -0
- package/dist/lib/plugin-toggle-config.js +4 -0
- package/dist/lib/plugin-toggle-config.js.map +1 -1
- package/dist/lib/vvoc-config.d.ts +9 -0
- package/dist/lib/vvoc-config.js +2 -0
- package/dist/lib/vvoc-config.js.map +1 -1
- package/dist/plugins/tool-history-compaction/config.d.ts +4 -0
- package/dist/plugins/tool-history-compaction/config.js +12 -0
- package/dist/plugins/tool-history-compaction/config.js.map +1 -1
- package/dist/plugins/tool-history-compaction/index.js +2 -2
- package/dist/plugins/tool-history-compaction/index.js.map +1 -1
- package/dist/plugins/tool-history-compaction/prune.d.ts +6 -1
- package/dist/plugins/tool-history-compaction/prune.js +17 -7
- package/dist/plugins/tool-history-compaction/prune.js.map +1 -1
- package/dist/plugins/tool-history-compaction/saved-output.d.ts +16 -0
- package/dist/plugins/tool-history-compaction/saved-output.js +72 -0
- package/dist/plugins/tool-history-compaction/saved-output.js.map +1 -0
- package/dist/plugins/tool-history-compaction/transform.d.ts +10 -0
- package/dist/plugins/tool-history-compaction/transform.js +69 -17
- package/dist/plugins/tool-history-compaction/transform.js.map +1 -1
- package/package.json +2 -2
- package/schemas/vvoc/v3.json +3 -1
- package/templates/skills/vv-execute/SKILL.md +11 -11
- package/templates/skills/vv-plan/SKILL.md +9 -8
- package/templates/skills/vv-plan/references/plan-template.xml +4 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
## <small>1.3.5 (2026-08-21)</small>
|
|
2
|
+
|
|
3
|
+
### Summary
|
|
4
|
+
|
|
5
|
+
Release 1.3.5 clarifies what vv-opencode offers and makes plan documents easier to work with by hand. The docs are restructured around an outcome-first pitch that reframes the package as an opinionated agentic development layer for OpenCode, adds a "You just talk to OpenCode normally" section showing how vv-controller picks the lightest trajectory for each request while explicit spec, plan, and execute skills take over only when the work needs them, and surfaces provider-neutral web tools in a new Why section. On the functional side, plan tasks and waves now carry their identity in unique element names (`<TASK-T-NNN>` and `<WAVE-N>`) instead of generic tags with child id/num elements, so long task blocks stay addressable and grep/sed extraction used by vv-plan and vv-execute remains exact without a separate query language; the plan template, skill format rules, plan-validation checks, and README grep examples are updated to match.
|
|
6
|
+
|
|
7
|
+
* docs(readme): reframe pitch as agentic layer and add natural-trajectory section ([d197955](https://github.com/osovv/vv-opencode/commit/d197955))
|
|
8
|
+
* docs(readme): restructure around outcome-first pitch and runtime value ([9e6910b](https://github.com/osovv/vv-opencode/commit/9e6910b))
|
|
9
|
+
* docs(readme): surface provider-neutral web tools in the Why section ([c90ecf0](https://github.com/osovv/vv-opencode/commit/c90ecf0))
|
|
10
|
+
* feat(skills): give plan tasks and waves unique element-name boundaries ([8f52f0c](https://github.com/osovv/vv-opencode/commit/8f52f0c))
|
|
11
|
+
|
|
12
|
+
## <small>1.3.4 (2026-08-19)</small>
|
|
13
|
+
|
|
14
|
+
### Summary
|
|
15
|
+
|
|
16
|
+
Version 1.3.4 reworks the tool-history-compaction plugin to protect your active working context and make pruning recoverable. The previous call-count-based tail protection is replaced with an absolute recent-message window (protectRecentMessages, default 8) anchored by message recency time, so outputs inside the newest messages are never rewritten regardless of call count, output size, tool class, or parallel batching, even when OpenCode reorders messages before the transform hook. A protection-budget leak was also fixed: retained tools such as task, agent, websearch, and skill no longer consume the per-call protection budget, so older bash/read outputs stay protected in agent-heavy sessions. Additionally, pruning is now recoverable by default (savePrunedOutput): the full pruned output is persisted once per tool call under your XDG data home in the vvoc tool-output directory, and the prune marker embeds the saved path so the model can re-read the complete output instead of reconstructing it from head and tail fragments. Schema v3, sync materialization, and the README were updated to reflect the new configuration options.
|
|
17
|
+
|
|
18
|
+
* feat(tool-history-compaction): protect the recent message window and persist pruned outputs ([b44eeeb](https://github.com/osovv/vv-opencode/commit/b44eeeb))
|
|
19
|
+
|
|
1
20
|
## <small>1.3.3 (2026-08-19)</small>
|
|
2
21
|
|
|
3
22
|
### Summary
|