@nerviq/cli 0.0.1 → 0.9.0-beta.2
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/CHANGELOG.md +181 -0
- package/LICENSE +21 -0
- package/README.md +447 -0
- package/bin/cli.js +749 -0
- package/content/case-study-template.md +91 -0
- package/content/claims-governance.md +37 -0
- package/content/claude-code/audit-repo/SKILL.md +20 -0
- package/content/claude-native-integration.md +60 -0
- package/content/devto-article.json +9 -0
- package/content/launch-posts.md +226 -0
- package/content/pilot-rollout-kit.md +30 -0
- package/content/release-checklist.md +31 -0
- package/package.json +53 -4
- package/src/activity.js +529 -0
- package/src/aider/activity.js +226 -0
- package/src/aider/config-parser.js +166 -0
- package/src/aider/context.js +158 -0
- package/src/aider/deep-review.js +316 -0
- package/src/aider/domain-packs.js +278 -0
- package/src/aider/freshness.js +168 -0
- package/src/aider/governance.js +253 -0
- package/src/aider/interactive.js +334 -0
- package/src/aider/mcp-packs.js +98 -0
- package/src/aider/patch.js +214 -0
- package/src/aider/plans.js +186 -0
- package/src/aider/premium.js +360 -0
- package/src/aider/setup.js +404 -0
- package/src/aider/techniques.js +1323 -0
- package/src/analyze.js +821 -0
- package/src/audit.js +1003 -0
- package/src/badge.js +13 -0
- package/src/benchmark.js +339 -0
- package/src/claudex-sync.json +7 -0
- package/src/codex/activity.js +324 -0
- package/src/codex/config-parser.js +183 -0
- package/src/codex/context.js +221 -0
- package/src/codex/deep-review.js +493 -0
- package/src/codex/domain-packs.js +372 -0
- package/src/codex/freshness.js +167 -0
- package/src/codex/governance.js +192 -0
- package/src/codex/interactive.js +618 -0
- package/src/codex/mcp-packs.js +660 -0
- package/src/codex/patch.js +209 -0
- package/src/codex/plans.js +251 -0
- package/src/codex/premium.js +614 -0
- package/src/codex/setup.js +603 -0
- package/src/codex/techniques.js +2649 -0
- package/src/context.js +272 -0
- package/src/copilot/activity.js +309 -0
- package/src/copilot/config-parser.js +226 -0
- package/src/copilot/context.js +197 -0
- package/src/copilot/deep-review.js +346 -0
- package/src/copilot/domain-packs.js +350 -0
- package/src/copilot/freshness.js +197 -0
- package/src/copilot/governance.js +222 -0
- package/src/copilot/interactive.js +406 -0
- package/src/copilot/mcp-packs.js +572 -0
- package/src/copilot/patch.js +238 -0
- package/src/copilot/plans.js +253 -0
- package/src/copilot/premium.js +450 -0
- package/src/copilot/setup.js +488 -0
- package/src/copilot/techniques.js +1822 -0
- package/src/cursor/activity.js +301 -0
- package/src/cursor/config-parser.js +265 -0
- package/src/cursor/context.js +236 -0
- package/src/cursor/deep-review.js +334 -0
- package/src/cursor/domain-packs.js +346 -0
- package/src/cursor/freshness.js +214 -0
- package/src/cursor/governance.js +229 -0
- package/src/cursor/interactive.js +391 -0
- package/src/cursor/mcp-packs.js +571 -0
- package/src/cursor/patch.js +243 -0
- package/src/cursor/plans.js +254 -0
- package/src/cursor/premium.js +468 -0
- package/src/cursor/setup.js +488 -0
- package/src/cursor/techniques.js +1786 -0
- package/src/deep-review.js +345 -0
- package/src/domain-packs.js +364 -0
- package/src/formatters/sarif.js +115 -0
- package/src/gemini/activity.js +402 -0
- package/src/gemini/config-parser.js +275 -0
- package/src/gemini/context.js +221 -0
- package/src/gemini/deep-review.js +559 -0
- package/src/gemini/domain-packs.js +371 -0
- package/src/gemini/freshness.js +204 -0
- package/src/gemini/governance.js +201 -0
- package/src/gemini/interactive.js +860 -0
- package/src/gemini/mcp-packs.js +658 -0
- package/src/gemini/patch.js +229 -0
- package/src/gemini/plans.js +269 -0
- package/src/gemini/premium.js +759 -0
- package/src/gemini/setup.js +692 -0
- package/src/gemini/techniques.js +2084 -0
- package/src/governance.js +523 -0
- package/src/harmony/advisor.js +383 -0
- package/src/harmony/audit.js +303 -0
- package/src/harmony/canon.js +444 -0
- package/src/harmony/cli.js +331 -0
- package/src/harmony/drift.js +401 -0
- package/src/harmony/governance.js +313 -0
- package/src/harmony/memory.js +238 -0
- package/src/harmony/sync.js +458 -0
- package/src/harmony/watch.js +336 -0
- package/src/index.js +256 -0
- package/src/insights.js +119 -0
- package/src/interactive.js +118 -0
- package/src/mcp-packs.js +597 -0
- package/src/opencode/activity.js +286 -0
- package/src/opencode/config-parser.js +109 -0
- package/src/opencode/context.js +247 -0
- package/src/opencode/deep-review.js +313 -0
- package/src/opencode/domain-packs.js +240 -0
- package/src/opencode/freshness.js +158 -0
- package/src/opencode/governance.js +159 -0
- package/src/opencode/interactive.js +392 -0
- package/src/opencode/mcp-packs.js +474 -0
- package/src/opencode/patch.js +184 -0
- package/src/opencode/plans.js +231 -0
- package/src/opencode/premium.js +413 -0
- package/src/opencode/setup.js +449 -0
- package/src/opencode/techniques.js +1713 -0
- package/src/plans.js +655 -0
- package/src/secret-patterns.js +30 -0
- package/src/setup.js +1274 -0
- package/src/synergy/adaptive.js +261 -0
- package/src/synergy/compensation.js +156 -0
- package/src/synergy/evidence.js +193 -0
- package/src/synergy/learning.js +184 -0
- package/src/synergy/patterns.js +227 -0
- package/src/synergy/ranking.js +83 -0
- package/src/synergy/report.js +163 -0
- package/src/synergy/routing.js +152 -0
- package/src/techniques.js +1354 -0
- package/src/watch.js +229 -0
- package/src/windsurf/activity.js +302 -0
- package/src/windsurf/config-parser.js +267 -0
- package/src/windsurf/context.js +249 -0
- package/src/windsurf/deep-review.js +337 -0
- package/src/windsurf/domain-packs.js +348 -0
- package/src/windsurf/freshness.js +215 -0
- package/src/windsurf/governance.js +231 -0
- package/src/windsurf/interactive.js +388 -0
- package/src/windsurf/mcp-packs.js +535 -0
- package/src/windsurf/patch.js +231 -0
- package/src/windsurf/plans.js +247 -0
- package/src/windsurf/premium.js +467 -0
- package/src/windsurf/setup.js +471 -0
- package/src/windsurf/techniques.js +1758 -0
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OpenCode Freshness Operationalization
|
|
3
|
+
*
|
|
4
|
+
* Release gates, recurring probes, propagation checklists,
|
|
5
|
+
* and staleness blocking for OpenCode surfaces.
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
const { version } = require('../../package.json');
|
|
9
|
+
|
|
10
|
+
const P0_SOURCES = [
|
|
11
|
+
{
|
|
12
|
+
key: 'opencode-docs',
|
|
13
|
+
label: 'OpenCode Official Docs',
|
|
14
|
+
url: 'https://opencode.ai/docs',
|
|
15
|
+
stalenessThresholdDays: 30,
|
|
16
|
+
verifiedAt: null,
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
key: 'opencode-config-reference',
|
|
20
|
+
label: 'OpenCode Config Reference',
|
|
21
|
+
url: 'https://opencode.ai/config',
|
|
22
|
+
stalenessThresholdDays: 30,
|
|
23
|
+
verifiedAt: null,
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
key: 'opencode-github-releases',
|
|
27
|
+
label: 'OpenCode GitHub Releases',
|
|
28
|
+
url: 'https://github.com/sst/opencode/releases',
|
|
29
|
+
stalenessThresholdDays: 14,
|
|
30
|
+
verifiedAt: null,
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
key: 'opencode-plugin-api',
|
|
34
|
+
label: 'OpenCode Plugin API',
|
|
35
|
+
url: 'https://opencode.ai/plugins',
|
|
36
|
+
stalenessThresholdDays: 30,
|
|
37
|
+
verifiedAt: null,
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
key: 'opencode-permissions-docs',
|
|
41
|
+
label: 'OpenCode Permissions Documentation',
|
|
42
|
+
url: 'https://opencode.ai/permissions',
|
|
43
|
+
stalenessThresholdDays: 30,
|
|
44
|
+
verifiedAt: null,
|
|
45
|
+
},
|
|
46
|
+
];
|
|
47
|
+
|
|
48
|
+
const PROPAGATION_CHECKLIST = [
|
|
49
|
+
{
|
|
50
|
+
trigger: 'OpenCode release with config changes',
|
|
51
|
+
targets: [
|
|
52
|
+
'src/opencode/techniques.js — update DEPRECATED_CONFIG_KEYS if keys renamed/removed',
|
|
53
|
+
'src/opencode/config-parser.js — update JSONC validation',
|
|
54
|
+
'src/opencode/governance.js — update caveats if behavior changes',
|
|
55
|
+
'test/opencode-check-matrix.js — update check expectations',
|
|
56
|
+
],
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
trigger: 'New OpenCode plugin event type added',
|
|
60
|
+
targets: [
|
|
61
|
+
'src/opencode/techniques.js — add to VALID_PLUGIN_EVENTS',
|
|
62
|
+
'src/opencode/governance.js — add to OPENCODE_PLUGIN_GOVERNANCE',
|
|
63
|
+
'src/opencode/setup.js — update plugins starter template',
|
|
64
|
+
],
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
trigger: 'New OpenCode permission tool added',
|
|
68
|
+
targets: [
|
|
69
|
+
'src/opencode/techniques.js — add to PERMISSIONED_TOOLS',
|
|
70
|
+
'src/opencode/governance.js — update permission profiles',
|
|
71
|
+
'src/opencode/setup.js — update default permission config',
|
|
72
|
+
],
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
trigger: 'OpenCode MCP schema change',
|
|
76
|
+
targets: [
|
|
77
|
+
'src/opencode/mcp-packs.js — update JSONC projections',
|
|
78
|
+
'src/opencode/techniques.js — update MCP checks',
|
|
79
|
+
],
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
trigger: 'Known security bug fixed or new bug reported',
|
|
83
|
+
targets: [
|
|
84
|
+
'src/opencode/techniques.js — update security checks (E02, E03, D05)',
|
|
85
|
+
'src/opencode/governance.js — update platformCaveats',
|
|
86
|
+
'src/opencode/freshness.js — verify against latest release',
|
|
87
|
+
],
|
|
88
|
+
},
|
|
89
|
+
];
|
|
90
|
+
|
|
91
|
+
function checkReleaseGate(sourceVerifications = {}) {
|
|
92
|
+
const now = new Date();
|
|
93
|
+
const results = P0_SOURCES.map(source => {
|
|
94
|
+
const verifiedAt = sourceVerifications[source.key]
|
|
95
|
+
? new Date(sourceVerifications[source.key])
|
|
96
|
+
: source.verifiedAt ? new Date(source.verifiedAt) : null;
|
|
97
|
+
|
|
98
|
+
if (!verifiedAt) {
|
|
99
|
+
return { ...source, status: 'unverified', daysStale: null };
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
const daysSince = Math.floor((now - verifiedAt) / (1000 * 60 * 60 * 24));
|
|
103
|
+
const isStale = daysSince > source.stalenessThresholdDays;
|
|
104
|
+
|
|
105
|
+
return {
|
|
106
|
+
...source,
|
|
107
|
+
verifiedAt: verifiedAt.toISOString(),
|
|
108
|
+
daysStale: daysSince,
|
|
109
|
+
status: isStale ? 'stale' : 'fresh',
|
|
110
|
+
};
|
|
111
|
+
});
|
|
112
|
+
|
|
113
|
+
return {
|
|
114
|
+
ready: results.every(r => r.status === 'fresh'),
|
|
115
|
+
stale: results.filter(r => r.status === 'stale' || r.status === 'unverified'),
|
|
116
|
+
fresh: results.filter(r => r.status === 'fresh'),
|
|
117
|
+
results,
|
|
118
|
+
};
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
function formatReleaseGate(gateResult) {
|
|
122
|
+
const lines = [
|
|
123
|
+
`OpenCode Freshness Gate (nerviq v${version})`,
|
|
124
|
+
'═══════════════════════════════════════',
|
|
125
|
+
'',
|
|
126
|
+
`Status: ${gateResult.ready ? 'READY' : 'BLOCKED'}`,
|
|
127
|
+
`Fresh: ${gateResult.fresh.length}/${gateResult.results.length}`,
|
|
128
|
+
'',
|
|
129
|
+
];
|
|
130
|
+
|
|
131
|
+
for (const result of gateResult.results) {
|
|
132
|
+
const icon = result.status === 'fresh' ? '✓' : result.status === 'stale' ? '✗' : '?';
|
|
133
|
+
const age = result.daysStale !== null ? ` (${result.daysStale}d ago)` : ' (unverified)';
|
|
134
|
+
lines.push(` ${icon} ${result.label}${age} — threshold: ${result.stalenessThresholdDays}d`);
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
if (!gateResult.ready) {
|
|
138
|
+
lines.push('');
|
|
139
|
+
lines.push('Action required: verify stale/unverified sources before claiming release freshness.');
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
return lines.join('\n');
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
function getPropagationTargets(triggerKeyword) {
|
|
146
|
+
const keyword = triggerKeyword.toLowerCase();
|
|
147
|
+
return PROPAGATION_CHECKLIST.filter(item =>
|
|
148
|
+
item.trigger.toLowerCase().includes(keyword)
|
|
149
|
+
);
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
module.exports = {
|
|
153
|
+
P0_SOURCES,
|
|
154
|
+
PROPAGATION_CHECKLIST,
|
|
155
|
+
checkReleaseGate,
|
|
156
|
+
formatReleaseGate,
|
|
157
|
+
getPropagationTargets,
|
|
158
|
+
};
|
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OpenCode Governance — Permission profiles, policy packs, plugin governance
|
|
3
|
+
*
|
|
4
|
+
* OpenCode's unique permission engine with pattern matching creates
|
|
5
|
+
* a richer governance surface than most platforms.
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
const { OPENCODE_DOMAIN_PACKS } = require('./domain-packs');
|
|
9
|
+
const { OPENCODE_MCP_PACKS } = require('./mcp-packs');
|
|
10
|
+
|
|
11
|
+
const OPENCODE_PERMISSION_PROFILES = [
|
|
12
|
+
{
|
|
13
|
+
key: 'locked-down',
|
|
14
|
+
label: 'Locked Down',
|
|
15
|
+
risk: 'low',
|
|
16
|
+
defaultPermissions: { bash: 'deny', edit: 'deny', task: 'deny', external_directory: 'deny' },
|
|
17
|
+
useWhen: 'First contact with a repo, security review, or regulated environments.',
|
|
18
|
+
behavior: 'Read-only access. No writes, no shell commands, explicit escalation for everything.',
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
key: 'standard',
|
|
22
|
+
label: 'Standard',
|
|
23
|
+
risk: 'medium',
|
|
24
|
+
defaultPermissions: { bash: 'ask', edit: 'ask', task: 'ask', read: 'allow', glob: 'allow', grep: 'allow' },
|
|
25
|
+
useWhen: 'Default product work where OpenCode edits locally but risky commands need review.',
|
|
26
|
+
behavior: 'Balanced baseline. Agent asks before running shell commands or editing files.',
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
key: 'power-user',
|
|
30
|
+
label: 'Power User',
|
|
31
|
+
risk: 'high',
|
|
32
|
+
defaultPermissions: { bash: 'allow', edit: 'allow', task: 'allow', read: 'allow', external_directory: 'ask' },
|
|
33
|
+
useWhen: 'Experienced users with strong repo guardrails and version control.',
|
|
34
|
+
behavior: 'Full automation with external directory check. Suitable for trusted environments.',
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
key: 'ci-automation',
|
|
38
|
+
label: 'CI Automation',
|
|
39
|
+
risk: 'high',
|
|
40
|
+
defaultPermissions: { bash: 'allow', edit: 'allow', task: 'allow', read: 'allow', external_directory: 'deny' },
|
|
41
|
+
useWhen: 'GitHub Actions, `opencode run`, or scheduled automation with pre-configured permissions.',
|
|
42
|
+
behavior: 'No prompts. All permissions pre-set. OPENCODE_DISABLE_AUTOUPDATE=1 required.',
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
key: 'unrestricted',
|
|
46
|
+
label: 'Unrestricted',
|
|
47
|
+
risk: 'critical',
|
|
48
|
+
defaultPermissions: { '*': 'allow' },
|
|
49
|
+
useWhen: 'Exceptional internal debugging only.',
|
|
50
|
+
behavior: 'Bypasses all permission boundaries. Never use in production or shared environments.',
|
|
51
|
+
},
|
|
52
|
+
];
|
|
53
|
+
|
|
54
|
+
const OPENCODE_PLUGIN_GOVERNANCE = [
|
|
55
|
+
{
|
|
56
|
+
key: 'plugin-review',
|
|
57
|
+
purpose: 'Review and approve all plugins before deployment.',
|
|
58
|
+
risk: 'high',
|
|
59
|
+
guidance: 'Plugins run in-process. Every plugin has full access to the agent runtime.',
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
key: 'plugin-pinning',
|
|
63
|
+
purpose: 'Pin npm plugin versions to prevent supply chain attacks.',
|
|
64
|
+
risk: 'high',
|
|
65
|
+
guidance: 'Never use @latest or version ranges for plugins. Pin exact versions.',
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
key: 'hook-gap-awareness',
|
|
69
|
+
purpose: 'Document known hook bypass bugs (#5894, #2319, #6396).',
|
|
70
|
+
risk: 'medium',
|
|
71
|
+
guidance: 'tool.execute.before does not intercept subagent/MCP calls. Document this limitation.',
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
key: 'plugin-event-audit',
|
|
75
|
+
purpose: 'Audit plugin event handlers for security implications.',
|
|
76
|
+
risk: 'medium',
|
|
77
|
+
guidance: 'Check which events each plugin listens to and what data it accesses.',
|
|
78
|
+
},
|
|
79
|
+
];
|
|
80
|
+
|
|
81
|
+
const OPENCODE_POLICY_PACKS = [
|
|
82
|
+
{
|
|
83
|
+
key: 'baseline-safe',
|
|
84
|
+
label: 'Baseline Safe',
|
|
85
|
+
modules: ['AGENTS.md baseline', 'standard permission profile', 'explicit bash permissions'],
|
|
86
|
+
useWhen: 'Default local OpenCode rollout.',
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
key: 'automation-reviewed',
|
|
90
|
+
label: 'Automation Reviewed',
|
|
91
|
+
modules: ['CI permission pre-config', 'OPENCODE_DISABLE_AUTOUPDATE', 'JSON output format'],
|
|
92
|
+
useWhen: 'Repos adding OpenCode workflows in CI or scheduled automation.',
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
key: 'plugin-governed',
|
|
96
|
+
label: 'Plugin Governed',
|
|
97
|
+
modules: ['plugin review process', 'version pinning', 'hook gap documentation'],
|
|
98
|
+
useWhen: 'Teams using OpenCode plugins that need security governance.',
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
key: 'enterprise-strict',
|
|
102
|
+
label: 'Enterprise Strict',
|
|
103
|
+
modules: ['locked-down permission profile', 'audit trail', 'compliance-safe settings'],
|
|
104
|
+
useWhen: 'Regulated or compliance-sensitive repos.',
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
key: 'multi-agent',
|
|
108
|
+
label: 'Multi-Agent',
|
|
109
|
+
modules: ['AGENTS.md/CLAUDE.md separation', 'per-agent permissions', 'instruction array validation'],
|
|
110
|
+
useWhen: 'Repos using both OpenCode and Claude Code or other agents.',
|
|
111
|
+
},
|
|
112
|
+
];
|
|
113
|
+
|
|
114
|
+
const OPENCODE_PILOT_ROLLOUT_KIT = {
|
|
115
|
+
recommendedScope: [
|
|
116
|
+
'Start with audit and setup on one trusted repo before enabling automation.',
|
|
117
|
+
'Keep AGENTS.md and opencode.json in version control for reviewable behavior.',
|
|
118
|
+
'Pre-configure all permissions for CI to avoid interactive prompt hangs.',
|
|
119
|
+
],
|
|
120
|
+
approvals: [
|
|
121
|
+
'Engineering owner approves permission profile and tool access.',
|
|
122
|
+
'Security owner approves any plugin deployments and CI automation.',
|
|
123
|
+
'Pilot owner records before/after audit deltas and rollback expectations.',
|
|
124
|
+
],
|
|
125
|
+
successMetrics: [
|
|
126
|
+
'Audit score delta',
|
|
127
|
+
'Permission explicitness delta',
|
|
128
|
+
'Time to first useful OpenCode task',
|
|
129
|
+
'No-overwrite rate on existing repo files',
|
|
130
|
+
],
|
|
131
|
+
rollbackExpectations: [
|
|
132
|
+
'Every OpenCode setup/apply write path emits a rollback artifact.',
|
|
133
|
+
'Plugin removal requires re-audit to confirm no residual effects.',
|
|
134
|
+
'Re-run audit after rollback to confirm repo returned to expected state.',
|
|
135
|
+
],
|
|
136
|
+
};
|
|
137
|
+
|
|
138
|
+
function getOpenCodeGovernanceSummary() {
|
|
139
|
+
return {
|
|
140
|
+
platform: 'opencode',
|
|
141
|
+
platformLabel: 'OpenCode',
|
|
142
|
+
permissionProfiles: OPENCODE_PERMISSION_PROFILES,
|
|
143
|
+
pluginGovernance: OPENCODE_PLUGIN_GOVERNANCE,
|
|
144
|
+
policyPacks: OPENCODE_POLICY_PACKS,
|
|
145
|
+
domainPacks: OPENCODE_DOMAIN_PACKS,
|
|
146
|
+
mcpPacks: OPENCODE_MCP_PACKS,
|
|
147
|
+
pilotRolloutKit: OPENCODE_PILOT_ROLLOUT_KIT,
|
|
148
|
+
platformCaveats: [
|
|
149
|
+
'Plugin hooks do not intercept subagent or MCP tool calls (#5894, #2319).',
|
|
150
|
+
'Agent deny permissions can be bypassed via SDK (#6396).',
|
|
151
|
+
'Permission prompts in CI cause hangs unless pre-configured (#10411).',
|
|
152
|
+
'6-level config merge hierarchy can produce unexpected overrides.',
|
|
153
|
+
],
|
|
154
|
+
};
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
module.exports = {
|
|
158
|
+
getOpenCodeGovernanceSummary,
|
|
159
|
+
};
|