@event4u/agent-config 1.31.0 → 1.33.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 (37) hide show
  1. package/.agent-src/commands/research/deep.md +149 -0
  2. package/.agent-src/commands/research/report.md +134 -0
  3. package/.agent-src/commands/research.md +43 -13
  4. package/.agent-src/skills/feature-planning/SKILL.md +43 -7
  5. package/.agent-src/skills/judge-test-coverage/SKILL.md +4 -0
  6. package/.agent-src/skills/pest-testing/SKILL.md +13 -6
  7. package/.agent-src/skills/quality-tools/SKILL.md +4 -0
  8. package/.agent-src/skills/refine-prompt/SKILL.md +10 -0
  9. package/.agent-src/skills/refine-ticket/SKILL.md +12 -0
  10. package/.agent-src/skills/subagent-orchestration/SKILL.md +77 -12
  11. package/.agent-src/skills/subagent-orchestration/prompts/README.md +29 -0
  12. package/.agent-src/skills/subagent-orchestration/prompts/do-and-judge-two-stage.md +121 -0
  13. package/.agent-src/skills/subagent-orchestration/prompts/do-and-judge.md +60 -0
  14. package/.agent-src/skills/subagent-orchestration/prompts/do-competitively.md +65 -0
  15. package/.agent-src/skills/subagent-orchestration/prompts/do-in-parallel.md +62 -0
  16. package/.agent-src/skills/subagent-orchestration/prompts/do-in-steps.md +62 -0
  17. package/.agent-src/skills/subagent-orchestration/prompts/do-in-worktrees.md +70 -0
  18. package/.agent-src/skills/subagent-orchestration/prompts/judge-with-debate.md +63 -0
  19. package/.agent-src/skills/subagent-orchestration/schemas/subagent-status.json +63 -0
  20. package/.agent-src/skills/test-driven-development/SKILL.md +25 -13
  21. package/.agent-src/skills/testing-anti-patterns/SKILL.md +7 -0
  22. package/.agent-src/skills/testing-anti-patterns/process-anti-patterns.md +67 -0
  23. package/.claude-plugin/marketplace.json +3 -1
  24. package/CHANGELOG.md +51 -0
  25. package/README.md +3 -3
  26. package/docs/architecture.md +2 -2
  27. package/docs/catalog.md +11 -4
  28. package/docs/contracts/command-clusters.md +1 -1
  29. package/docs/contracts/file-ownership-matrix.json +395 -0
  30. package/docs/getting-started.md +1 -1
  31. package/docs/guidelines/agent-infra/5w2h-analysis.md +260 -0
  32. package/docs/guidelines/agent-infra/critical-thinking.md +156 -0
  33. package/docs/guidelines/agent-infra/first-principles.md +192 -0
  34. package/docs/guidelines/agent-infra/six-hats.md +353 -0
  35. package/docs/guidelines/agent-infra/systems-thinking.md +220 -0
  36. package/package.json +1 -1
  37. package/scripts/check_bite_sized_granularity.py +99 -0
@@ -495,6 +495,18 @@
495
495
  "load_context": [],
496
496
  "load_context_eager": []
497
497
  },
498
+ ".agent-src.uncompressed/commands/research/deep.md": {
499
+ "kind": "command",
500
+ "rule_type": null,
501
+ "load_context": [],
502
+ "load_context_eager": []
503
+ },
504
+ ".agent-src.uncompressed/commands/research/report.md": {
505
+ "kind": "command",
506
+ "rule_type": null,
507
+ "load_context": [],
508
+ "load_context_eager": []
509
+ },
498
510
  ".agent-src.uncompressed/commands/review-changes.md": {
499
511
  "kind": "command",
500
512
  "rule_type": null,
@@ -2046,6 +2058,54 @@
2046
2058
  "load_context": [],
2047
2059
  "load_context_eager": []
2048
2060
  },
