@corbat-tech/coco 1.2.0 → 1.2.3
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 +9 -2
- package/dist/cli/index.js +583 -371
- package/dist/cli/index.js.map +1 -1
- package/dist/index.js +401 -170
- package/dist/index.js.map +1 -1
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<img src="https://img.shields.io/badge/v1.2.
|
|
2
|
+
<img src="https://img.shields.io/badge/v1.2.3-stable-blueviolet?style=for-the-badge" alt="Version">
|
|
3
3
|
<img src="https://img.shields.io/badge/TypeScript-5.7-3178c6?style=for-the-badge&logo=typescript&logoColor=white" alt="TypeScript">
|
|
4
4
|
<img src="https://img.shields.io/badge/Node.js-22+-339933?style=for-the-badge&logo=nodedotjs&logoColor=white" alt="Node.js">
|
|
5
5
|
<img src="https://img.shields.io/badge/License-MIT-f5c542?style=for-the-badge" alt="MIT License">
|
|
@@ -66,7 +66,14 @@ Coco doesn't just generate code — it iterates until quality converges:
|
|
|
66
66
|
| 3 | 84 | Security patched, coverage improved to 82% |
|
|
67
67
|
| 4 | 91 | All green — quality converged ✅ |
|
|
68
68
|
|
|
69
|
-
The
|
|
69
|
+
The quality bar is yours to set:
|
|
70
|
+
|
|
71
|
+
```bash
|
|
72
|
+
coco build --min-quality 90 # Per-run override
|
|
73
|
+
coco config set quality.minScore 90 # Persist in project config
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
Default is **85** (senior-level). You can also configure max iterations, convergence threshold, coverage targets, and security requirements — see `coco config init`.
|
|
70
77
|
|
|
71
78
|
### 12-Dimension Quality Scoring
|
|
72
79
|
|