@nerviq/cli 1.3.1 → 1.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 +47 -30
- package/package.json +2 -2
- package/src/techniques.js +1272 -0
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@nerviq/cli)
|
|
6
6
|
[](LICENSE)
|
|
7
|
-
[](https://github.com/nerviq/nerviq)
|
|
8
8
|
[](https://nerviq.net)
|
|
9
9
|
|
|
10
10
|
---
|
|
@@ -15,14 +15,29 @@ Nerviq v1.0 ships with full audit, setup, governance, and benchmark support for
|
|
|
15
15
|
|
|
16
16
|
| Platform | Checks | Status |
|
|
17
17
|
|----------|--------|--------|
|
|
18
|
-
| Claude Code |
|
|
19
|
-
| Codex (OpenAI) |
|
|
20
|
-
| Gemini CLI (Google) |
|
|
21
|
-
| GitHub Copilot |
|
|
22
|
-
| Cursor |
|
|
23
|
-
| Windsurf |
|
|
24
|
-
| Aider |
|
|
25
|
-
| OpenCode |
|
|
18
|
+
| Claude Code | 309 | Full |
|
|
19
|
+
| Codex (OpenAI) | 225 | Full |
|
|
20
|
+
| Gemini CLI (Google) | 219 | Full |
|
|
21
|
+
| GitHub Copilot | 218 | Full |
|
|
22
|
+
| Cursor | 267 | Full |
|
|
23
|
+
| Windsurf | 265 | Full |
|
|
24
|
+
| Aider | 249 | Full |
|
|
25
|
+
| OpenCode | 251 | Full |
|
|
26
|
+
|
|
27
|
+
### 10 Stack-Specific Languages
|
|
28
|
+
|
|
29
|
+
| Language | Checks | Key Areas |
|
|
30
|
+
|----------|--------|-----------|
|
|
31
|
+
| Python | 26 | pyproject, typing, pytest, linting, async, security |
|
|
32
|
+
| Go | 21 | go.mod, vet, fmt, error wrapping, interfaces |
|
|
33
|
+
| Rust | 21 | Cargo, clippy, unsafe docs, editions, cross-compile |
|
|
34
|
+
| Java/Spring | 21 | Maven/Gradle, JUnit, Spring Boot, migrations |
|
|
35
|
+
| Ruby | 16 | Gemfile, RSpec, Rubocop, Rails |
|
|
36
|
+
| PHP | 16 | Composer, PHPUnit, Laravel, PSR |
|
|
37
|
+
| .NET | 16 | csproj, NuGet, xUnit, EF Core |
|
|
38
|
+
| Flutter | 15 | pubspec, analysis, state management, l10n |
|
|
39
|
+
| Swift | 10 | SPM, SwiftLint, async/await, doc comments |
|
|
40
|
+
| Kotlin | 10 | Gradle, ktlint, coroutines, Compose, KMP |
|
|
26
41
|
|
|
27
42
|
---
|
|
28
43
|
|
|
@@ -63,23 +78,24 @@ npx @nerviq/cli benchmark # Before/after in isolated copy
|
|
|
63
78
|
|
|
64
79
|
No install required. Zero dependencies.
|
|
65
80
|
|
|
66
|
-
##
|
|
67
|
-
|
|
68
|
-
| Category | Checks | Examples |
|
|
69
|
-
|
|
70
|
-
|
|
|
71
|
-
|
|
|
72
|
-
| Security |
|
|
73
|
-
|
|
|
74
|
-
|
|
|
75
|
-
|
|
|
76
|
-
|
|
|
77
|
-
|
|
|
78
|
-
|
|
|
79
|
-
|
|
|
80
|
-
|
|
|
81
|
-
|
|
|
82
|
-
|
|
|
81
|
+
## 2,039 Checks Across 96 Categories
|
|
82
|
+
|
|
83
|
+
| Category Group | Checks | Examples |
|
|
84
|
+
|----------------|--------|---------|
|
|
85
|
+
| Stack-Specific (10 languages) | 172 | Python, Go, Rust, Java, Ruby, PHP, .NET, Flutter, Swift, Kotlin |
|
|
86
|
+
| Platform Config & Instructions | ~150 | CLAUDE.md, AGENTS.md, rules, managed blocks |
|
|
87
|
+
| Security & Trust | ~80 | permissions, deny rules, secrets, trust posture |
|
|
88
|
+
| Quality & Testing | ~70 | verification loops, lint/test/build, coverage |
|
|
89
|
+
| Automation & Hooks | ~60 | PreToolUse, PostToolUse, notification hooks |
|
|
90
|
+
| Workflow & Commands | ~50 | skills, commands, agents, snapshots |
|
|
91
|
+
| Git & Hygiene | ~40 | .gitignore, env protection, changelog |
|
|
92
|
+
| Tools & MCP | ~40 | .mcp.json, multi-server, Context7 |
|
|
93
|
+
| Governance & Compliance | ~30 | permission profiles, audit trails |
|
|
94
|
+
| DevOps & Infrastructure | ~30 | Docker, CI, Terraform, monitoring |
|
|
95
|
+
| Cross-Platform Intelligence | ~25 | harmony, synergy, drift detection |
|
|
96
|
+
| Enterprise & Freshness | ~20 | freshness tracking, deprecation, SBOM |
|
|
97
|
+
| Memory & Context | ~15 | context management, compaction, @path |
|
|
98
|
+
| Prompting & Design | ~10 | XML tags, constraints, frontend patterns |
|
|
83
99
|
|
|
84
100
|
## Harmony — Cross-Platform Alignment
|
|
85
101
|
|
|
@@ -92,6 +108,7 @@ npx @nerviq/cli harmony-drift # Detect drift between platform configs
|
|
|
92
108
|
npx @nerviq/cli harmony-advise # Cross-platform improvement advice
|
|
93
109
|
npx @nerviq/cli harmony-watch # Live monitoring for config drift
|
|
94
110
|
npx @nerviq/cli harmony-governance # Unified governance across platforms
|
|
111
|
+
npx @nerviq/cli harmony-add <platform> # Add a new platform to your project
|
|
95
112
|
```
|
|
96
113
|
|
|
97
114
|
## Synergy — Multi-Agent Amplification
|
|
@@ -200,7 +217,7 @@ Levels:
|
|
|
200
217
|
|
|
201
218
|
| Command | What it does |
|
|
202
219
|
|---------|-------------|
|
|
203
|
-
| `nerviq audit` | Score 0-100 against
|
|
220
|
+
| `nerviq audit` | Score 0-100 against 2,039 checks |
|
|
204
221
|
| `nerviq audit --lite` | Quick top-3 scan |
|
|
205
222
|
| `nerviq setup` | Generate starter-safe CLAUDE.md + hooks + commands |
|
|
206
223
|
| `nerviq augment` | Repo-aware improvement plan (no writes) |
|
|
@@ -251,9 +268,9 @@ Levels:
|
|
|
251
268
|
|
|
252
269
|
Nerviq is built on the CLAUDEX knowledge engine — the largest verified catalog of AI coding agent techniques:
|
|
253
270
|
|
|
254
|
-
- **
|
|
255
|
-
- **
|
|
256
|
-
- **
|
|
271
|
+
- **448+ research documents** covering all 8 platforms
|
|
272
|
+
- **332+ experiments** with tested, rated results
|
|
273
|
+
- **2,039 checks** across 8 platforms and 10 languages, each with `sourceUrl` and `confidence` level (0.0-1.0)
|
|
257
274
|
- Every check is traceable to primary documentation or verified experiment
|
|
258
275
|
- 90-day freshness cycle: stale findings are re-verified or pruned
|
|
259
276
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nerviq/cli",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "The intelligent nervous system for AI coding agents — 2,
|
|
3
|
+
"version": "1.4.0",
|
|
4
|
+
"description": "The intelligent nervous system for AI coding agents — 2,039 checks across 8 platforms, 10 languages, and 62 domain packs. Audit, align, and amplify.",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"nerviq": "bin/cli.js",
|