@nerviq/cli 1.29.0 → 1.30.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.
Files changed (93) hide show
  1. package/CHANGELOG.md +1764 -1493
  2. package/README.md +568 -538
  3. package/SECURITY.md +78 -82
  4. package/bin/cli.js +2838 -2558
  5. package/docs/api-reference.md +356 -356
  6. package/docs/audit-fix.md +109 -0
  7. package/docs/autofix.md +3 -62
  8. package/docs/getting-started.md +1 -1
  9. package/docs/index.html +592 -592
  10. package/docs/integration-contracts.md +287 -287
  11. package/docs/maintenance.md +128 -128
  12. package/docs/new-platform-guide.md +202 -202
  13. package/docs/release-process.md +63 -0
  14. package/docs/shallow-risk.md +244 -244
  15. package/docs/why-nerviq.md +82 -82
  16. package/package.json +75 -67
  17. package/sdk/README.md +12 -3
  18. package/sdk/examples/langchain-integration.md +128 -0
  19. package/sdk/examples/self-governing-agent.js +135 -0
  20. package/sdk/index.d.ts +115 -0
  21. package/sdk/index.js +94 -0
  22. package/sdk/package.json +11 -0
  23. package/src/activity.js +13 -0
  24. package/src/aider/activity.js +226 -226
  25. package/src/aider/context.js +162 -162
  26. package/src/aider/freshness.js +123 -123
  27. package/src/aider/techniques.js +3465 -3465
  28. package/src/audit/layers.js +180 -180
  29. package/src/audit.js +1133 -1032
  30. package/src/auto-suggest.js +9 -2
  31. package/src/behavioral-drift.js +37 -2
  32. package/src/benchmark.js +299 -299
  33. package/src/codex/activity.js +324 -324
  34. package/src/codex/freshness.js +149 -142
  35. package/src/codex/techniques.js +4895 -4895
  36. package/src/context.js +326 -326
  37. package/src/continuous-ops.js +11 -1
  38. package/src/convert.js +340 -340
  39. package/src/copilot/config-parser.js +280 -280
  40. package/src/copilot/context.js +218 -218
  41. package/src/copilot/freshness.js +184 -177
  42. package/src/copilot/patch.js +238 -238
  43. package/src/copilot/techniques.js +3578 -3578
  44. package/src/cursor/freshness.js +194 -194
  45. package/src/cursor/patch.js +243 -243
  46. package/src/cursor/techniques.js +3735 -3735
  47. package/src/doctor.js +201 -201
  48. package/src/fix-engine.js +511 -8
  49. package/src/formatters/csv.js +86 -86
  50. package/src/formatters/junit.js +123 -123
  51. package/src/formatters/markdown.js +164 -164
  52. package/src/formatters/otel.js +151 -151
  53. package/src/freshness.js +163 -156
  54. package/src/gemini/activity.js +402 -402
  55. package/src/gemini/context.js +290 -290
  56. package/src/gemini/freshness.js +188 -188
  57. package/src/gemini/patch.js +229 -229
  58. package/src/gemini/techniques.js +3811 -3811
  59. package/src/governance.js +533 -533
  60. package/src/harmony/audit.js +306 -306
  61. package/src/i18n.js +63 -63
  62. package/src/insights.js +119 -119
  63. package/src/integrations.js +134 -134
  64. package/src/locales/en.json +33 -33
  65. package/src/locales/es.json +33 -33
  66. package/src/migrate.js +354 -354
  67. package/src/opencode/activity.js +286 -286
  68. package/src/opencode/freshness.js +137 -137
  69. package/src/opencode/techniques.js +3450 -3450
  70. package/src/safe-glyph.js +97 -0
  71. package/src/setup/analysis.js +12 -12
  72. package/src/setup.js +13 -6
  73. package/src/shallow-risk/index.js +113 -56
  74. package/src/shallow-risk/patterns/agent-config-cross-platform-drift.js +51 -50
  75. package/src/shallow-risk/patterns/agent-config-dangerous-autoapprove.js +47 -46
  76. package/src/shallow-risk/patterns/agent-config-deprecated-keys.js +47 -46
  77. package/src/shallow-risk/patterns/agent-config-framework-version-mismatch.js +138 -0
  78. package/src/shallow-risk/patterns/agent-config-missing-file.js +318 -317
  79. package/src/shallow-risk/patterns/agent-config-script-not-in-package-json.js +108 -0
  80. package/src/shallow-risk/patterns/agent-config-secret-literal.js +52 -49
  81. package/src/shallow-risk/patterns/agent-config-stack-contradiction.js +35 -34
  82. package/src/shallow-risk/patterns/hook-script-missing.js +71 -70
  83. package/src/shallow-risk/patterns/mcp-server-no-allowlist.js +53 -52
  84. package/src/shallow-risk/shared.js +653 -648
  85. package/src/source-urls.js +295 -295
  86. package/src/state-paths.js +85 -85
  87. package/src/supplemental-checks.js +805 -805
  88. package/src/telemetry.js +160 -160
  89. package/src/watch.js +46 -0
  90. package/src/windsurf/context.js +359 -359
  91. package/src/windsurf/freshness.js +194 -194
  92. package/src/windsurf/patch.js +231 -231
  93. package/src/windsurf/techniques.js +3779 -3779
