@event4u/agent-config 1.29.0 → 1.32.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 (65) hide show
  1. package/.agent-src/commands/agents/audit.md +101 -197
  2. package/.agent-src/commands/{copilot-agents → agents}/init.md +18 -10
  3. package/.agent-src/commands/agents/optimize.md +181 -0
  4. package/.agent-src/commands/agents.md +19 -12
  5. package/.agent-src/commands/optimize/agents-dir.md +111 -0
  6. package/.agent-src/commands/optimize.md +10 -8
  7. package/.agent-src/contexts/communication/rules-auto/guidelines-mechanics.md +6 -0
  8. package/.agent-src/contexts/communication/rules-auto/slash-command-routing-policy-mechanics.md +2 -3
  9. package/.agent-src/contexts/contracts/agents-md-anatomy.md +132 -0
  10. package/.agent-src/skills/agents-md-thin-root/SKILL.md +8 -1
  11. package/.agent-src/skills/command-writing/SKILL.md +49 -0
  12. package/.agent-src/skills/copilot-agents-optimization/SKILL.md +3 -3
  13. package/.agent-src/skills/error-handling-patterns/SKILL.md +2 -2
  14. package/.agent-src/skills/feature-planning/SKILL.md +43 -7
  15. package/.agent-src/skills/judge-test-coverage/SKILL.md +4 -0
  16. package/.agent-src/skills/pest-testing/SKILL.md +13 -6
  17. package/.agent-src/skills/quality-tools/SKILL.md +4 -0
  18. package/.agent-src/skills/refine-prompt/SKILL.md +10 -0
  19. package/.agent-src/skills/refine-ticket/SKILL.md +12 -0
  20. package/.agent-src/skills/{repomix → repomix-packer}/SKILL.md +8 -8
  21. package/.agent-src/skills/roadmap-writing/SKILL.md +9 -0
  22. package/.agent-src/skills/rule-writing/SKILL.md +21 -0
  23. package/.agent-src/skills/skill-writing/SKILL.md +19 -0
  24. package/.agent-src/skills/subagent-orchestration/SKILL.md +77 -12
  25. package/.agent-src/skills/subagent-orchestration/prompts/README.md +29 -0
  26. package/.agent-src/skills/subagent-orchestration/prompts/do-and-judge-two-stage.md +121 -0
  27. package/.agent-src/skills/subagent-orchestration/prompts/do-and-judge.md +60 -0
  28. package/.agent-src/skills/subagent-orchestration/prompts/do-competitively.md +65 -0
  29. package/.agent-src/skills/subagent-orchestration/prompts/do-in-parallel.md +62 -0
  30. package/.agent-src/skills/subagent-orchestration/prompts/do-in-steps.md +62 -0
  31. package/.agent-src/skills/subagent-orchestration/prompts/do-in-worktrees.md +70 -0
  32. package/.agent-src/skills/subagent-orchestration/prompts/judge-with-debate.md +63 -0
  33. package/.agent-src/skills/subagent-orchestration/schemas/subagent-status.json +63 -0
  34. package/.agent-src/skills/test-driven-development/SKILL.md +25 -13
  35. package/.agent-src/skills/testing-anti-patterns/SKILL.md +14 -0
  36. package/.agent-src/skills/testing-anti-patterns/process-anti-patterns.md +67 -0
  37. package/.agent-src/templates/AGENTS.md +9 -10
  38. package/.claude-plugin/marketplace.json +5 -8
  39. package/AGENTS.md +1 -2
  40. package/CHANGELOG.md +110 -0
  41. package/CONTRIBUTING.md +90 -0
  42. package/README.md +3 -3
  43. package/docs/architecture.md +2 -2
  44. package/docs/catalog.md +12 -14
  45. package/docs/contracts/command-clusters.md +20 -3
  46. package/docs/contracts/file-ownership-matrix.json +546 -56
  47. package/docs/getting-started.md +1 -1
  48. package/docs/guidelines/code-clarity.md +95 -0
  49. package/docs/guidelines/php/general.md +8 -0
  50. package/docs/guidelines/php/php-coding-patterns.md +1 -0
  51. package/docs/skills-catalog.md +27 -3
  52. package/llms.txt +26 -2
  53. package/package.json +1 -1
  54. package/scripts/chat_history.py +166 -36
  55. package/scripts/check_bite_sized_granularity.py +99 -0
  56. package/scripts/check_command_count_messaging.py +12 -3
  57. package/scripts/check_portability.py +1 -0
  58. package/scripts/lint_agents_md.py +33 -0
  59. package/scripts/release.py +77 -2
  60. package/scripts/skill_linter.py +10 -3
  61. package/.agent-src/commands/agents/cleanup.md +0 -194
  62. package/.agent-src/commands/agents/prepare.md +0 -141
  63. package/.agent-src/commands/copilot-agents/optimize.md +0 -255
  64. package/.agent-src/commands/copilot-agents.md +0 -44
  65. package/.agent-src/commands/optimize/agents.md +0 -144
