@corbat-tech/coco 2.2.5 → 2.4.0
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 -3
- package/dist/cli/index.js +382 -98
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +34 -5
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
[](https://nodejs.org/)
|
|
9
9
|
[](https://www.typescriptlang.org/)
|
|
10
10
|
[](LICENSE)
|
|
11
|
-
[](https://github.com/corbat-tech/coco/actions)
|
|
12
12
|
|
|
13
13
|
<br/>
|
|
14
14
|
|
|
@@ -231,12 +231,14 @@ Type `/help` inside the REPL to see everything. The most useful ones day-to-day:
|
|
|
231
231
|
|
|
232
232
|
| Command | What it does |
|
|
233
233
|
|---------|--------------|
|
|
234
|
-
| `/
|
|
234
|
+
| `/quality [on\|off]` | Toggle quality convergence mode (default: on) |
|
|
235
235
|
| `/check` | Run typecheck + lint + tests inline |
|
|
236
236
|
| `/review` | Code review with severity-rated findings |
|
|
237
237
|
| `/diff` | Visual diff with syntax highlighting |
|
|
238
238
|
| `/ship` | Full release: review → test → lint → branch → PR → merge |
|
|
239
239
|
| `/full-access [on\|off]` | Auto-approve safe tool calls |
|
|
240
|
+
| `/permissions` | Show trust status and manage tool allowlist |
|
|
241
|
+
| `/permissions allow-commits` | Auto-approve git commits for this project |
|
|
240
242
|
| `/status` | Project status, git info, session stats |
|
|
241
243
|
| `/compact` | Compress context when the conversation grows long |
|
|
242
244
|
|
|
@@ -412,7 +414,7 @@ pnpm install
|
|
|
412
414
|
|
|
413
415
|
pnpm dev # run with tsx (hot reload)
|
|
414
416
|
pnpm check # typecheck + lint + test
|
|
415
|
-
pnpm test #
|
|
417
|
+
pnpm test # 5604 tests
|
|
416
418
|
pnpm format:fix # fix formatting
|
|
417
419
|
```
|
|
418
420
|
|