@@ -1,32 +1,32 @@
1
- /**
2
- * Copilot Freshness Operationalization
3
- *
4
- * Release gates, recurring probes, propagation checklists,
5
- * and staleness blocking for Copilot surfaces.
6
- *
7
- * P0 sources from Copilot docs, propagation checklist.
8
- */
9
-
10
- const { version } = require('../../package.json');
11
-
12
- /**
13
- * P0 sources that must be fresh before any Copilot release claim.
14
- */
15
- const P0_SOURCES = [
16
- {
17
- key: 'copilot-instructions-docs',
18
- label: 'Copilot Instructions Documentation',
19
- url: 'https://docs.github.com/en/copilot/customizing-copilot/adding-custom-instructions-for-github-copilot',
20
- stalenessThresholdDays: 30,
21
- verifiedAt: '2026-04-07',
22
- },
23
- {
24
- key: 'copilot-agent-mode-docs',
25
- label: 'Copilot Agent Mode (IDE Chat)',
26
- url: 'https://docs.github.com/en/copilot/how-tos/chat-with-copilot/chat-in-ide',
27
- stalenessThresholdDays: 30,
28
- verifiedAt: '2026-04-07',
29
- },
1
+ /**
2
+ * Copilot Freshness Operationalization
3
+ *
4
+ * Release gates, recurring probes, propagation checklists,
5
+ * and staleness blocking for Copilot surfaces.
6
+ *
7
+ * P0 sources from Copilot docs, propagation checklist.
8
+ */
9
+
10
+ const { version } = require('../../package.json');
11
+
12
+ /**
13
+ * P0 sources that must be fresh before any Copilot release claim.
14
+ */
15
+ const P0_SOURCES = [
16
+ {
17
+ key: 'copilot-instructions-docs',
18
+ label: 'Copilot Instructions Documentation',
19
+ url: 'https://docs.github.com/en/copilot/customizing-copilot/adding-custom-instructions-for-github-copilot',
20
+ stalenessThresholdDays: 30,
21
+ verifiedAt: '2026-04-07',
22
+ },
23
+ {
24
+ key: 'copilot-agent-mode-docs',
25
+ label: 'Copilot Agent Mode (IDE Chat)',
26
+ url: 'https://docs.github.com/en/copilot/how-tos/chat-with-copilot/chat-in-ide',
27
+ stalenessThresholdDays: 30,
28
+ verifiedAt: '2026-04-07',
29
+ },
30
30
  {
31
31
  key: 'copilot-cloud-agent-docs',
32
32
  label: 'Copilot Coding Agent',
@@ -60,90 +60,97 @@ const P0_SOURCES = [
60
60
  label: 'Copilot Prompt Files Documentation',
61
61
  url: 'https://docs.github.com/en/copilot/customizing-copilot/adding-custom-instructions-for-github-copilot#creating-prompt-files',
62
62
  stalenessThresholdDays: 30,
63
- verifiedAt: '2026-04-07',
64
- },
65
- {
66
- key: 'copilot-mcp-docs',
67
- label: 'Copilot MCP Documentation',
68
- url: 'https://docs.github.com/en/copilot/how-tos/provide-context/use-mcp',
69
- stalenessThresholdDays: 30,
70
- verifiedAt: '2026-04-07',
71
- },
72
- {
73
- key: 'copilot-content-exclusions-docs',
74
- label: 'Copilot Content Exclusions Documentation',
75
- url: 'https://docs.github.com/en/copilot/how-tos/configure-content-exclusion/exclude-content-from-copilot',
76
- stalenessThresholdDays: 30,
77
- verifiedAt: '2026-04-07',
78
- },
79
- {
80
- key: 'copilot-vscode-settings-docs',
81
- label: 'VS Code Copilot Settings Reference',
82
- url: 'https://code.visualstudio.com/docs/copilot/copilot-settings',
83
- stalenessThresholdDays: 30,
84
- verifiedAt: '2026-04-07',
85
- },
86
- {
87
- key: 'copilot-changelog',
88
- label: 'GitHub Copilot Changelog',
89
- url: 'https://github.blog/changelog/label/copilot/',
90
- stalenessThresholdDays: 14,
91
- verifiedAt: '2026-04-07',
92
- },
93
- {
94
- key: 'copilot-trust-security-docs',
95
- label: 'Copilot Responsible Use Documentation',
96
- url: 'https://docs.github.com/en/copilot/responsible-use/chat-in-your-ide',
97
- stalenessThresholdDays: 30,
98
- verifiedAt: '2026-04-07',
99
- },
100
- ];
101
-
102
- /**
103
- * Propagation checklist: when a Copilot source changes, these must update.
104
- */
105
- const PROPAGATION_CHECKLIST = [
106
- {
107
- trigger: 'New Copilot VS Code settings key added or deprecated',
108
- targets: [
109
- 'src/copilot/techniques.js — update config checks and deprecated patterns',
110
- 'src/copilot/config-parser.js update KNOWN_COPILOT_SETTINGS_KEYS and DEPRECATED_COPILOT_KEYS',
111
- 'src/copilot/setup.js — update settings template',
112
- 'src/copilot/governance.js update hook registry if new auto-approval pattern',
113
- ],
114
- },
115
- {
116
- trigger: 'Cloud agent behavior change (setup-steps format, signed commits, etc.)',
117
- targets: [
118
- 'src/copilot/techniques.js — update cloud agent checks (CP-E01..CP-E05)',
119
- 'src/copilot/setup.js — update copilot-setup-steps.yml template',
120
- 'src/copilot/governance.js — update cloud-agent permission profile',
121
- ],
122
- },
123
- {
124
- trigger: 'New instruction file format or frontmatter field',
125
- targets: [
126
- 'src/copilot/config-parser.js — update frontmatter validation',
127
- 'src/copilot/techniques.js — update instruction checks (CP-A06, CP-B05)',
128
- 'src/copilot/context.js — update scopedInstructions() or promptFiles() parsing',
129
- ],
130
- },
131
- {
132
- trigger: 'MCP configuration format change in .vscode/mcp.json',
133
- targets: [
134
- 'src/copilot/mcp-packs.js — update pack JSON projections and merge logic',
135
- 'src/copilot/techniques.js — update MCP checks (CP-D01..CP-D05)',
136
- 'src/copilot/context.js — update mcpConfig() parsing',
137
- ],
138
- },
139
- {
140
- trigger: 'Content exclusion enforcement change (especially cloud agent)',
141
- targets: [
142
- 'src/copilot/techniques.js — update CP-C01, CP-C02 checks',
143
- 'src/copilot/governance.js — update caveats and policy packs',
144
- 'src/copilot/setup.js — update content exclusions guide',
145
- ],
146
- },
63
+ verifiedAt: '2026-04-07',
64
+ },
65
+ {
66
+ key: 'copilot-mcp-docs',
67
+ label: 'Copilot MCP Documentation',
68
+ url: 'https://docs.github.com/en/copilot/how-tos/provide-context/use-mcp',
69
+ stalenessThresholdDays: 30,
70
+ verifiedAt: '2026-04-07',
71
+ },
72
+ {
73
+ key: 'copilot-content-exclusions-docs',
74
+ label: 'Copilot Content Exclusions Documentation',
75
+ url: 'https://docs.github.com/en/copilot/how-tos/configure-content-exclusion/exclude-content-from-copilot',
76
+ stalenessThresholdDays: 30,
77
+ verifiedAt: '2026-04-07',
78
+ },
79
+ {
80
+ key: 'copilot-vscode-settings-docs',
81
+ label: 'VS Code Copilot Settings Reference',
82
+ url: 'https://code.visualstudio.com/docs/copilot/copilot-settings',
83
+ stalenessThresholdDays: 30,
84
+ verifiedAt: '2026-04-07',
85
+ },
86
+ {
87
+ key: 'copilot-changelog',
88
+ label: 'GitHub Copilot Changelog',
89
+ url: 'https://github.blog/changelog/label/copilot/',
90
+ stalenessThresholdDays: 14,
91
+ verifiedAt: '2026-04-07',
92
+ },
93
+ {
94
+ key: 'copilot-trust-security-docs',
95
+ label: 'Copilot Responsible Use Documentation',
96
+ url: 'https://docs.github.com/en/copilot/responsible-use/chat-in-your-ide',
97
+ stalenessThresholdDays: 30,
98
+ verifiedAt: '2026-04-07',
99
+ },
100
+ {
101
+ key: 'copilot-models-docs',
102
+ label: 'Copilot Supported AI Models',
103
+ url: 'https://docs.github.com/en/copilot/reference/ai-models/supported-models',
104
+ stalenessThresholdDays: 14,
105
+ verifiedAt: '2026-04-16',
106
+ },
107
+ ];
108
+
109
+ /**
110
+ * Propagation checklist: when a Copilot source changes, these must update.
111
+ */
112
+ const PROPAGATION_CHECKLIST = [
113
+ {
114
+ trigger: 'New Copilot VS Code settings key added or deprecated',
115
+ targets: [
116
+ 'src/copilot/techniques.js update config checks and deprecated patterns',
117
+ 'src/copilot/config-parser.js — update KNOWN_COPILOT_SETTINGS_KEYS and DEPRECATED_COPILOT_KEYS',
118
+ 'src/copilot/setup.js — update settings template',
119
+ 'src/copilot/governance.js — update hook registry if new auto-approval pattern',
120
+ ],
121
+ },
122
+ {
123
+ trigger: 'Cloud agent behavior change (setup-steps format, signed commits, etc.)',
124
+ targets: [
125
+ 'src/copilot/techniques.js — update cloud agent checks (CP-E01..CP-E05)',
126
+ 'src/copilot/setup.js — update copilot-setup-steps.yml template',
127
+ 'src/copilot/governance.js — update cloud-agent permission profile',
128
+ ],
129
+ },
130
+ {
131
+ trigger: 'New instruction file format or frontmatter field',
132
+ targets: [
133
+ 'src/copilot/config-parser.js — update frontmatter validation',
134
+ 'src/copilot/techniques.js — update instruction checks (CP-A06, CP-B05)',
135
+ 'src/copilot/context.js — update scopedInstructions() or promptFiles() parsing',
136
+ ],
137
+ },
138
+ {
139
+ trigger: 'MCP configuration format change in .vscode/mcp.json',
140
+ targets: [
141
+ 'src/copilot/mcp-packs.js — update pack JSON projections and merge logic',
142
+ 'src/copilot/techniques.js — update MCP checks (CP-D01..CP-D05)',
143
+ 'src/copilot/context.js — update mcpConfig() parsing',
144
+ ],
145
+ },
146
+ {
147
+ trigger: 'Content exclusion enforcement change (especially cloud agent)',
148
+ targets: [
149
+ 'src/copilot/techniques.js — update CP-C01, CP-C02 checks',
150
+ 'src/copilot/governance.js — update caveats and policy packs',
151
+ 'src/copilot/setup.js — update content exclusions guide',
152
+ ],
153
+ },
147
154
  {
148
155
  trigger: 'Organization policy change or new policy type',
149
156
  targets: [
@@ -168,67 +175,67 @@ const PROPAGATION_CHECKLIST = [
168
175
  ],
169
176
  },
170
177
  ];
171
-
172
- /**
173
- * Release gate: check if all P0 sources are within staleness threshold.
174
- */
175
- function checkReleaseGate(sourceVerifications = {}) {
176
- const now = new Date();
177
- const results = P0_SOURCES.map(source => {
178
- const verifiedAt = sourceVerifications[source.key]
179
- ? new Date(sourceVerifications[source.key])
180
- : source.verifiedAt ? new Date(source.verifiedAt) : null;
181
-
182
- if (!verifiedAt) {
183
- return { ...source, status: 'unverified', daysStale: null };
184
- }
185
-
186
- const daysSince = Math.floor((now - verifiedAt) / (1000 * 60 * 60 * 24));
187
- const isStale = daysSince > source.stalenessThresholdDays;
188
-
189
- return { ...source, verifiedAt: verifiedAt.toISOString(), daysStale: daysSince, status: isStale ? 'stale' : 'fresh' };
190
- });
191
-
192
- return {
193
- ready: results.every(r => r.status === 'fresh'),
194
- stale: results.filter(r => r.status === 'stale' || r.status === 'unverified'),
195
- fresh: results.filter(r => r.status === 'fresh'),
196
- results,
197
- };
198
- }
199
-
200
- function formatReleaseGate(gateResult) {
201
- const lines = [
202
- `Copilot Freshness Gate (nerviq v${version})`,
203
- '═══════════════════════════════════════',
204
- '',
205
- `Status: ${gateResult.ready ? 'READY' : 'BLOCKED'}`,
206
- `Fresh: ${gateResult.fresh.length}/${gateResult.results.length}`,
207
- '',
208
- ];
209
-
210
- for (const result of gateResult.results) {
211
- const icon = result.status === 'fresh' ? '✓' : result.status === 'stale' ? '✗' : '?';
212
- const age = result.daysStale !== null ? ` (${result.daysStale}d ago)` : ' (unverified)';
213
- lines.push(` ${icon} ${result.label}${age} — threshold: ${result.stalenessThresholdDays}d`);
214
- }
215
-
216
- if (!gateResult.ready) {
217
- lines.push('', 'Action required: verify stale/unverified sources before claiming release freshness.');
218
- }
219
-
220
- return lines.join('\n');
221
- }
222
-
223
- function getPropagationTargets(triggerKeyword) {
224
- const keyword = triggerKeyword.toLowerCase();
225
- return PROPAGATION_CHECKLIST.filter(item => item.trigger.toLowerCase().includes(keyword));
226
- }
227
-
228
- module.exports = {
229
- P0_SOURCES,
230
- PROPAGATION_CHECKLIST,
231
- checkReleaseGate,
232
- formatReleaseGate,
233
- getPropagationTargets,
234
- };
178
+
179
+ /**
180
+ * Release gate: check if all P0 sources are within staleness threshold.
181
+ */
182
+ function checkReleaseGate(sourceVerifications = {}) {
183
+ const now = new Date();
184
+ const results = P0_SOURCES.map(source => {
185
+ const verifiedAt = sourceVerifications[source.key]
186
+ ? new Date(sourceVerifications[source.key])
187
+ : source.verifiedAt ? new Date(source.verifiedAt) : null;
188
+
189
+ if (!verifiedAt) {
190
+ return { ...source, status: 'unverified', daysStale: null };
191
+ }
192
+
193
+ const daysSince = Math.floor((now - verifiedAt) / (1000 * 60 * 60 * 24));
194
+ const isStale = daysSince > source.stalenessThresholdDays;
195
+
196
+ return { ...source, verifiedAt: verifiedAt.toISOString(), daysStale: daysSince, status: isStale ? 'stale' : 'fresh' };
197
+ });
198
+
199
+ return {
200
+ ready: results.every(r => r.status === 'fresh'),
201
+ stale: results.filter(r => r.status === 'stale' || r.status === 'unverified'),
202
+ fresh: results.filter(r => r.status === 'fresh'),
203
+ results,
204
+ };
205
+ }
206
+
207
+ function formatReleaseGate(gateResult) {
208
+ const lines = [
209
+ `Copilot Freshness Gate (nerviq v${version})`,
210
+ '═══════════════════════════════════════',
211
+ '',
212
+ `Status: ${gateResult.ready ? 'READY' : 'BLOCKED'}`,
213
+ `Fresh: ${gateResult.fresh.length}/${gateResult.results.length}`,
214
+ '',
215
+ ];
216
+
217
+ for (const result of gateResult.results) {
218
+ const icon = result.status === 'fresh' ? '✓' : result.status === 'stale' ? '✗' : '?';
219
+ const age = result.daysStale !== null ? ` (${result.daysStale}d ago)` : ' (unverified)';
220
+ lines.push(` ${icon} ${result.label}${age} — threshold: ${result.stalenessThresholdDays}d`);
221
+ }
222
+
223
+ if (!gateResult.ready) {
224
+ lines.push('', 'Action required: verify stale/unverified sources before claiming release freshness.');
225
+ }
226
+
227
+ return lines.join('\n');
228
+ }
229
+
230
+ function getPropagationTargets(triggerKeyword) {
231
+ const keyword = triggerKeyword.toLowerCase();
232
+ return PROPAGATION_CHECKLIST.filter(item => item.trigger.toLowerCase().includes(keyword));
233
+ }
234
+
235
+ module.exports = {
236
+ P0_SOURCES,
237
+ PROPAGATION_CHECKLIST,
238
+ checkReleaseGate,
239
+ formatReleaseGate,
240
+ getPropagationTargets,
241
+ };