@@ -27,13 +27,13 @@
27
27
  "load_context": [],
28
28
  "load_context_eager": []
29
29
  },
30
- ".agent-src.uncompressed/commands/agents/cleanup.md": {
30
+ ".agent-src.uncompressed/commands/agents/init.md": {
31
31
  "kind": "command",
32
32
  "rule_type": null,
33
33
  "load_context": [],
34
34
  "load_context_eager": []
35
35
  },
36
- ".agent-src.uncompressed/commands/agents/prepare.md": {
36
+ ".agent-src.uncompressed/commands/agents/optimize.md": {
37
37
  "kind": "command",
38
38
  "rule_type": null,
39
39
  "load_context": [],
@@ -141,24 +141,6 @@
141
141
  "load_context": [],
142
142
  "load_context_eager": []
143
143
  },
144
- ".agent-src.uncompressed/commands/copilot-agents.md": {
145
- "kind": "command",
146
- "rule_type": null,
147
- "load_context": [],
148
- "load_context_eager": []
149
- },
150
- ".agent-src.uncompressed/commands/copilot-agents/init.md": {
151
- "kind": "command",
152
- "rule_type": null,
153
- "load_context": [],
154
- "load_context_eager": []
155
- },
156
- ".agent-src.uncompressed/commands/copilot-agents/optimize.md": {
157
- "kind": "command",
158
- "rule_type": null,
159
- "load_context": [],
160
- "load_context_eager": []
161
- },
162
144
  ".agent-src.uncompressed/commands/cost-report.md": {
163
145
  "kind": "command",
164
146
  "rule_type": null,
@@ -423,7 +405,7 @@
423
405
  "load_context": [],
424
406
  "load_context_eager": []
425
407
  },
426
- ".agent-src.uncompressed/commands/optimize/agents.md": {
408
+ ".agent-src.uncompressed/commands/optimize/agents-dir.md": {
427
409
  "kind": "command",
428
410
  "rule_type": null,
429
411
  "load_context": [],
@@ -699,6 +681,12 @@
699
681
  "load_context": [],
700
682
  "load_context_eager": []
701
683
  },
684
+ ".agent-src.uncompressed/contexts/contracts/agents-md-anatomy.md": {
685
+ "kind": "context",
686
+ "rule_type": null,
687
+ "load_context": [],
688
+ "load_context_eager": []
689
+ },
702
690
  ".agent-src.uncompressed/contexts/contracts/artifact-engagement-flow.md": {
703
691
  "kind": "context",
704
692
  "rule_type": null,
@@ -1938,7 +1926,7 @@
1938
1926
  "load_context": [],
1939
1927
  "load_context_eager": []
1940
1928
  },
1941
- ".agent-src.uncompressed/skills/repomix/SKILL.md": {
1929
+ ".agent-src.uncompressed/skills/repomix-packer/SKILL.md": {
1942
1930
  "kind": "skill",
1943
1931
  "rule_type": null,
1944
1932
  "load_context": [],
@@ -2058,6 +2046,54 @@
2058
2046
  "load_context": [],
2059
2047
  "load_context_eager": []
2060
2048
  },
2049
+ ".agent-src.uncompressed/skills/subagent-orchestration/prompts/README.md": {
2050
+ "kind": "skill",
2051
+ "rule_type": null,
2052
+ "load_context": [],
2053
+ "load_context_eager": []
2054
+ },
2055
+ ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-and-judge-two-stage.md": {
2056
+ "kind": "skill",
2057
+ "rule_type": null,
2058
+ "load_context": [],
2059
+ "load_context_eager": []
2060
+ },
2061
+ ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-and-judge.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-competitively.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-in-parallel.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-in-steps.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-worktrees.md": {
2086
+ "kind": "skill",
2087
+ "rule_type": null,
2088
+ "load_context": [],
2089
+ "load_context_eager": []
2090
+ },
2091
+ ".agent-src.uncompressed/skills/subagent-orchestration/prompts/judge-with-debate.md": {
2092
+ "kind": "skill",
2093
+ "rule_type": null,
2094
+ "load_context": [],
2095
+ "load_context_eager": []
2096
+ },
2061
2097
  ".agent-src.uncompressed/skills/systematic-debugging/SKILL.md": {
2062
2098
  "kind": "skill",
2063
2099
  "rule_type": null,
@@ -2100,6 +2136,12 @@
2100
2136
  "load_context": [],
2101
2137
  "load_context_eager": []
2102
2138
  },
2139
+ ".agent-src.uncompressed/skills/testing-anti-patterns/process-anti-patterns.md": {
2140
+ "kind": "skill",
2141
+ "rule_type": null,
2142
+ "load_context": [],
2143
+ "load_context_eager": []
2144
+ },
2103
2145
  ".agent-src.uncompressed/skills/threat-modeling/SKILL.md": {
2104
2146
  "kind": "skill",
2105
2147
  "rule_type": null,
@@ -2183,6 +2225,13 @@
2183
2225
  "via": "self",
2184
2226
  "depth": 0
2185
2227
  },
2228
+ {
2229
+ "source": ".agent-src.uncompressed/commands/agents.md",
2230
+ "target": ".agent-src.uncompressed/commands/optimize/agents-dir.md",
2231
+ "type": "READ_ONLY",
2232
+ "via": "body_link",
2233
+ "depth": 1
2234
+ },
2186
2235
  {
2187
2236
  "source": ".agent-src.uncompressed/commands/agents/audit.md",
2188
2237
  "target": ".agent-src.uncompressed/commands/agents/audit.md",
@@ -2191,19 +2240,110 @@
2191
2240
  "depth": 0
2192
2241
  },
2193
2242
  {
2194
- "source": ".agent-src.uncompressed/commands/agents/cleanup.md",
2195
- "target": ".agent-src.uncompressed/commands/agents/cleanup.md",
2243
+ "source": ".agent-src.uncompressed/commands/agents/audit.md",
2244
+ "target": ".agent-src.uncompressed/commands/agents/optimize.md",
2245
+ "type": "READ_ONLY",
2246
+ "via": "body_link",
2247
+ "depth": 1
2248
+ },
2249
+ {
2250
+ "source": ".agent-src.uncompressed/commands/agents/audit.md",
2251
+ "target": ".agent-src.uncompressed/commands/optimize/agents-dir.md",
2252
+ "type": "READ_ONLY",
2253
+ "via": "body_link",
2254
+ "depth": 1
2255
+ },
2256
+ {
2257
+ "source": ".agent-src.uncompressed/commands/agents/audit.md",
2258
+ "target": ".agent-src.uncompressed/contexts/contracts/agents-md-anatomy.md",
2259
+ "type": "READ_ONLY",
2260
+ "via": "body_link",
2261
+ "depth": 1
2262
+ },
2263
+ {
2264
+ "source": ".agent-src.uncompressed/commands/agents/audit.md",
2265
+ "target": ".agent-src.uncompressed/rules/commit-policy.md",
2266
+ "type": "READ_ONLY",
2267
+ "via": "body_link",
2268
+ "depth": 1
2269
+ },
2270
+ {
2271
+ "source": ".agent-src.uncompressed/commands/agents/audit.md",
2272
+ "target": ".agent-src.uncompressed/rules/rule-type-governance.md",
2273
+ "type": "READ_ONLY",
2274
+ "via": "body_link",
2275
+ "depth": 1
2276
+ },
2277
+ {
2278
+ "source": ".agent-src.uncompressed/commands/agents/audit.md",
2279
+ "target": ".agent-src.uncompressed/skills/agents-md-thin-root/SKILL.md",
2280
+ "type": "READ_ONLY",
2281
+ "via": "body_link",
2282
+ "depth": 1
2283
+ },
2284
+ {
2285
+ "source": ".agent-src.uncompressed/commands/agents/init.md",
2286
+ "target": ".agent-src.uncompressed/commands/agents/init.md",
2196
2287
  "type": "WRITE",
2197
2288
  "via": "self",
2198
2289
  "depth": 0
2199
2290
  },
2200
2291
  {
2201
- "source": ".agent-src.uncompressed/commands/agents/prepare.md",
2202
- "target": ".agent-src.uncompressed/commands/agents/prepare.md",
2292
+ "source": ".agent-src.uncompressed/commands/agents/init.md",
2293
+ "target": ".agent-src.uncompressed/contexts/contracts/agents-md-anatomy.md",
2294
+ "type": "READ_ONLY",
2295
+ "via": "body_link",
2296
+ "depth": 1
2297
+ },
2298
+ {
2299
+ "source": ".agent-src.uncompressed/commands/agents/optimize.md",
2300
+ "target": ".agent-src.uncompressed/commands/agents/optimize.md",
2203
2301
  "type": "WRITE",
2204
2302
  "via": "self",
2205
2303
  "depth": 0
2206
2304
  },
2305
+ {
2306
+ "source": ".agent-src.uncompressed/commands/agents/optimize.md",
2307
+ "target": ".agent-src.uncompressed/contexts/contracts/agents-md-anatomy.md",
2308
+ "type": "READ_ONLY",
2309
+ "via": "body_link",
2310
+ "depth": 1
2311
+ },
2312
+ {
2313
+ "source": ".agent-src.uncompressed/commands/agents/optimize.md",
2314
+ "target": ".agent-src.uncompressed/contexts/contracts/emergency-triage-block.md",
2315
+ "type": "READ_ONLY",
2316
+ "via": "body_link",
2317
+ "depth": 1
2318
+ },
2319
+ {
2320
+ "source": ".agent-src.uncompressed/commands/agents/optimize.md",
2321
+ "target": ".agent-src.uncompressed/rules/commit-policy.md",
2322
+ "type": "READ_ONLY",
2323
+ "via": "body_link",
2324
+ "depth": 1
2325
+ },
2326
+ {
2327
+ "source": ".agent-src.uncompressed/commands/agents/optimize.md",
2328
+ "target": ".agent-src.uncompressed/rules/scope-control.md",
2329
+ "type": "READ_ONLY",
2330
+ "via": "body_link",
2331
+ "depth": 1
2332
+ },
2333
+ {
2334
+ "source": ".agent-src.uncompressed/commands/agents/optimize.md",
2335
+ "target": ".agent-src.uncompressed/rules/verify-before-complete.md",
2336
+ "type": "READ_ONLY",
2337
+ "via": "body_link",
2338
+ "depth": 1
2339
+ },
2340
+ {
2341
+ "source": ".agent-src.uncompressed/commands/agents/optimize.md",
2342
+ "target": ".agent-src.uncompressed/skills/agents-md-thin-root/SKILL.md",
2343
+ "type": "READ_ONLY",
2344
+ "via": "body_link",
2345
+ "depth": 1
2346
+ },
2207
2347
  {
2208
2348
  "source": ".agent-src.uncompressed/commands/analyze-reference-repo.md",
2209
2349
  "target": ".agent-src.uncompressed/commands/analyze-reference-repo.md",
@@ -2533,27 +2673,6 @@
2533
2673
  "via": "self",
2534
2674
  "depth": 0
2535
2675
  },
2536
- {
2537
- "source": ".agent-src.uncompressed/commands/copilot-agents.md",
2538
- "target": ".agent-src.uncompressed/commands/copilot-agents.md",
2539
- "type": "WRITE",
2540
- "via": "self",
2541
- "depth": 0
2542
- },
2543
- {
2544
- "source": ".agent-src.uncompressed/commands/copilot-agents/init.md",
2545
- "target": ".agent-src.uncompressed/commands/copilot-agents/init.md",
2546
- "type": "WRITE",
2547
- "via": "self",
2548
- "depth": 0
2549
- },
2550
- {
2551
- "source": ".agent-src.uncompressed/commands/copilot-agents/optimize.md",
2552
- "target": ".agent-src.uncompressed/commands/copilot-agents/optimize.md",
2553
- "type": "WRITE",
2554
- "via": "self",
2555
- "depth": 0
2556
- },
2557
2676
  {
2558
2677
  "source": ".agent-src.uncompressed/commands/cost-report.md",
2559
2678
  "target": ".agent-src.uncompressed/commands/agent-status.md",
@@ -3058,6 +3177,13 @@
3058
3177
  "via": "body_link",
3059
3178
  "depth": 1
3060
3179
  },
3180
+ {
3181
+ "source": ".agent-src.uncompressed/commands/optimize.md",
3182
+ "target": ".agent-src.uncompressed/commands/agents.md",
3183
+ "type": "READ_ONLY",
3184
+ "via": "body_link",
3185
+ "depth": 1
3186
+ },
3061
3187
  {
3062
3188
  "source": ".agent-src.uncompressed/commands/optimize.md",
3063
3189
  "target": ".agent-src.uncompressed/commands/optimize.md",
@@ -3066,12 +3192,54 @@
3066
3192
  "depth": 0
3067
3193
  },
3068
3194
  {
3069
- "source": ".agent-src.uncompressed/commands/optimize/agents.md",
3070
- "target": ".agent-src.uncompressed/commands/optimize/agents.md",
3195
+ "source": ".agent-src.uncompressed/commands/optimize/agents-dir.md",
3196
+ "target": ".agent-src.uncompressed/commands/agents.md",
3197
+ "type": "READ_ONLY",
3198
+ "via": "body_link",
3199
+ "depth": 1
3200
+ },
3201
+ {
3202
+ "source": ".agent-src.uncompressed/commands/optimize/agents-dir.md",
3203
+ "target": ".agent-src.uncompressed/commands/agents/audit.md",
3204
+ "type": "READ_ONLY",
3205
+ "via": "body_link",
3206
+ "depth": 1
3207
+ },
3208
+ {
3209
+ "source": ".agent-src.uncompressed/commands/optimize/agents-dir.md",
3210
+ "target": ".agent-src.uncompressed/commands/agents/optimize.md",
3211
+ "type": "READ_ONLY",
3212
+ "via": "body_link",
3213
+ "depth": 1
3214
+ },
3215
+ {
3216
+ "source": ".agent-src.uncompressed/commands/optimize/agents-dir.md",
3217
+ "target": ".agent-src.uncompressed/commands/optimize/agents-dir.md",
3071
3218
  "type": "WRITE",
3072
3219
  "via": "self",
3073
3220
  "depth": 0
3074
3221
  },
3222
+ {
3223
+ "source": ".agent-src.uncompressed/commands/optimize/agents-dir.md",
3224
+ "target": ".agent-src.uncompressed/rules/commit-policy.md",
3225
+ "type": "READ_ONLY",
3226
+ "via": "body_link",
3227
+ "depth": 1
3228
+ },
3229
+ {
3230
+ "source": ".agent-src.uncompressed/commands/optimize/agents-dir.md",
3231
+ "target": ".agent-src.uncompressed/skills/agent-docs-writing/SKILL.md",
3232
+ "type": "READ_ONLY",
3233
+ "via": "body_link",
3234
+ "depth": 1
3235
+ },
3236
+ {
3237
+ "source": ".agent-src.uncompressed/commands/optimize/agents-dir.md",
3238
+ "target": ".agent-src.uncompressed/skills/override-management/SKILL.md",
3239
+ "type": "READ_ONLY",
3240
+ "via": "body_link",
3241
+ "depth": 1
3242
+ },
3075
3243
  {
3076
3244
  "source": ".agent-src.uncompressed/commands/optimize/augmentignore.md",
3077
3245
  "target": ".agent-src.uncompressed/commands/optimize/augmentignore.md",
@@ -3961,6 +4129,34 @@
3961
4129
  "via": "body_link",
3962
4130
  "depth": 1
3963
4131
  },
4132
+ {
4133
+ "source": ".agent-src.uncompressed/contexts/contracts/agents-md-anatomy.md",
4134
+ "target": ".agent-src.uncompressed/contexts/contracts/agents-md-anatomy.md",
4135
+ "type": "WRITE",
4136
+ "via": "self",
4137
+ "depth": 0
4138
+ },
4139
+ {
4140
+ "source": ".agent-src.uncompressed/contexts/contracts/agents-md-anatomy.md",
4141
+ "target": ".agent-src.uncompressed/contexts/contracts/consumer-agents-md-guide.md",
4142
+ "type": "READ_ONLY",
4143
+ "via": "body_link",
4144
+ "depth": 1
4145
+ },
4146
+ {
4147
+ "source": ".agent-src.uncompressed/contexts/contracts/agents-md-anatomy.md",
4148
+ "target": ".agent-src.uncompressed/contexts/contracts/emergency-triage-block.md",
4149
+ "type": "READ_ONLY",
4150
+ "via": "body_link",
4151
+ "depth": 1
4152
+ },
4153
+ {
4154
+ "source": ".agent-src.uncompressed/contexts/contracts/agents-md-anatomy.md",
4155
+ "target": ".agent-src.uncompressed/skills/agents-md-thin-root/SKILL.md",
4156
+ "type": "READ_ONLY",
4157
+ "via": "body_link",
4158
+ "depth": 1
4159
+ },
3964
4160
  {
3965
4161
  "source": ".agent-src.uncompressed/contexts/contracts/artifact-engagement-flow.md",
3966
4162
  "target": ".agent-src.uncompressed/contexts/contracts/artifact-engagement-flow.md",
@@ -5606,6 +5802,13 @@
5606
5802
  "via": "self",
5607
5803
  "depth": 0
5608
5804
  },
5805
+ {
5806
+ "source": ".agent-src.uncompressed/skills/agents-md-thin-root/SKILL.md",
5807
+ "target": ".agent-src.uncompressed/contexts/contracts/agents-md-anatomy.md",
5808
+ "type": "READ_ONLY",
5809
+ "via": "body_link",
5810
+ "depth": 1
5811
+ },
5609
5812
  {
5610
5813
  "source": ".agent-src.uncompressed/skills/agents-md-thin-root/SKILL.md",
5611
5814
  "target": ".agent-src.uncompressed/rules/size-enforcement.md",
@@ -6691,6 +6894,20 @@
6691
6894
  "via": "body_link",
6692
6895
  "depth": 1
6693
6896
  },
6897
+ {
6898
+ "source": ".agent-src.uncompressed/skills/judge-test-coverage/SKILL.md",
6899
+ "target": ".agent-src.uncompressed/skills/testing-anti-patterns/SKILL.md",
6900
+ "type": "READ_ONLY",
6901
+ "via": "body_link",
6902
+ "depth": 1
6903
+ },
6904
+ {
6905
+ "source": ".agent-src.uncompressed/skills/judge-test-coverage/SKILL.md",
6906
+ "target": ".agent-src.uncompressed/skills/testing-anti-patterns/process-anti-patterns.md",
6907
+ "type": "READ_ONLY",
6908
+ "via": "body_link",
6909
+ "depth": 1
6910
+ },
6694
6911
  {
6695
6912
  "source": ".agent-src.uncompressed/skills/laravel-horizon/SKILL.md",
6696
6913
  "target": ".agent-src.uncompressed/skills/jobs-events/SKILL.md",
@@ -7048,6 +7265,27 @@
7048
7265
  "via": "self",
7049
7266
  "depth": 0
7050
7267
  },
7268
+ {
7269
+ "source": ".agent-src.uncompressed/skills/pest-testing/SKILL.md",
7270
+ "target": ".agent-src.uncompressed/skills/test-driven-development/SKILL.md",
7271
+ "type": "READ_ONLY",
7272
+ "via": "body_link",
7273
+ "depth": 1
7274
+ },
7275
+ {
7276
+ "source": ".agent-src.uncompressed/skills/pest-testing/SKILL.md",
7277
+ "target": ".agent-src.uncompressed/skills/testing-anti-patterns/SKILL.md",
7278
+ "type": "READ_ONLY",
7279
+ "via": "body_link",
7280
+ "depth": 1
7281
+ },
7282
+ {
7283
+ "source": ".agent-src.uncompressed/skills/pest-testing/SKILL.md",
7284
+ "target": ".agent-src.uncompressed/skills/testing-anti-patterns/process-anti-patterns.md",
7285
+ "type": "READ_ONLY",
7286
+ "via": "body_link",
7287
+ "depth": 1
7288
+ },
7051
7289
  {
7052
7290
  "source": ".agent-src.uncompressed/skills/php-coder/SKILL.md",
7053
7291
  "target": ".agent-src.uncompressed/skills/php-coder/SKILL.md",
@@ -7223,6 +7461,20 @@
7223
7461
  "via": "self",
7224
7462
  "depth": 0
7225
7463
  },
7464
+ {
7465
+ "source": ".agent-src.uncompressed/skills/quality-tools/SKILL.md",
7466
+ "target": ".agent-src.uncompressed/skills/testing-anti-patterns/SKILL.md",
7467
+ "type": "READ_ONLY",
7468
+ "via": "body_link",
7469
+ "depth": 1
7470
+ },
7471
+ {
7472
+ "source": ".agent-src.uncompressed/skills/quality-tools/SKILL.md",
7473
+ "target": ".agent-src.uncompressed/skills/testing-anti-patterns/process-anti-patterns.md",
7474
+ "type": "READ_ONLY",
7475
+ "via": "body_link",
7476
+ "depth": 1
7477
+ },
7226
7478
  {
7227
7479
  "source": ".agent-src.uncompressed/skills/react-native-setup/SKILL.md",
7228
7480
  "target": ".agent-src.uncompressed/skills/react-native-setup/SKILL.md",
@@ -7364,43 +7616,43 @@
7364
7616
  "depth": 1
7365
7617
  },
7366
7618
  {
7367
- "source": ".agent-src.uncompressed/skills/repomix/SKILL.md",
7619
+ "source": ".agent-src.uncompressed/skills/repomix-packer/SKILL.md",
7368
7620
  "target": ".agent-src.uncompressed/commands/analyze-reference-repo.md",
7369
7621
  "type": "READ_ONLY",
7370
7622
  "via": "body_link",
7371
7623
  "depth": 1
7372
7624
  },
7373
7625
  {
7374
- "source": ".agent-src.uncompressed/skills/repomix/SKILL.md",
7626
+ "source": ".agent-src.uncompressed/skills/repomix-packer/SKILL.md",
7375
7627
  "target": ".agent-src.uncompressed/skills/blast-radius-analyzer/SKILL.md",
7376
7628
  "type": "READ_ONLY",
7377
7629
  "via": "body_link",
7378
7630
  "depth": 1
7379
7631
  },
7380
7632
  {
7381
- "source": ".agent-src.uncompressed/skills/repomix/SKILL.md",
7633
+ "source": ".agent-src.uncompressed/skills/repomix-packer/SKILL.md",
7382
7634
  "target": ".agent-src.uncompressed/skills/judge-bug-hunter/SKILL.md",
7383
7635
  "type": "READ_ONLY",
7384
7636
  "via": "body_link",
7385
7637
  "depth": 1
7386
7638
  },
7387
7639
  {
7388
- "source": ".agent-src.uncompressed/skills/repomix/SKILL.md",
7640
+ "source": ".agent-src.uncompressed/skills/repomix-packer/SKILL.md",
7389
7641
  "target": ".agent-src.uncompressed/skills/judge-security-auditor/SKILL.md",
7390
7642
  "type": "READ_ONLY",
7391
7643
  "via": "body_link",
7392
7644
  "depth": 1
7393
7645
  },
7394
7646
  {
7395
- "source": ".agent-src.uncompressed/skills/repomix/SKILL.md",
7647
+ "source": ".agent-src.uncompressed/skills/repomix-packer/SKILL.md",
7396
7648
  "target": ".agent-src.uncompressed/skills/markitdown/SKILL.md",
7397
7649
  "type": "READ_ONLY",
7398
7650
  "via": "body_link",
7399
7651
  "depth": 1
7400
7652
  },
7401
7653
  {
7402
- "source": ".agent-src.uncompressed/skills/repomix/SKILL.md",
7403
- "target": ".agent-src.uncompressed/skills/repomix/SKILL.md",
7654
+ "source": ".agent-src.uncompressed/skills/repomix-packer/SKILL.md",
7655
+ "target": ".agent-src.uncompressed/skills/repomix-packer/SKILL.md",
7404
7656
  "type": "WRITE",
7405
7657
  "via": "self",
7406
7658
  "depth": 0
@@ -7909,6 +8161,13 @@
7909
8161
  "via": "self",
7910
8162
  "depth": 0
7911
8163
  },
8164
+ {
8165
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/SKILL.md",
8166
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/README.md",
8167
+ "type": "READ_ONLY",
8168
+ "via": "body_link",
8169
+ "depth": 1
8170
+ },
7912
8171
  {
7913
8172
  "source": ".agent-src.uncompressed/skills/subagent-orchestration/SKILL.md",
7914
8173
  "target": ".agent-src.uncompressed/skills/using-git-worktrees/SKILL.md",
@@ -7916,6 +8175,174 @@
7916
8175
  "via": "body_link",
7917
8176
  "depth": 1
7918
8177
  },
8178
+ {
8179
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/README.md",
8180
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/SKILL.md",
8181
+ "type": "READ_ONLY",
8182
+ "via": "body_link",
8183
+ "depth": 1
8184
+ },
8185
+ {
8186
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/README.md",
8187
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/README.md",
8188
+ "type": "WRITE",
8189
+ "via": "self",
8190
+ "depth": 0
8191
+ },
8192
+ {
8193
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/README.md",
8194
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-and-judge-two-stage.md",
8195
+ "type": "READ_ONLY",
8196
+ "via": "body_link",
8197
+ "depth": 1
8198
+ },
8199
+ {
8200
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/README.md",
8201
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-and-judge.md",
8202
+ "type": "READ_ONLY",
8203
+ "via": "body_link",
8204
+ "depth": 1
8205
+ },
8206
+ {
8207
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/README.md",
8208
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-competitively.md",
8209
+ "type": "READ_ONLY",
8210
+ "via": "body_link",
8211
+ "depth": 1
8212
+ },
8213
+ {
8214
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/README.md",
8215
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-in-parallel.md",
8216
+ "type": "READ_ONLY",
8217
+ "via": "body_link",
8218
+ "depth": 1
8219
+ },
8220
+ {
8221
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/README.md",
8222
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-in-steps.md",
8223
+ "type": "READ_ONLY",
8224
+ "via": "body_link",
8225
+ "depth": 1
8226
+ },
8227
+ {
8228
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/README.md",
8229
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-in-worktrees.md",
8230
+ "type": "READ_ONLY",
8231
+ "via": "body_link",
8232
+ "depth": 1
8233
+ },
8234
+ {
8235
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/README.md",
8236
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/judge-with-debate.md",
8237
+ "type": "READ_ONLY",
8238
+ "via": "body_link",
8239
+ "depth": 1
8240
+ },
8241
+ {
8242
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-and-judge-two-stage.md",
8243
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/SKILL.md",
8244
+ "type": "READ_ONLY",
8245
+ "via": "body_link",
8246
+ "depth": 1
8247
+ },
8248
+ {
8249
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-and-judge-two-stage.md",
8250
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-and-judge-two-stage.md",
8251
+ "type": "WRITE",
8252
+ "via": "self",
8253
+ "depth": 0
8254
+ },
8255
+ {
8256
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-and-judge.md",
8257
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/SKILL.md",
8258
+ "type": "READ_ONLY",
8259
+ "via": "body_link",
8260
+ "depth": 1
8261
+ },
8262
+ {
8263
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-and-judge.md",
8264
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-and-judge.md",
8265
+ "type": "WRITE",
8266
+ "via": "self",
8267
+ "depth": 0
8268
+ },
8269
+ {
8270
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-competitively.md",
8271
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/SKILL.md",
8272
+ "type": "READ_ONLY",
8273
+ "via": "body_link",
8274
+ "depth": 1
8275
+ },
8276
+ {
8277
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-competitively.md",
8278
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-competitively.md",
8279
+ "type": "WRITE",
8280
+ "via": "self",
8281
+ "depth": 0
8282
+ },
8283
+ {
8284
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-in-parallel.md",
8285
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/SKILL.md",
8286
+ "type": "READ_ONLY",
8287
+ "via": "body_link",
8288
+ "depth": 1
8289
+ },
8290
+ {
8291
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-in-parallel.md",
8292
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-in-parallel.md",
8293
+ "type": "WRITE",
8294
+ "via": "self",
8295
+ "depth": 0
8296
+ },
8297
+ {
8298
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-in-steps.md",
8299
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/SKILL.md",
8300
+ "type": "READ_ONLY",
8301
+ "via": "body_link",
8302
+ "depth": 1
8303
+ },
8304
+ {
8305
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-in-steps.md",
8306
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-in-steps.md",
8307
+ "type": "WRITE",
8308
+ "via": "self",
8309
+ "depth": 0
8310
+ },
8311
+ {
8312
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-in-worktrees.md",
8313
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/SKILL.md",
8314
+ "type": "READ_ONLY",
8315
+ "via": "body_link",
8316
+ "depth": 1
8317
+ },
8318
+ {
8319
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-in-worktrees.md",
8320
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-in-worktrees.md",
8321
+ "type": "WRITE",
8322
+ "via": "self",
8323
+ "depth": 0
8324
+ },
8325
+ {
8326
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/do-in-worktrees.md",
8327
+ "target": ".agent-src.uncompressed/skills/using-git-worktrees/SKILL.md",
8328
+ "type": "READ_ONLY",
8329
+ "via": "body_link",
8330
+ "depth": 1
8331
+ },
8332
+ {
8333
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/judge-with-debate.md",
8334
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/SKILL.md",
8335
+ "type": "READ_ONLY",
8336
+ "via": "body_link",
8337
+ "depth": 1
8338
+ },
8339
+ {
8340
+ "source": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/judge-with-debate.md",
8341
+ "target": ".agent-src.uncompressed/skills/subagent-orchestration/prompts/judge-with-debate.md",
8342
+ "type": "WRITE",
8343
+ "via": "self",
8344
+ "depth": 0
8345
+ },
7919
8346
  {
7920
8347
  "source": ".agent-src.uncompressed/skills/systematic-debugging/SKILL.md",
7921
8348
  "target": ".agent-src.uncompressed/skills/blast-radius-analyzer/SKILL.md",
@@ -8028,6 +8455,20 @@
8028
8455
  "via": "self",
8029
8456
  "depth": 0
8030
8457
  },
8458
+ {
8459
+ "source": ".agent-src.uncompressed/skills/test-driven-development/SKILL.md",
8460
+ "target": ".agent-src.uncompressed/skills/testing-anti-patterns/SKILL.md",
8461
+ "type": "READ_ONLY",
8462
+ "via": "body_link",
8463
+ "depth": 1
8464
+ },
8465
+ {
8466
+ "source": ".agent-src.uncompressed/skills/test-driven-development/SKILL.md",
8467
+ "target": ".agent-src.uncompressed/skills/testing-anti-patterns/process-anti-patterns.md",
8468
+ "type": "READ_ONLY",
8469
+ "via": "body_link",
8470
+ "depth": 1
8471
+ },
8031
8472
  {
8032
8473
  "source": ".agent-src.uncompressed/skills/test-performance/SKILL.md",
8033
8474
  "target": ".agent-src.uncompressed/skills/test-performance/SKILL.md",
@@ -8077,6 +8518,55 @@
8077
8518
  "via": "self",
8078
8519
  "depth": 0
8079
8520
  },
8521
+ {
8522
+ "source": ".agent-src.uncompressed/skills/testing-anti-patterns/SKILL.md",
8523
+ "target": ".agent-src.uncompressed/skills/testing-anti-patterns/process-anti-patterns.md",
8524
+ "type": "READ_ONLY",
8525
+ "via": "body_link",
8526
+ "depth": 1
8527
+ },
8528
+ {
8529
+ "source": ".agent-src.uncompressed/skills/testing-anti-patterns/process-anti-patterns.md",
8530
+ "target": ".agent-src.uncompressed/skills/judge-test-coverage/SKILL.md",
8531
+ "type": "READ_ONLY",
8532
+ "via": "body_link",
8533
+ "depth": 1
8534
+ },
8535
+ {
8536
+ "source": ".agent-src.uncompressed/skills/testing-anti-patterns/process-anti-patterns.md",
8537
+ "target": ".agent-src.uncompressed/skills/pest-testing/SKILL.md",
8538
+ "type": "READ_ONLY",
8539
+ "via": "body_link",
8540
+ "depth": 1
8541
+ },
8542
+ {
8543
+ "source": ".agent-src.uncompressed/skills/testing-anti-patterns/process-anti-patterns.md",
8544
+ "target": ".agent-src.uncompressed/skills/quality-tools/SKILL.md",
8545
+ "type": "READ_ONLY",
8546
+ "via": "body_link",
8547
+ "depth": 1
8548
+ },
8549
+ {
8550
+ "source": ".agent-src.uncompressed/skills/testing-anti-patterns/process-anti-patterns.md",
8551
+ "target": ".agent-src.uncompressed/skills/test-driven-development/SKILL.md",
8552
+ "type": "READ_ONLY",
8553
+ "via": "body_link",
8554
+ "depth": 1
8555
+ },
8556
+ {
8557
+ "source": ".agent-src.uncompressed/skills/testing-anti-patterns/process-anti-patterns.md",
8558
+ "target": ".agent-src.uncompressed/skills/testing-anti-patterns/SKILL.md",
8559
+ "type": "READ_ONLY",
8560
+ "via": "body_link",
8561
+ "depth": 1
8562
+ },
8563
+ {
8564
+ "source": ".agent-src.uncompressed/skills/testing-anti-patterns/process-anti-patterns.md",
8565
+ "target": ".agent-src.uncompressed/skills/testing-anti-patterns/process-anti-patterns.md",
8566
+ "type": "WRITE",
8567
+ "via": "self",
8568
+ "depth": 0
8569
+ },
8080
8570
  {
8081
8571
  "source": ".agent-src.uncompressed/skills/threat-modeling/SKILL.md",
8082
8572
  "target": ".agent-src.uncompressed/skills/authz-review/SKILL.md",