@corbat-tech/coco 2.28.2 → 2.28.4
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/README.md +5 -0
- package/dist/cli/index.js +1055 -676
- package/dist/cli/index.js.map +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -97,9 +97,12 @@ Quality mode is configurable and can be turned on/off per session.
|
|
|
97
97
|
- Agent turns include quality telemetry (`score`, iteration usage, tool success/failure, repeated-output suppression).
|
|
98
98
|
- Repeated identical tool outputs are suppressed in context to reduce token waste in multi-iteration loops.
|
|
99
99
|
- Agent loop now recovers from common "silent stop" cases (e.g. `tool_use` without reconstructed tool calls, empty `max_tokens` turns, short planning-only replies) before giving control back.
|
|
100
|
+
- Streaming turns now retry once on empty retryable provider failures before surfacing an error, reducing transient dead-end turns without re-running partial tool work.
|
|
100
101
|
- Recovery replay also covers multimodal prompts (image + text / image-only) by rebuilding a retryable task prompt when possible.
|
|
101
102
|
- Iteration budget can auto-extend when the task is still making real progress to reduce manual `continue` prompts.
|
|
102
103
|
- Automatic provider switching is **opt-in** via `agent.enableAutoSwitchProvider` (default: `false`).
|
|
104
|
+
- Plan mode now has a strict read-only allowlist by default, so `/plan` cannot drift into write-capable tools unless you explicitly disable `agent.planModeStrict`.
|
|
105
|
+
- `/doctor` provides a read-only local diagnostics pass for project access, config parsing, provider auth, hooks, and tool registry health.
|
|
103
106
|
- Release readiness can be gated with `pnpm check:release` (typecheck + lint + stable provider/agent suites).
|
|
104
107
|
|
|
105
108
|
## Commands (REPL)
|
|
@@ -113,6 +116,8 @@ Common commands:
|
|
|
113
116
|
- `/check` run checks in project context.
|
|
114
117
|
- `/review` run code review workflow.
|
|
115
118
|
- `/diff` inspect current changes.
|
|
119
|
+
- `/plan` explore and design with read-only tools only.
|
|
120
|
+
- `/doctor` run local diagnostics for config, auth, hooks, and tools.
|
|
116
121
|
- `/ship` run release-oriented workflow.
|
|
117
122
|
- `/permissions` inspect/update tool trust.
|
|
118
123
|
- `/compact` compact session context.
|