2061
+ ".agent-src.uncompressed/skills/subagent-orchestration/prompts/README.md": {
2062
+ "kind": "skill",
2063
+ "rule_type": null,
2064
+ "load_context": [],
2065
+ "load_context_eager": []
2066
+ },
2067
+ ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-and-judge-two-stage.md": {
2068
+ "kind": "skill",
2069
+ "rule_type": null,
2070
+ "load_context": [],
2071
+ "load_context_eager": []
2072
+ },
2073
+ ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-and-judge.md": {
2074
+ "kind": "skill",
2075
+ "rule_type": null,
2076
+ "load_context": [],
2077
+ "load_context_eager": []
2078
+ },
2079
+ ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-competitively.md": {
2080
+ "kind": "skill",
2081
+ "rule_type": null,
2082
+ "load_context": [],
2083
+ "load_context_eager": []
2084
+ },
2085
+ ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-in-parallel.md": {
2086
+ "kind": "skill",
2087
+ "rule_type": null,
2088
+ "load_context": [],
2089
+ "load_context_eager": []
2090
+ },
2091
+ ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-in-steps.md": {
2092
+ "kind": "skill",
2093
+ "rule_type": null,
2094
+ "load_context": [],
2095
+ "load_context_eager": []
2096
+ },
2097
+ ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-in-worktrees.md": {
2098
+ "kind": "skill",
2099
+ "rule_type": null,
2100
+ "load_context": [],
2101
+ "load_context_eager": []
2102
+ },
2103
+ ".agent-src.uncompressed/skills/subagent-orchestration/prompts/judge-with-debate.md": {
2104
+ "kind": "skill",
2105
+ "rule_type": null,
2106
+ "load_context": [],
2107
+ "load_context_eager": []
2108
+ },
2049
2109
  ".agent-src.uncompressed/skills/systematic-debugging/SKILL.md": {
2050
2110
  "kind": "skill",
2051
2111
  "rule_type": null,
@@ -2088,6 +2148,12 @@
2088
2148
  "load_context": [],
2089
2149
  "load_context_eager": []
2090
2150
  },
2151
+ ".agent-src.uncompressed/skills/testing-anti-patterns/process-anti-patterns.md": {
2152
+ "kind": "skill",
2153
+ "rule_type": null,
2154
+ "load_context": [],
2155
+ "load_context_eager": []
2156
+ },
2091
2157
  ".agent-src.uncompressed/skills/threat-modeling/SKILL.md": {
2092
2158
  "kind": "skill",
2093
2159
  "rule_type": null,
@@ -3326,6 +3392,48 @@
3326
3392
  "via": "body_link",
3327
3393
  "depth": 1
3328
3394
  },
3395
+ {
3396
+ "source": ".agent-src.uncompressed/commands/research/deep.md",
3397
+ "target": ".agent-src.uncompressed/commands/research.md",
3398
+ "type": "READ_ONLY",
3399
+ "via": "body_link",
3400
+ "depth": 1
3401
+ },
3402
+ {
3403
+ "source": ".agent-src.uncompressed/commands/research/deep.md",
3404
+ "target": ".agent-src.uncompressed/commands/research/deep.md",
3405
+ "type": "WRITE",
3406
+ "via": "self",
3407
+ "depth": 0
3408
+ },
3409
+ {
3410
+ "source": ".agent-src.uncompressed/commands/research/deep.md",
3411
+ "target": ".agent-src.uncompressed/contexts/contracts/research-schema.md",
3412
+ "type": "READ_ONLY",
3413
+ "via": "body_link",
3414
+ "depth": 1
3415
+ },
3416
+ {
3417
+ "source": ".agent-src.uncompressed/commands/research/report.md",
3418
+ "target": ".agent-src.uncompressed/commands/research/deep.md",
3419
+ "type": "READ_ONLY",
3420
+ "via": "body_link",
3421
+ "depth": 1
3422
+ },
3423
+ {
3424
+ "source": ".agent-src.uncompressed/commands/research/report.md",
3425
+ "target": ".agent-src.uncompressed/commands/research/report.md",
3426
+ "type": "WRITE",
3427
+ "via": "self",
3428
+ "depth": 0
3429
+ },
3430
+ {
3431
+ "source": ".agent-src.uncompressed/commands/research/report.md",
3432
+ "target": ".agent-src.uncompressed/rules/user-interaction.md",
3433
+ "type": "READ_ONLY",
3434
+ "via": "body_link",
3435
+ "depth": 1
3436
+ },
3329
3437
  {
3330
3438
  "source": ".agent-src.uncompressed/commands/review-changes.md",
3331
3439
  "target": ".agent-src.uncompressed/commands/judge.md",
@@ -6840,6 +6948,20 @@
6840
6948
  "via": "body_link",
6841
6949
  "depth": 1
6842
6950
  },
