pluidr 0.7.4 → 0.7.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pluidr",
3
- "version": "0.7.4",
3
+ "version": "0.7.5",
4
4
  "description": "Opinionated Engineering Workflow for OpenCode — Plan, Build, Review.",
5
5
  "keywords": [
6
6
  "opencode",
@@ -386,6 +386,7 @@ elsewhere. Do not accept a report that is not in `docs/reports/`.
386
386
  already confirmed as PASS.
387
387
  - **Clarification** — If anything is ambiguous at any phase, avoid excessive questioning. For minor details, make a reasonable, safe engineering assumption based on existing codebase conventions and document it. Only prompt the user using multiple-choice options (2-3 short choices per question, and list your recommended option first prefixed with '(Recommended)') if there is a critical blocking issue that directly impacts the design direction or has high regression risk.
388
388
  - **Front-End / UI Mockups** — If the user asks for a design, mockup, or anything related to the Front-End (FE), you must provide a detailed ASCII mockup of the UI structure in your output.
389
+ - **Path Normalization** — Prefer using forward slashes (`/`) for paths when executing cross-platform runtimes (like `node`, `npm`, `python`, `pytest`, `git`, `rg`, `grep`, `cat`, etc.) to prevent the permission engine from misinterpreting backslashes as escape sequences. For native Windows shell commands (like `cmd.exe` built-ins), use standard backslashes (`\`) to prevent the shell from misinterpreting slashes as switch options (e.g. `/p` in `/plugins`).
389
390
 
390
391
  ---
391
392
 
@@ -124,6 +124,7 @@ just a technical restriction.
124
124
  implementation, and reporting in the same delegate call. Each subagent
125
125
  has one job; the Debugger orchestrates the sequence.
126
126
  - **Avoid Excessive Questioning** — Avoid excessive querying of the user for minor ambiguities. For small implementation details, make a reasonable, safe engineering assumption based on existing codebase conventions and proceed. Only prompt the user using multiple-choice options (2-3 short choices per question, and list your recommended option first prefixed with '(Recommended)') when a critical blocking issue directly prevents a safe diagnosis or fix.
127
+ - **Path Normalization** — Prefer using forward slashes (`/`) for paths when executing cross-platform runtimes (like `node`, `npm`, `python`, `pytest`, `git`, `rg`, `grep`, `cat`, etc.) to prevent the permission engine from misinterpreting backslashes as escape sequences. For native Windows shell commands (like `cmd.exe` built-ins), use standard backslashes (`\`) to prevent the shell from misinterpreting slashes as switch options (e.g. `/p` in `/plugins`).
127
128
 
128
129
  ## What you do NOT do
129
130
 
@@ -80,6 +80,7 @@ Do NOT remain in a completed state without offering next steps.
80
80
  ## Principles you apply
81
81
 
82
82
  - **Avoid Excessive Questioning** — Avoid excessive querying of the user for minor ambiguities. For small implementation details, make a reasonable, safe engineering assumption based on existing codebase conventions and proceed. Only prompt the user using the `question` tool with multiple-choice options (2-3 short choices per question, and list your recommended option first prefixed with '(Recommended)') for critical blocking decisions (such as the Guardrail Gate or a complete audit block).
83
+ - **Path Normalization** — Prefer using forward slashes (`/`) for paths when executing cross-platform runtimes (like `node`, `npm`, `python`, `pytest`, `git`, `rg`, `grep`, `cat`, etc.) to prevent the permission engine from misinterpreting backslashes as escape sequences. For native Windows shell commands (like `cmd.exe` built-ins), use standard backslashes (`\`) to prevent the shell from misinterpreting slashes as switch options (e.g. `/p` in `/plugins`).
83
84
 
84
85
  ## Conflict Resolution
85
86
  Refer to `hierarchy.txt` (loaded globally) — you do not resolve principle
@@ -96,6 +96,19 @@
96
96
  "npm *": "allow",
97
97
  "npx *": "allow",
98
98
  "node *": "allow",
99
+ "bun *": "allow",
100
+ "pnpm *": "allow",
101
+ "yarn *": "allow",
102
+ "python *": "allow",
103
+ "python3 *": "allow",
104
+ "pip *": "allow",
105
+ "pip3 *": "allow",
106
+ "uv *": "allow",
107
+ "poetry *": "allow",
108
+ "go *": "allow",
109
+ "cargo *": "allow",
110
+ "make *": "allow",
111
+ "cmake *": "allow",
99
112
  "git *": "allow",
100
113
  "mkdir *": "allow",
101
114
  "cp *": "allow",
@@ -103,10 +116,14 @@
103
116
  "mv *": "allow",
104
117
  "cat *": "allow",
105
118
  "ls *": "allow",
119
+ "dir *": "allow",
106
120
  "rg *": "allow",
107
121
  "grep *": "allow",
108
122
  "find *": "allow",
109
- "node --test": "allow"
123
+ "echo *": "allow",
124
+ "node --test": "allow",
125
+ "npm test": "allow",
126
+ "pytest *": "allow"
110
127
  },
111
128
  "task": "deny"
112
129
  }
@@ -125,16 +142,27 @@
125
142
  "todowrite": "deny",
126
143
  "bash": {
127
144
  "*": "deny",
145
+ "node *": "allow",
146
+ "bun *": "allow",
147
+ "npm *": "allow",
148
+ "npx *": "allow",
149
+ "python *": "allow",
150
+ "python3 *": "allow",
151
+ "go *": "allow",
152
+ "cargo *": "allow",
128
153
  "node --test": "allow",
129
154
  "npm test": "allow",
130
- "npx *": "allow",
155
+ "pytest *": "allow",
131
156
  "rg *": "allow",
132
157
  "grep *": "allow",
133
158
  "find *": "allow",
134
159
  "cat *": "allow",
135
160
  "ls *": "allow",
161
+ "dir *": "allow",
136
162
  "git diff*": "allow",
137
- "git log*": "allow"
163
+ "git log*": "allow",
164
+ "git show*": "allow",
165
+ "echo *": "allow"
138
166
  },
139
167
  "task": "deny"
140
168
  }
@@ -156,8 +184,12 @@
156
184
  "git diff*": "allow",
157
185
  "git log*": "allow",
158
186
  "git show*": "allow",
187
+ "git status*": "allow",
159
188
  "rg *": "allow",
160
- "grep *": "allow"
189
+ "grep *": "allow",
190
+ "cat *": "allow",
191
+ "ls *": "allow",
192
+ "dir *": "allow"
161
193
  },
162
194
  "task": "deny"
163
195
  }
@@ -206,8 +238,13 @@
206
238
  "find *": "allow",
207
239
  "cat *": "allow",
208
240
  "ls *": "allow",
241
+ "dir *": "allow",
209
242
  "node --version": "allow",
210
- "npm --version": "allow"
243
+ "npm --version": "allow",
244
+ "python --version": "allow",
245
+ "python3 --version": "allow",
246
+ "go version": "allow",
247
+ "cargo --version": "allow"
211
248
  },
212
249
  "webfetch": "allow",
213
250
  "websearch": "allow",
@@ -275,10 +312,13 @@
275
312
  "git log*": "allow",
276
313
  "git show*": "allow",
277
314
  "git blame*": "allow",
315
+ "git status*": "allow",
278
316
  "rg *": "allow",
279
317
  "grep *": "allow",
280
318
  "cat *": "allow",
281
- "find *": "allow"
319
+ "find *": "allow",
320
+ "ls *": "allow",
321
+ "dir *": "allow"
282
322
  },
283
323
  "webfetch": "allow",
284
324
  "websearch": "allow",
@@ -299,23 +339,37 @@
299
339
  "todowrite": "allow",
300
340
  "bash": {
301
341
  "*": "deny",
302
- "node --test": "allow",
303
- "npm test": "allow",
304
342
  "npm *": "allow",
305
343
  "npx *": "allow",
306
344
  "node *": "allow",
307
- "git diff*": "allow",
308
- "git log*": "allow",
309
- "git show*": "allow",
345
+ "bun *": "allow",
346
+ "pnpm *": "allow",
347
+ "yarn *": "allow",
348
+ "python *": "allow",
349
+ "python3 *": "allow",
350
+ "pip *": "allow",
351
+ "pip3 *": "allow",
352
+ "uv *": "allow",
353
+ "poetry *": "allow",
354
+ "go *": "allow",
355
+ "cargo *": "allow",
356
+ "make *": "allow",
357
+ "cmake *": "allow",
358
+ "git *": "allow",
310
359
  "mkdir *": "allow",
311
360
  "cp *": "allow",
312
361
  "rm *": "allow",
313
362
  "mv *": "allow",
314
363
  "cat *": "allow",
315
364
  "ls *": "allow",
365
+ "dir *": "allow",
316
366
  "rg *": "allow",
317
367
  "grep *": "allow",
318
- "find *": "allow"
368
+ "find *": "allow",
369
+ "echo *": "allow",
370
+ "node --test": "allow",
371
+ "npm test": "allow",
372
+ "pytest *": "allow"
319
373
  },
320
374
  "task": "deny"
321
375
  }
@@ -389,12 +443,17 @@
389
443
  "find *": "allow",
390
444
  "cat *": "allow",
391
445
  "ls *": "allow",
446
+ "dir *": "allow",
392
447
  "git log*": "allow",
393
448
  "git diff*": "allow",
394
449
  "git show*": "allow",
395
450
  "git blame*": "allow",
396
451
  "node --version": "allow",
397
452
  "npm --version": "allow",
453
+ "python --version": "allow",
454
+ "python3 --version": "allow",
455
+ "go version": "allow",
456
+ "cargo --version": "allow",
398
457
  "which *": "allow",
399
458
  "where *": "allow"
400
459
  },
@@ -417,6 +476,19 @@
417
476
  "npm *": "allow",
418
477
  "npx *": "allow",
419
478
  "node *": "allow",
479
+ "bun *": "allow",
480
+ "pnpm *": "allow",
481
+ "yarn *": "allow",
482
+ "python *": "allow",
483
+ "python3 *": "allow",
484
+ "pip *": "allow",
485
+ "pip3 *": "allow",
486
+ "uv *": "allow",
487
+ "poetry *": "allow",
488
+ "go *": "allow",
489
+ "cargo *": "allow",
490
+ "make *": "allow",
491
+ "cmake *": "allow",
420
492
  "git *": "allow",
421
493
  "mkdir *": "allow",
422
494
  "cp *": "allow",
@@ -424,10 +496,14 @@
424
496
  "mv *": "allow",
425
497
  "cat *": "allow",
426
498
  "ls *": "allow",
499
+ "dir *": "allow",
427
500
  "rg *": "allow",
428
501
  "grep *": "allow",
429
502
  "find *": "allow",
430
- "node --test": "allow"
503
+ "echo *": "allow",
504
+ "node --test": "allow",
505
+ "npm test": "allow",
506
+ "pytest *": "allow"
431
507
  },
432
508
  "task": "deny"
433
509
  }
@@ -445,14 +521,25 @@
445
521
  "write": "deny",
446
522
  "bash": {
447
523
  "*": "deny",
524
+ "node *": "allow",
525
+ "bun *": "allow",
526
+ "npm *": "allow",
527
+ "npx *": "allow",
528
+ "python *": "allow",
529
+ "python3 *": "allow",
530
+ "go *": "allow",
531
+ "cargo *": "allow",
532
+ "node --test": "allow",
533
+ "npm test": "allow",
534
+ "pytest *": "allow",
448
535
  "rg *": "allow",
449
536
  "grep *": "allow",
450
537
  "find *": "allow",
451
538
  "cat *": "allow",
539
+ "ls *": "allow",
540
+ "dir *": "allow",
452
541
  "git diff*": "allow",
453
- "git log*": "allow",
454
- "node --test": "allow",
455
- "npm test": "allow"
542
+ "git log*": "allow"
456
543
  },
457
544
  "task": "deny"
458
545
  }