-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
256 lines (256 loc) · 11 KB
/
Copy pathpackage.json
File metadata and controls
256 lines (256 loc) · 11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
{
"name": "pccx-systemverilog-ide-prototype",
"displayName": "PCCX SystemVerilog IDE Prototype",
"description": "Experimental local VS Code extension scaffold for the PCCX SystemVerilog IDE prototype; not published.",
"version": "0.0.0",
"private": true,
"type": "module",
"main": "./src/extension.cjs",
"engines": {
"vscode": "^1.90.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:pccxSystemVerilog.publishCheckedExampleDiagnostics",
"onCommand:pccxSystemVerilog.showCheckedExampleNavigation",
"onCommand:pccxSystemVerilog.publishLiveWorkspaceDiagnostics",
"onCommand:pccxSystemVerilog.showLiveWorkspaceNavigation",
"onCommand:pccxSystemVerilog.showDiagnosticsExample",
"onCommand:pccxSystemVerilog.showNavigationExample",
"onCommand:pccxSystemVerilog.runDiagnosticsLive",
"onCommand:pccxSystemVerilog.runNavigationLive",
"onCommand:pccxSystemVerilog.showWorkflowBoundaryStatus",
"onCommand:pccxSystemVerilog.buildWorkflowContextBundle",
"onCommand:pccxSystemVerilog.proposeValidationCommand",
"onCommand:pccxSystemVerilog.auditValidationProposalPreflight",
"onCommand:pccxSystemVerilog.runApprovedValidationCommand",
"onCommand:pccxSystemVerilog.showRecentValidationResults",
"onCommand:pccxSystemVerilog.showValidationCacheStatus",
"onCommand:pccxSystemVerilog.clearValidationResultCache",
"onCommand:pccxSystemVerilog.showPatchProposalPreview",
"onCommand:pccxSystemVerilog.clearPatchProposalPreview",
"onCommand:pccxSystemVerilog.showLocalWorkflowStatus",
"onCommand:pccxSystemVerilog.showContextBundleAudit",
"onCommand:pccxSystemVerilog.showPccxLabBackendStatus",
"onCommand:pccxSystemVerilog.showDiagnosticsHandoffSummary",
"onCommand:pccxSystemVerilog.showKv260StatusPanel"
],
"contributes": {
"commands": [
{
"command": "pccxSystemVerilog.publishCheckedExampleDiagnostics",
"title": "PCCX SystemVerilog: Publish Checked Example Diagnostics (Experimental)"
},
{
"command": "pccxSystemVerilog.showCheckedExampleNavigation",
"title": "PCCX SystemVerilog: Show Checked Example Navigation (Experimental)"
},
{
"command": "pccxSystemVerilog.publishLiveWorkspaceDiagnostics",
"title": "PCCX SystemVerilog: Publish Live Workspace Diagnostics (Experimental, Opt-In)"
},
{
"command": "pccxSystemVerilog.showLiveWorkspaceNavigation",
"title": "PCCX SystemVerilog: Show Live Workspace Navigation (Experimental, Opt-In)"
},
{
"command": "pccxSystemVerilog.showDiagnosticsExample",
"title": "PCCX SystemVerilog: Show Diagnostics Example"
},
{
"command": "pccxSystemVerilog.showNavigationExample",
"title": "PCCX SystemVerilog: Show Navigation Example"
},
{
"command": "pccxSystemVerilog.runDiagnosticsLive",
"title": "PCCX SystemVerilog: Run Diagnostics Live (Experimental, Opt-In Alias)"
},
{
"command": "pccxSystemVerilog.runNavigationLive",
"title": "PCCX SystemVerilog: Run Navigation Live (Experimental, Opt-In Alias)"
},
{
"command": "pccxSystemVerilog.showWorkflowBoundaryStatus",
"title": "PCCX SystemVerilog: Show Workflow Boundary Status (Experimental)"
},
{
"command": "pccxSystemVerilog.buildWorkflowContextBundle",
"title": "PCCX SystemVerilog: Build Workflow Context Bundle (Experimental)"
},
{
"command": "pccxSystemVerilog.proposeValidationCommand",
"title": "PCCX SystemVerilog: Propose Validation Command (Experimental)"
},
{
"command": "pccxSystemVerilog.auditValidationProposalPreflight",
"title": "PCCX SystemVerilog: Audit Validation Proposal Preflight (Experimental)"
},
{
"command": "pccxSystemVerilog.runApprovedValidationCommand",
"title": "PCCX SystemVerilog: Run Approved Validation Command (Experimental, Opt-In)"
},
{
"command": "pccxSystemVerilog.showRecentValidationResults",
"title": "PCCX SystemVerilog: Show Recent Validation Results (Experimental)"
},
{
"command": "pccxSystemVerilog.showValidationCacheStatus",
"title": "PCCX SystemVerilog: Show Validation Cache Status (Experimental)"
},
{
"command": "pccxSystemVerilog.clearValidationResultCache",
"title": "PCCX SystemVerilog: Clear Validation Result Cache (Experimental)"
},
{
"command": "pccxSystemVerilog.showPatchProposalPreview",
"title": "PCCX SystemVerilog: Show Patch Proposal Preview (Experimental)"
},
{
"command": "pccxSystemVerilog.clearPatchProposalPreview",
"title": "PCCX SystemVerilog: Clear Patch Proposal Preview (Experimental)"
},
{
"command": "pccxSystemVerilog.showLocalWorkflowStatus",
"title": "PCCX SystemVerilog: Show Local Workflow Status (Experimental)"
},
{
"command": "pccxSystemVerilog.showContextBundleAudit",
"title": "PCCX SystemVerilog: Show Context Bundle Audit (Experimental)"
},
{
"command": "pccxSystemVerilog.showPccxLabBackendStatus",
"title": "PCCX SystemVerilog: Show pccx-lab Backend Status (Experimental)"
},
{
"command": "pccxSystemVerilog.showDiagnosticsHandoffSummary",
"title": "PCCX SystemVerilog: Show Diagnostics Handoff Summary (Experimental)"
},
{
"command": "pccxSystemVerilog.showKv260StatusPanel",
"title": "PCCX SystemVerilog: Show KV260 Status Panel (Experimental)"
}
],
"configuration": {
"title": "PCCX SystemVerilog IDE Prototype",
"properties": {
"pccxSystemVerilog.mode": {
"type": "string",
"enum": [
"checkedExample",
"liveWorkspace"
],
"default": "checkedExample",
"description": "Experimental local prototype setting selecting checked-example mode or explicit live workspace mode for prototype commands; not a stable API."
},
"pccxSystemVerilog.liveWorkspace.enabled": {
"type": "boolean",
"default": false,
"description": "Experimental local prototype opt-in gate for live workspace commands; checked-example mode remains the default and this is not a stable API."
},
"pccxSystemVerilog.pccxLab.command": {
"type": "string",
"default": "pccx_ide_cli",
"description": "Experimental local prototype command-boundary name for the pccx-lab CLI-first backend; no arguments, no direct internals, and not a stable API."
},
"pccxSystemVerilog.workflowBoundary.enabled": {
"type": "boolean",
"default": false,
"description": "Experimental local prototype opt-in flag reserved for future SystemVerilog workflow boundaries; no provider calls and not a stable API."
},
"pccxSystemVerilog.workflowBoundary.backend": {
"type": "string",
"enum": [
"none",
"pccx-llm-launcher",
"mcp"
],
"default": "none",
"description": "Experimental local prototype workflow boundary backend selector for future controlled tool boundaries; no runtime calls in this scaffold and not a stable API."
},
"pccxSystemVerilog.validationRunner.enabled": {
"type": "boolean",
"default": false,
"description": "Experimental local prototype opt-in gate for approved validation runner execution; disabled by default and not a stable API."
},
"pccxSystemVerilog.validationRunner.mode": {
"type": "string",
"enum": [
"disabled",
"allowlisted"
],
"default": "disabled",
"description": "Experimental local prototype validation runner mode; allowlisted mode must be explicit and is not a stable API."
},
"pccxSystemVerilog.validationRunner.defaultWorkingDirectory": {
"type": "string",
"enum": [
"repo-root",
"workspace"
],
"default": "repo-root",
"description": "Experimental local prototype working-directory label for approved validation runner commands; fixed allowlisted commands may override it and this is not a stable API."
},
"pccxSystemVerilog.validationRunner.maxOutputLines": {
"type": "integer",
"default": 120,
"minimum": 1,
"maximum": 500,
"description": "Experimental local prototype maximum stdout/stderr lines retained in approved validation summaries; not a stable API."
},
"pccxSystemVerilog.validationRunner.timeoutMs": {
"type": "integer",
"default": 30000,
"minimum": 1000,
"maximum": 120000,
"description": "Experimental local prototype timeout in milliseconds for approved validation runner commands; not a stable API."
},
"pccxSystemVerilog.pythonPath": {
"type": "string",
"default": "python3",
"description": "Experimental local prototype Python executable used by the live CLI prototype path; not a stable API."
},
"pccxSystemVerilog.defaultSource": {
"type": "string",
"default": "fixtures/missing_endmodule.sv",
"description": "Experimental local prototype workspace-relative default SystemVerilog source used by live diagnostics; not a stable API."
},
"pccxSystemVerilog.defaultLog": {
"type": "string",
"default": "fixtures/xsim/mixed.log",
"description": "Experimental local prototype workspace-relative default synthetic xsim-style log used by live diagnostics; not a stable API."
},
"pccxSystemVerilog.defaultNavigationRoot": {
"type": "string",
"default": "fixtures/modules",
"description": "Experimental local prototype workspace-relative source root used by live navigation; not a stable API."
},
"pccxSystemVerilog.defaultModule": {
"type": "string",
"default": "simple_mod",
"description": "Experimental local prototype default module name used by navigation examples; not a stable API."
},
"pccxSystemVerilog.defaultDeclarationKind": {
"type": "string",
"enum": [
"module",
"package",
"interface",
"any"
],
"default": "module",
"description": "Experimental local prototype default declaration kind used by navigation; not a stable API."
},
"pccxSystemVerilog.kv260.preflightTranscriptPath": {
"type": "string",
"default": "~/.codex/private-state/board-preflight/preflight-tty-2026-05-06.md",
"description": "Experimental local prototype path for the read-only KV260 preflight transcript summary; not a stable API."
}
}
}
},
"devDependencies": {
"@vscode/test-electron": "2.5.2"
}
}