6951
+ {
6952
+ "source": ".agent-src.uncompressed/skills/judge-test-coverage/SKILL.md",
6953
+ "target": ".agent-src.uncompressed/skills/testing-anti-patterns/SKILL.md",
6954
+ "type": "READ_ONLY",
6955
+ "via": "body_link",
6956
+ "depth": 1
6957
+ },
6958
+ {
6959
+ "source": ".agent-src.uncompressed/skills/judge-test-coverage/SKILL.md",
6960
+ "target": ".agent-src.uncompressed/skills/testing-anti-patterns/process-anti-patterns.md",
6961
+ "type": "READ_ONLY",
6962
+ "via": "body_link",
6963
+ "depth": 1
6964
+ },
6843
6965
  {
6844
6966
  "source": ".agent-src.uncompressed/skills/laravel-horizon/SKILL.md",
6845
6967
  "target": ".agent-src.uncompressed/skills/jobs-events/SKILL.md",
@@ -7197,6 +7319,27 @@
7197
7319
  "via": "self",
7198
7320
  "depth": 0
7199
7321
  },
7322
+ {
7323
+ "source": ".agent-src.uncompressed/skills/pest-testing/SKILL.md",
7324
+ "target": ".agent-src.uncompressed/skills/test-driven-development/SKILL.md",
7325
+ "type": "READ_ONLY",
7326
+ "via": "body_link",
7327
+ "depth": 1
7328
+ },
7329
+ {
7330
+ "source": ".agent-src.uncompressed/skills/pest-testing/SKILL.md",
7331
+ "target": ".agent-src.uncompressed/skills/testing-anti-patterns/SKILL.md",
7332
+ "type": "READ_ONLY",
7333
+ "via": "body_link",
7334
+ "depth": 1
7335
+ },
7336
+ {
7337
+ "source": ".agent-src.uncompressed/skills/pest-testing/SKILL.md",
7338
+ "target": ".agent-src.uncompressed/skills/testing-anti-patterns/process-anti-patterns.md",
7339
+ "type": "READ_ONLY",
7340
+ "via": "body_link",
7341
+ "depth": 1
7342
+ },
7200
7343
  {
7201
7344
  "source": ".agent-src.uncompressed/skills/php-coder/SKILL.md",
7202
7345
  "target": ".agent-src.uncompressed/skills/php-coder/SKILL.md",
@@ -7372,6 +7515,20 @@
7372
7515
  "via": "self",
7373
7516
  "depth": 0
7374
7517
  },
7518
+ {
7519
+ "source": ".agent-src.uncompressed/skills/quality-tools/SKILL.md",
7520
+ "target": ".agent-src.uncompressed/skills/testing-anti-patterns/SKILL.md",
7521
+ "type": "READ_ONLY",
7522
+ "via": "body_link",
7523
+ "depth": 1
7524
+ },
7525
+ {
7526
+ "source": ".agent-src.uncompressed/skills/quality-tools/SKILL.md",
7527
+ "target": ".agent-src.uncompressed/skills/testing-anti-patterns/process-anti-patterns.md",
7528
+ "type": "READ_ONLY",
7529
+ "via": "body_link",
7530
+ "depth": 1
7531
+ },
7375
7532
  {
7376
7533
  "source": ".agent-src.uncompressed/skills/react-native-setup/SKILL.md",
7377
7534
  "target": ".agent-src.uncompressed/skills/react-native-setup/SKILL.md",
@@ -8058,6 +8215,13 @@
8058
8215
  "via": "self",
8059
8216
  "depth": 0
8060
8217
  },
8218
+ {
8219
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/SKILL.md",
8220
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/README.md",
8221
+ "type": "READ_ONLY",
8222
+ "via": "body_link",
8223
+ "depth": 1
8224
+ },
8061
8225
  {
8062
8226
  "source": ".agent-src.uncompressed/skills/subagent-orchestration/SKILL.md",
8063
8227
  "target": ".agent-src.uncompressed/skills/using-git-worktrees/SKILL.md",
@@ -8065,6 +8229,174 @@
8065
8229
  "via": "body_link",
8066
8230
  "depth": 1
8067
8231
  },
