@nerviq/cli 1.13.0 → 1.15.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 -2
- package/bin/cli.js +1067 -1008
- package/package.json +1 -1
- package/src/audit/recommendations.js +46 -0
- package/src/audit.js +127 -127
- package/src/context.js +23 -1
- package/src/harmony/cli.js +235 -0
- package/src/index.js +2 -0
- package/src/mcp-server.js +631 -314
- package/src/techniques/hygiene.js +2 -2
- package/src/techniques/quality.js +6 -5
package/README.md
CHANGED
|
@@ -217,8 +217,8 @@ All successful operational responses are wrapped in a JSON envelope:
|
|
|
217
217
|
{
|
|
218
218
|
"data": {},
|
|
219
219
|
"meta": {
|
|
220
|
-
"version": "1.
|
|
221
|
-
"timestamp": "2026-04-
|
|
220
|
+
"version": "1.15.0",
|
|
221
|
+
"timestamp": "2026-04-11T12:00:00.000Z"
|
|
222
222
|
}
|
|
223
223
|
}
|
|
224
224
|
```
|
|
@@ -339,11 +339,14 @@ Levels:
|
|
|
339
339
|
| `nerviq org scan dir1 dir2` | Aggregate multiple repos into one score table |
|
|
340
340
|
| `nerviq org policy` | Inspect resolved org/team/repo policy layers |
|
|
341
341
|
| `nerviq harmony-audit` | Cross-platform DX audit |
|
|
342
|
+
| `nerviq harmony-score` | Standalone Harmony Score (0-100) with badge + CI gate |
|
|
343
|
+
| `nerviq harmony-demo` | Zero-setup demo — see Harmony in action instantly |
|
|
342
344
|
| `nerviq harmony-sync` | Sync config across platforms |
|
|
343
345
|
| `nerviq harmony-drift` | Detect platform drift |
|
|
344
346
|
| `nerviq harmony-advise` | Cross-platform advice |
|
|
345
347
|
| `nerviq harmony-watch` | Live drift monitoring |
|
|
346
348
|
| `nerviq harmony-governance` | Unified platform governance |
|
|
349
|
+
| `nerviq harmony-add <platform>` | Add a new platform to your project |
|
|
347
350
|
| `nerviq synergy-report` | Multi-agent synergy analysis |
|
|
348
351
|
| `nerviq catalog` | Show check catalog for all 8 platforms |
|
|
349
352
|
| `nerviq doctor` | Self-diagnostics for install health, freshness, platform detection, declared MCP servers, and hook runtime |
|