pluidr 0.5.0 → 0.6.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.
@@ -36,11 +36,12 @@
36
36
  "coder": "allow",
37
37
  "tester": "allow",
38
38
  "reviewer": "allow",
39
- "writer": "allow"
39
+ "compose-reporter": "allow"
40
40
  }
41
41
  }
42
42
  },
43
43
 
44
+
44
45
  "debugger": {
45
46
  "mode": "primary",
46
47
  "description": "Root-cause analysis via inspector/fixer/reporter. Standalone primary agent — does not depend on Composer. Pure orchestrator — all investigation, fixes, and reports delegated to subagents.",
@@ -60,11 +61,12 @@
60
61
  "*": "deny",
61
62
  "inspector": "allow",
62
63
  "fixer": "allow",
63
- "reporter": "allow"
64
+ "debug-reporter": "allow"
64
65
  }
65
66
  }
66
67
  },
67
68
 
69
+
68
70
  "coder": {
69
71
  "mode": "subagent",
70
72
  "description": "Implements tasks assigned by Composer, following the PRD exactly. Tracks own progress via todowrite.",
@@ -152,10 +154,10 @@
152
154
  }
153
155
  },
154
156
 
155
- "writer": {
157
+ "compose-reporter": {
156
158
  "mode": "subagent",
157
159
  "description": "Text-file executor for Composer. Writes and edits .md/.txt files across the project — like coder but for documents only. No bash.",
158
- "prompt": "{file:./prompts/writer.txt}",
160
+ "prompt": "{file:./prompts/compose-reporter.txt}",
159
161
  "permission": {
160
162
  "read": "allow",
161
163
  "glob": "allow",
@@ -168,6 +170,7 @@
168
170
  }
169
171
  },
170
172
 
173
+
171
174
  "researcher": {
172
175
  "mode": "subagent",
173
176
  "description": "Researches technical and codebase context for Composer during EXPLORE phase. Outputs confirmed_facts / inferred_facts / unknowns / risks only.",
@@ -301,10 +304,135 @@
301
304
  }
302
305
  },
303
306
 
304
- "reporter": {
307
+ "debug-reporter": {
305
308
  "mode": "subagent",
306
309
  "description": "Stateless formatter for Debugger. Produces diagnosis + remedy reports from structured input — no inference, no decisions. Summary mode only.",
307
- "prompt": "{file:./prompts/reporter.txt}",
310
+ "prompt": "{file:./prompts/debug-reporter.txt}",
311
+ "permission": {
312
+ "read": "allow",
313
+ "glob": "allow",
314
+ "grep": "allow",
315
+ "edit": {
316
+ "*": "deny",
317
+ "docs/reports/**": "allow"
318
+ },
319
+ "write": {
320
+ "*": "deny",
321
+ "docs/reports/**": "allow"
322
+ },
323
+ "bash": "deny",
324
+ "task": "deny"
325
+ }
326
+ },
327
+
328
+ "prober": {
329
+ "mode": "primary",
330
+ "temperature": 0.7,
331
+ "description": "Standalone security and quality auditing agent. Recon and vuln trace, minimal patch application, validation gate.",
332
+ "prompt": "{file:./prompts/prober.txt}",
333
+ "permission": {
334
+ "read": "deny",
335
+ "glob": "deny",
336
+ "grep": "deny",
337
+ "edit": "deny",
338
+ "write": "deny",
339
+ "webfetch": "deny",
340
+ "websearch": "deny",
341
+ "bash": "deny",
342
+ "question": "allow",
343
+ "todowrite": "allow",
344
+ "task": {
345
+ "*": "deny",
346
+ "tracer": "allow",
347
+ "patcher": "allow",
348
+ "auditor": "allow",
349
+ "probe-reporter": "allow"
350
+ }
351
+ }
352
+ },
353
+
354
+ "tracer": {
355
+ "mode": "subagent",
356
+ "description": "Recon attack surface and trace vulnerability paths for Prober. Guided by WSTG and secure code review practices.",
357
+ "prompt": "{file:./prompts/tracer.txt}",
358
+ "permission": {
359
+ "read": "allow",
360
+ "glob": "allow",
361
+ "grep": "allow",
362
+ "edit": "deny",
363
+ "write": "deny",
364
+ "bash": "allow",
365
+ "task": "deny"
366
+ }
367
+ },
368
+
369
+ "patcher": {
370
+ "mode": "subagent",
371
+ "description": "Applies minimal, security-targeted patches for Prober using Ponytail mindset.",
372
+ "prompt": "{file:./prompts/patcher.txt}",
373
+ "permission": {
374
+ "read": "allow",
375
+ "glob": "allow",
376
+ "grep": "allow",
377
+ "edit": {
378
+ "*": "deny",
379
+ "src/**": "allow",
380
+ "*.{json,md,txt}": "allow",
381
+ "package.json": "allow"
382
+ },
383
+ "write": {
384
+ "*": "deny",
385
+ "src/**": "allow",
386
+ "*.{json,md,txt}": "allow"
387
+ },
388
+ "todowrite": "allow",
389
+ "bash": {
390
+ "*": "deny",
391
+ "npm *": "allow",
392
+ "npx *": "allow",
393
+ "node *": "allow",
394
+ "git *": "allow",
395
+ "mkdir *": "allow",
396
+ "cp *": "allow",
397
+ "rm *": "allow",
398
+ "mv *": "allow",
399
+ "cat *": "allow",
400
+ "ls *": "allow",
401
+ "pwd": "allow",
402
+ "echo *": "allow",
403
+ "rg *": "allow",
404
+ "grep *": "allow",
405
+ "find *": "allow",
406
+ "which *": "allow",
407
+ "where *": "allow",
408
+ "dir *": "allow",
409
+ "type *": "allow",
410
+ "node --test": "allow",
411
+ "cd *": "allow"
412
+ },
413
+ "task": "deny"
414
+ }
415
+ },
416
+
417
+ "auditor": {
418
+ "mode": "subagent",
419
+ "description": "Validation gate for Prober: checks patch effectiveness and over-engineering. PASS/FAIL + Gap/BLOAT lists only.",
420
+ "prompt": "{file:./prompts/auditor.txt}",
421
+ "permission": {
422
+ "read": "allow",
423
+ "glob": "allow",
424
+ "grep": "allow",
425
+ "edit": "deny",
426
+ "write": "deny",
427
+ "bash": "allow",
428
+ "task": "deny"
429
+ }
430
+ },
431
+
432
+ "probe-reporter": {
433
+ "mode": "subagent",
434
+ "description": "Stateless formatter for Prober. Produces security audit reports under docs/reports/.",
435
+ "prompt": "{file:./prompts/probe-reporter.txt}",
308
436
  "permission": {
309
437
  "read": "allow",
310
438
  "glob": "allow",