8232
+ {
8233
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/README.md",
8234
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/SKILL.md",
8235
+ "type": "READ_ONLY",
8236
+ "via": "body_link",
8237
+ "depth": 1
8238
+ },
8239
+ {
8240
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/README.md",
8241
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/README.md",
8242
+ "type": "WRITE",
8243
+ "via": "self",
8244
+ "depth": 0
8245
+ },
8246
+ {
8247
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/README.md",
8248
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-and-judge-two-stage.md",
8249
+ "type": "READ_ONLY",
8250
+ "via": "body_link",
8251
+ "depth": 1
8252
+ },
8253
+ {
8254
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/README.md",
8255
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-and-judge.md",
8256
+ "type": "READ_ONLY",
8257
+ "via": "body_link",
8258
+ "depth": 1
8259
+ },
8260
+ {
8261
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/README.md",
8262
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-competitively.md",
8263
+ "type": "READ_ONLY",
8264
+ "via": "body_link",
8265
+ "depth": 1
8266
+ },
8267
+ {
8268
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/README.md",
8269
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-in-parallel.md",
8270
+ "type": "READ_ONLY",
8271
+ "via": "body_link",
8272
+ "depth": 1
8273
+ },
8274
+ {
8275
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/README.md",
8276
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-in-steps.md",
8277
+ "type": "READ_ONLY",
8278
+ "via": "body_link",
8279
+ "depth": 1
8280
+ },
8281
+ {
8282
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/README.md",
8283
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-in-worktrees.md",
8284
+ "type": "READ_ONLY",
8285
+ "via": "body_link",
8286
+ "depth": 1
8287
+ },
8288
+ {
8289
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/README.md",
8290
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/judge-with-debate.md",
8291
+ "type": "READ_ONLY",
8292
+ "via": "body_link",
8293
+ "depth": 1
8294
+ },
8295
+ {
8296
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-and-judge-two-stage.md",
8297
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/SKILL.md",
8298
+ "type": "READ_ONLY",
8299
+ "via": "body_link",
8300
+ "depth": 1
8301
+ },
8302
+ {
8303
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-and-judge-two-stage.md",
8304
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-and-judge-two-stage.md",
8305
+ "type": "WRITE",
8306
+ "via": "self",
8307
+ "depth": 0
8308
+ },
8309
+ {
8310
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-and-judge.md",
8311
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/SKILL.md",
8312
+ "type": "READ_ONLY",
8313
+ "via": "body_link",
8314
+ "depth": 1
8315
+ },
8316
+ {
8317
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-and-judge.md",
8318
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-and-judge.md",
8319
+ "type": "WRITE",
8320
+ "via": "self",
8321
+ "depth": 0
8322
+ },
8323
+ {
8324
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-competitively.md",
8325
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/SKILL.md",
8326
+ "type": "READ_ONLY",
8327
+ "via": "body_link",
8328
+ "depth": 1
8329
+ },
8330
+ {
8331
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-competitively.md",
8332
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-competitively.md",
8333
+ "type": "WRITE",
8334
+ "via": "self",
8335
+ "depth": 0
8336
+ },
8337
+ {
8338
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-in-parallel.md",
8339
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/SKILL.md",
8340
+ "type": "READ_ONLY",
8341
+ "via": "body_link",
8342
+ "depth": 1
8343
+ },
8344
+ {
8345
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-in-parallel.md",
8346
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-in-parallel.md",
8347
+ "type": "WRITE",
8348
+ "via": "self",
8349
+ "depth": 0
8350
+ },
8351
+ {
8352
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-in-steps.md",
8353
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/SKILL.md",
8354
+ "type": "READ_ONLY",
8355
+ "via": "body_link",
8356
+ "depth": 1
8357
+ },
8358
+ {
8359
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-in-steps.md",
8360
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-in-steps.md",
8361
+ "type": "WRITE",
8362
+ "via": "self",
8363
+ "depth": 0
8364
+ },
8365
+ {
8366
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-in-worktrees.md",
8367
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/SKILL.md",
8368
+ "type": "READ_ONLY",
8369
+ "via": "body_link",
8370
+ "depth": 1
8371
+ },
8372
+ {
8373
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-in-worktrees.md",
8374
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-in-worktrees.md",
8375
+ "type": "WRITE",
8376
+ "via": "self",
8377
+ "depth": 0
8378
+ },
8379
+ {
8380
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-in-worktrees.md",
8381
+ "target": ".agent-src.uncompressed/skills/using-git-worktrees/SKILL.md",
8382
+ "type": "READ_ONLY",
8383
+ "via": "body_link",
8384
+ "depth": 1
8385
+ },
8386
+ {
8387
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/judge-with-debate.md",
8388
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/SKILL.md",
8389
+ "type": "READ_ONLY",
8390
+ "via": "body_link",
8391
+ "depth": 1
8392
+ },
8393
+ {
8394
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/judge-with-debate.md",
8395
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/judge-with-debate.md",
8396
+ "type": "WRITE",
8397
+ "via": "self",
8398
+ "depth": 0
8399
+ },
8068
8400
  {
8069
8401
  "source": ".agent-src.uncompressed/skills/systematic-debugging/SKILL.md",
8070
8402
  "target": ".agent-src.uncompressed/skills/blast-radius-analyzer/SKILL.md",
@@ -8177,6 +8509,20 @@
8177
8509
  "via": "self",
8178
8510
  "depth": 0
8179
8511
  },
8512
+ {
8513
+ "source": ".agent-src.uncompressed/skills/test-driven-development/SKILL.md",
8514
+ "target": ".agent-src.uncompressed/skills/testing-anti-patterns/SKILL.md",
8515
+ "type": "READ_ONLY",
8516
+ "via": "body_link",
8517
+ "depth": 1
8518
+ },
8519
+ {
8520
+ "source": ".agent-src.uncompressed/skills/test-driven-development/SKILL.md",
8521
+ "target": ".agent-src.uncompressed/skills/testing-anti-patterns/process-anti-patterns.md",
8522
+ "type": "READ_ONLY",
8523
+ "via": "body_link",
8524
+ "depth": 1
8525
+ },
8180
8526
  {
8181
8527
  "source": ".agent-src.uncompressed/skills/test-performance/SKILL.md",
8182
8528
  "target": ".agent-src.uncompressed/skills/test-performance/SKILL.md",
@@ -8226,6 +8572,55 @@
8226
8572
  "via": "self",
8227
8573
  "depth": 0
8228
8574
  },
8575
+ {
8576
+ "source": ".agent-src.uncompressed/skills/testing-anti-patterns/SKILL.md",
8577
+ "target": ".agent-src.uncompressed/skills/testing-anti-patterns/process-anti-patterns.md",
8578
+ "type": "READ_ONLY",
8579
+ "via": "body_link",
8580
+ "depth": 1
8581
+ },
8582
+ {
8583
+ "source": ".agent-src.uncompressed/skills/testing-anti-patterns/process-anti-patterns.md",
8584
+ "target": ".agent-src.uncompressed/skills/judge-test-coverage/SKILL.md",
8585
+ "type": "READ_ONLY",
8586
+ "via": "body_link",
8587
+ "depth": 1
8588
+ },
8589
+ {
8590
+ "source": ".agent-src.uncompressed/skills/testing-anti-patterns/process-anti-patterns.md",
8591
+ "target": ".agent-src.uncompressed/skills/pest-testing/SKILL.md",
8592
+ "type": "READ_ONLY",
8593
+ "via": "body_link",
8594
+ "depth": 1
8595
+ },
8596
+ {
8597
+ "source": ".agent-src.uncompressed/skills/testing-anti-patterns/process-anti-patterns.md",
8598
+ "target": ".agent-src.uncompressed/skills/quality-tools/SKILL.md",
8599
+ "type": "READ_ONLY",
8600
+ "via": "body_link",
8601
+ "depth": 1
8602
+ },
8603
+ {
8604
+ "source": ".agent-src.uncompressed/skills/testing-anti-patterns/process-anti-patterns.md",
8605
+ "target": ".agent-src.uncompressed/skills/test-driven-development/SKILL.md",
8606
+ "type": "READ_ONLY",
8607
+ "via": "body_link",
8608
+ "depth": 1
8609
+ },
8610
+ {
8611
+ "source": ".agent-src.uncompressed/skills/testing-anti-patterns/process-anti-patterns.md",
8612
+ "target": ".agent-src.uncompressed/skills/testing-anti-patterns/SKILL.md",
8613
+ "type": "READ_ONLY",
8614
+ "via": "body_link",
8615
+ "depth": 1
8616
+ },
8617
+ {
8618
+ "source": ".agent-src.uncompressed/skills/testing-anti-patterns/process-anti-patterns.md",
8619
+ "target": ".agent-src.uncompressed/skills/testing-anti-patterns/process-anti-patterns.md",
8620
+ "type": "WRITE",
8621
+ "via": "self",
8622
+ "depth": 0
8623
+ },
8229
8624
  {
8230
8625
  "source": ".agent-src.uncompressed/skills/threat-modeling/SKILL.md",
8231
8626
  "target": ".agent-src.uncompressed/skills/authz-review/SKILL.md",
@@ -153,7 +153,7 @@ Your agent now understands slash commands:
153
153
  | `/quality-fix` | Run and fix all quality checks |
154
154
  | `/chat-history` | Inspect the persistent chat-history log (read-only `show`) |
155
155
 
156
- → [Browse all 101 active commands](../.agent-src/commands/)
156
+ → [Browse all 103 active commands](../.agent-src/commands/)
157
157
 
158
158
  ---
159
159