@event4u/agent-config 1.28.0 → 1.31.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 (52) 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/async-python-patterns/SKILL.md +147 -0
  12. package/.agent-src/skills/command-writing/SKILL.md +49 -0
  13. package/.agent-src/skills/copilot-agents-optimization/SKILL.md +3 -3
  14. package/.agent-src/skills/defense-in-depth/SKILL.md +152 -0
  15. package/.agent-src/skills/error-handling-patterns/SKILL.md +134 -0
  16. package/.agent-src/skills/mcp-builder/SKILL.md +108 -0
  17. package/.agent-src/skills/prompt-engineering-patterns/SKILL.md +145 -0
  18. package/.agent-src/skills/repomix-packer/SKILL.md +135 -0
  19. package/.agent-src/skills/roadmap-writing/SKILL.md +9 -0
  20. package/.agent-src/skills/rule-writing/SKILL.md +21 -0
  21. package/.agent-src/skills/secrets-management/SKILL.md +142 -0
  22. package/.agent-src/skills/skill-writing/SKILL.md +19 -0
  23. package/.agent-src/skills/testing-anti-patterns/SKILL.md +152 -0
  24. package/.agent-src/templates/AGENTS.md +9 -10
  25. package/.claude-plugin/marketplace.json +12 -7
  26. package/AGENTS.md +1 -2
  27. package/CHANGELOG.md +113 -0
  28. package/CONTRIBUTING.md +90 -0
  29. package/README.md +3 -3
  30. package/docs/architecture.md +3 -3
  31. package/docs/catalog.md +19 -13
  32. package/docs/contracts/command-clusters.md +20 -3
  33. package/docs/contracts/file-ownership-matrix.json +511 -48
  34. package/docs/contracts/package-self-orientation.md +1 -1
  35. package/docs/getting-started.md +1 -1
  36. package/docs/guidelines/code-clarity.md +95 -0
  37. package/docs/guidelines/php/general.md +8 -0
  38. package/docs/guidelines/php/php-coding-patterns.md +1 -0
  39. package/docs/skills-catalog.md +27 -3
  40. package/llms.txt +26 -2
  41. package/package.json +1 -1
  42. package/scripts/chat_history.py +166 -36
  43. package/scripts/check_command_count_messaging.py +12 -3
  44. package/scripts/check_portability.py +1 -0
  45. package/scripts/lint_agents_md.py +33 -0
  46. package/scripts/release.py +77 -2
  47. package/scripts/skill_linter.py +10 -3
  48. package/.agent-src/commands/agents/cleanup.md +0 -194
  49. package/.agent-src/commands/agents/prepare.md +0 -141
  50. package/.agent-src/commands/copilot-agents/optimize.md +0 -255
  51. package/.agent-src/commands/copilot-agents.md +0 -44
  52. 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,
@@ -1308,6 +1296,12 @@
1308
1296
  "load_context": [],
1309
1297
  "load_context_eager": []
1310
1298
  },
1299
+ ".agent-src.uncompressed/skills/async-python-patterns/SKILL.md": {
1300
+ "kind": "skill",
1301
+ "rule_type": null,
1302
+ "load_context": [],
1303
+ "load_context_eager": []
1304
+ },
1311
1305
  ".agent-src.uncompressed/skills/authz-review/SKILL.md": {
1312
1306
  "kind": "skill",
1313
1307
  "rule_type": null,
@@ -1434,6 +1428,12 @@
1434
1428
  "load_context": [],
1435
1429
  "load_context_eager": []
1436
1430
  },
1431
+ ".agent-src.uncompressed/skills/defense-in-depth/SKILL.md": {
1432
+ "kind": "skill",
1433
+ "rule_type": null,
1434
+ "load_context": [],
1435
+ "load_context_eager": []
1436
+ },
1437
1437
  ".agent-src.uncompressed/skills/dependency-upgrade/SKILL.md": {
1438
1438
  "kind": "skill",
1439
1439
  "rule_type": null,
@@ -1482,6 +1482,12 @@
1482
1482
  "load_context": [],
1483
1483
  "load_context_eager": []
1484
1484
  },
1485
+ ".agent-src.uncompressed/skills/error-handling-patterns/SKILL.md": {
1486
+ "kind": "skill",
1487
+ "rule_type": null,
1488
+ "load_context": [],
1489
+ "load_context_eager": []
1490
+ },
1485
1491
  ".agent-src.uncompressed/skills/estimate-ticket/SKILL.md": {
1486
1492
  "kind": "skill",
1487
1493
  "rule_type": null,
@@ -1680,6 +1686,12 @@
1680
1686
  "load_context": [],
1681
1687
  "load_context_eager": []
1682
1688
  },
1689
+ ".agent-src.uncompressed/skills/mcp-builder/SKILL.md": {
1690
+ "kind": "skill",
1691
+ "rule_type": null,
1692
+ "load_context": [],
1693
+ "load_context_eager": []
1694
+ },
1683
1695
  ".agent-src.uncompressed/skills/mcp/SKILL.md": {
1684
1696
  "kind": "skill",
1685
1697
  "rule_type": null,
@@ -1848,6 +1860,12 @@
1848
1860
  "load_context": [],
1849
1861
  "load_context_eager": []
1850
1862
  },
1863
+ ".agent-src.uncompressed/skills/prompt-engineering-patterns/SKILL.md": {
1864
+ "kind": "skill",
1865
+ "rule_type": null,
1866
+ "load_context": [],
1867
+ "load_context_eager": []
1868
+ },
1851
1869
  ".agent-src.uncompressed/skills/prompt-optimizer/SKILL.md": {
1852
1870
  "kind": "skill",
1853
1871
  "rule_type": null,
@@ -1908,6 +1926,12 @@
1908
1926
  "load_context": [],
1909
1927
  "load_context_eager": []
1910
1928
  },
1929
+ ".agent-src.uncompressed/skills/repomix-packer/SKILL.md": {
1930
+ "kind": "skill",
1931
+ "rule_type": null,
1932
+ "load_context": [],
1933
+ "load_context_eager": []
1934
+ },
1911
1935
  ".agent-src.uncompressed/skills/requesting-code-review/SKILL.md": {
1912
1936
  "kind": "skill",
1913
1937
  "rule_type": null,
@@ -1956,6 +1980,12 @@
1956
1980
  "load_context": [],
1957
1981
  "load_context_eager": []
1958
1982
  },
1983
+ ".agent-src.uncompressed/skills/secrets-management/SKILL.md": {
1984
+ "kind": "skill",
1985
+ "rule_type": null,
1986
+ "load_context": [],
1987
+ "load_context_eager": []
1988
+ },
1959
1989
  ".agent-src.uncompressed/skills/security-audit/SKILL.md": {
1960
1990
  "kind": "skill",
1961
1991
  "rule_type": null,
@@ -2052,6 +2082,12 @@
2052
2082
  "load_context": [],
2053
2083
  "load_context_eager": []
2054
2084
  },
2085
+ ".agent-src.uncompressed/skills/testing-anti-patterns/SKILL.md": {
2086
+ "kind": "skill",
2087
+ "rule_type": null,
2088
+ "load_context": [],
2089
+ "load_context_eager": []
2090
+ },
2055
2091
  ".agent-src.uncompressed/skills/threat-modeling/SKILL.md": {
2056
2092
  "kind": "skill",
2057
2093
  "rule_type": null,
@@ -2135,6 +2171,13 @@
2135
2171
  "via": "self",
2136
2172
  "depth": 0
2137
2173
  },
2174
+ {
2175
+ "source": ".agent-src.uncompressed/commands/agents.md",
2176
+ "target": ".agent-src.uncompressed/commands/optimize/agents-dir.md",
2177
+ "type": "READ_ONLY",
2178
+ "via": "body_link",
2179
+ "depth": 1
2180
+ },
2138
2181
  {
2139
2182
  "source": ".agent-src.uncompressed/commands/agents/audit.md",
2140
2183
  "target": ".agent-src.uncompressed/commands/agents/audit.md",
@@ -2143,19 +2186,110 @@
2143
2186
  "depth": 0
2144
2187
  },
2145
2188
  {
2146
- "source": ".agent-src.uncompressed/commands/agents/cleanup.md",
2147
- "target": ".agent-src.uncompressed/commands/agents/cleanup.md",
2189
+ "source": ".agent-src.uncompressed/commands/agents/audit.md",
2190
+ "target": ".agent-src.uncompressed/commands/agents/optimize.md",
2191
+ "type": "READ_ONLY",
2192
+ "via": "body_link",
2193
+ "depth": 1
2194
+ },
2195
+ {
2196
+ "source": ".agent-src.uncompressed/commands/agents/audit.md",
2197
+ "target": ".agent-src.uncompressed/commands/optimize/agents-dir.md",
2198
+ "type": "READ_ONLY",
2199
+ "via": "body_link",
2200
+ "depth": 1
2201
+ },
2202
+ {
2203
+ "source": ".agent-src.uncompressed/commands/agents/audit.md",
2204
+ "target": ".agent-src.uncompressed/contexts/contracts/agents-md-anatomy.md",
2205
+ "type": "READ_ONLY",
2206
+ "via": "body_link",
2207
+ "depth": 1
2208
+ },
2209
+ {
2210
+ "source": ".agent-src.uncompressed/commands/agents/audit.md",
2211
+ "target": ".agent-src.uncompressed/rules/commit-policy.md",
2212
+ "type": "READ_ONLY",
2213
+ "via": "body_link",
2214
+ "depth": 1
2215
+ },
2216
+ {
2217
+ "source": ".agent-src.uncompressed/commands/agents/audit.md",
2218
+ "target": ".agent-src.uncompressed/rules/rule-type-governance.md",
2219
+ "type": "READ_ONLY",
2220
+ "via": "body_link",
2221
+ "depth": 1
2222
+ },
2223
+ {
2224
+ "source": ".agent-src.uncompressed/commands/agents/audit.md",
2225
+ "target": ".agent-src.uncompressed/skills/agents-md-thin-root/SKILL.md",
2226
+ "type": "READ_ONLY",
2227
+ "via": "body_link",
2228
+ "depth": 1
2229
+ },
2230
+ {
2231
+ "source": ".agent-src.uncompressed/commands/agents/init.md",
2232
+ "target": ".agent-src.uncompressed/commands/agents/init.md",
2148
2233
  "type": "WRITE",
2149
2234
  "via": "self",
2150
2235
  "depth": 0
2151
2236
  },
2152
2237
  {
2153
- "source": ".agent-src.uncompressed/commands/agents/prepare.md",
2154
- "target": ".agent-src.uncompressed/commands/agents/prepare.md",
2238
+ "source": ".agent-src.uncompressed/commands/agents/init.md",
2239
+ "target": ".agent-src.uncompressed/contexts/contracts/agents-md-anatomy.md",
2240
+ "type": "READ_ONLY",
2241
+ "via": "body_link",
2242
+ "depth": 1
2243
+ },
2244
+ {
2245
+ "source": ".agent-src.uncompressed/commands/agents/optimize.md",
2246
+ "target": ".agent-src.uncompressed/commands/agents/optimize.md",
2155
2247
  "type": "WRITE",
2156
2248
  "via": "self",
2157
2249
  "depth": 0
2158
2250
  },
2251
+ {
2252
+ "source": ".agent-src.uncompressed/commands/agents/optimize.md",
2253
+ "target": ".agent-src.uncompressed/contexts/contracts/agents-md-anatomy.md",
2254
+ "type": "READ_ONLY",
2255
+ "via": "body_link",
2256
+ "depth": 1
2257
+ },
2258
+ {
2259
+ "source": ".agent-src.uncompressed/commands/agents/optimize.md",
2260
+ "target": ".agent-src.uncompressed/contexts/contracts/emergency-triage-block.md",
2261
+ "type": "READ_ONLY",
2262
+ "via": "body_link",
2263
+ "depth": 1
2264
+ },
2265
+ {
2266
+ "source": ".agent-src.uncompressed/commands/agents/optimize.md",
2267
+ "target": ".agent-src.uncompressed/rules/commit-policy.md",
2268
+ "type": "READ_ONLY",
2269
+ "via": "body_link",
2270
+ "depth": 1
2271
+ },
2272
+ {
2273
+ "source": ".agent-src.uncompressed/commands/agents/optimize.md",
2274
+ "target": ".agent-src.uncompressed/rules/scope-control.md",
2275
+ "type": "READ_ONLY",
2276
+ "via": "body_link",
2277
+ "depth": 1
2278
+ },
2279
+ {
2280
+ "source": ".agent-src.uncompressed/commands/agents/optimize.md",
2281
+ "target": ".agent-src.uncompressed/rules/verify-before-complete.md",
2282
+ "type": "READ_ONLY",
2283
+ "via": "body_link",
2284
+ "depth": 1
2285
+ },
2286
+ {
2287
+ "source": ".agent-src.uncompressed/commands/agents/optimize.md",
2288
+ "target": ".agent-src.uncompressed/skills/agents-md-thin-root/SKILL.md",
2289
+ "type": "READ_ONLY",
2290
+ "via": "body_link",
2291
+ "depth": 1
2292
+ },
2159
2293
  {
2160
2294
  "source": ".agent-src.uncompressed/commands/analyze-reference-repo.md",
2161
2295
  "target": ".agent-src.uncompressed/commands/analyze-reference-repo.md",
@@ -2485,27 +2619,6 @@
2485
2619
  "via": "self",
2486
2620
  "depth": 0
2487
2621
  },
2488
- {
2489
- "source": ".agent-src.uncompressed/commands/copilot-agents.md",
2490
- "target": ".agent-src.uncompressed/commands/copilot-agents.md",
2491
- "type": "WRITE",
2492
- "via": "self",
2493
- "depth": 0
2494
- },
2495
- {
2496
- "source": ".agent-src.uncompressed/commands/copilot-agents/init.md",
2497
- "target": ".agent-src.uncompressed/commands/copilot-agents/init.md",
2498
- "type": "WRITE",
2499
- "via": "self",
2500
- "depth": 0
2501
- },
2502
- {
2503
- "source": ".agent-src.uncompressed/commands/copilot-agents/optimize.md",
2504
- "target": ".agent-src.uncompressed/commands/copilot-agents/optimize.md",
2505
- "type": "WRITE",
2506
- "via": "self",
2507
- "depth": 0
2508
- },
2509
2622
  {
2510
2623
  "source": ".agent-src.uncompressed/commands/cost-report.md",
2511
2624
  "target": ".agent-src.uncompressed/commands/agent-status.md",
@@ -3010,6 +3123,13 @@
3010
3123
  "via": "body_link",
3011
3124
  "depth": 1
3012
3125
  },
3126
+ {
3127
+ "source": ".agent-src.uncompressed/commands/optimize.md",
3128
+ "target": ".agent-src.uncompressed/commands/agents.md",
3129
+ "type": "READ_ONLY",
3130
+ "via": "body_link",
3131
+ "depth": 1
3132
+ },
3013
3133
  {
3014
3134
  "source": ".agent-src.uncompressed/commands/optimize.md",
3015
3135
  "target": ".agent-src.uncompressed/commands/optimize.md",
@@ -3018,12 +3138,54 @@
3018
3138
  "depth": 0
3019
3139
  },
3020
3140
  {
3021
- "source": ".agent-src.uncompressed/commands/optimize/agents.md",
3022
- "target": ".agent-src.uncompressed/commands/optimize/agents.md",
3141
+ "source": ".agent-src.uncompressed/commands/optimize/agents-dir.md",
3142
+ "target": ".agent-src.uncompressed/commands/agents.md",
3143
+ "type": "READ_ONLY",
3144
+ "via": "body_link",
3145
+ "depth": 1
3146
+ },
3147
+ {
3148
+ "source": ".agent-src.uncompressed/commands/optimize/agents-dir.md",
3149
+ "target": ".agent-src.uncompressed/commands/agents/audit.md",
3150
+ "type": "READ_ONLY",
3151
+ "via": "body_link",
3152
+ "depth": 1
3153
+ },
3154
+ {
3155
+ "source": ".agent-src.uncompressed/commands/optimize/agents-dir.md",
3156
+ "target": ".agent-src.uncompressed/commands/agents/optimize.md",
3157
+ "type": "READ_ONLY",
3158
+ "via": "body_link",
3159
+ "depth": 1
3160
+ },
3161
+ {
3162
+ "source": ".agent-src.uncompressed/commands/optimize/agents-dir.md",
3163
+ "target": ".agent-src.uncompressed/commands/optimize/agents-dir.md",
3023
3164
  "type": "WRITE",
3024
3165
  "via": "self",
3025
3166
  "depth": 0
3026
3167
  },
3168
+ {
3169
+ "source": ".agent-src.uncompressed/commands/optimize/agents-dir.md",
3170
+ "target": ".agent-src.uncompressed/rules/commit-policy.md",
3171
+ "type": "READ_ONLY",
3172
+ "via": "body_link",
3173
+ "depth": 1
3174
+ },
3175
+ {
3176
+ "source": ".agent-src.uncompressed/commands/optimize/agents-dir.md",
3177
+ "target": ".agent-src.uncompressed/skills/agent-docs-writing/SKILL.md",
3178
+ "type": "READ_ONLY",
3179
+ "via": "body_link",
3180
+ "depth": 1
3181
+ },
3182
+ {
3183
+ "source": ".agent-src.uncompressed/commands/optimize/agents-dir.md",
3184
+ "target": ".agent-src.uncompressed/skills/override-management/SKILL.md",
3185
+ "type": "READ_ONLY",
3186
+ "via": "body_link",
3187
+ "depth": 1
3188
+ },
3027
3189
  {
3028
3190
  "source": ".agent-src.uncompressed/commands/optimize/augmentignore.md",
3029
3191
  "target": ".agent-src.uncompressed/commands/optimize/augmentignore.md",
@@ -3913,6 +4075,34 @@
3913
4075
  "via": "body_link",
3914
4076
  "depth": 1
3915
4077
  },
4078
+ {
4079
+ "source": ".agent-src.uncompressed/contexts/contracts/agents-md-anatomy.md",
4080
+ "target": ".agent-src.uncompressed/contexts/contracts/agents-md-anatomy.md",
4081
+ "type": "WRITE",
4082
+ "via": "self",
4083
+ "depth": 0
4084
+ },
4085
+ {
4086
+ "source": ".agent-src.uncompressed/contexts/contracts/agents-md-anatomy.md",
4087
+ "target": ".agent-src.uncompressed/contexts/contracts/consumer-agents-md-guide.md",
4088
+ "type": "READ_ONLY",
4089
+ "via": "body_link",
4090
+ "depth": 1
4091
+ },
4092
+ {
4093
+ "source": ".agent-src.uncompressed/contexts/contracts/agents-md-anatomy.md",
4094
+ "target": ".agent-src.uncompressed/contexts/contracts/emergency-triage-block.md",
4095
+ "type": "READ_ONLY",
4096
+ "via": "body_link",
4097
+ "depth": 1
4098
+ },
4099
+ {
4100
+ "source": ".agent-src.uncompressed/contexts/contracts/agents-md-anatomy.md",
4101
+ "target": ".agent-src.uncompressed/skills/agents-md-thin-root/SKILL.md",
4102
+ "type": "READ_ONLY",
4103
+ "via": "body_link",
4104
+ "depth": 1
4105
+ },
3916
4106
  {
3917
4107
  "source": ".agent-src.uncompressed/contexts/contracts/artifact-engagement-flow.md",
3918
4108
  "target": ".agent-src.uncompressed/contexts/contracts/artifact-engagement-flow.md",
@@ -5558,6 +5748,13 @@
5558
5748
  "via": "self",
5559
5749
  "depth": 0
5560
5750
  },
5751
+ {
5752
+ "source": ".agent-src.uncompressed/skills/agents-md-thin-root/SKILL.md",
5753
+ "target": ".agent-src.uncompressed/contexts/contracts/agents-md-anatomy.md",
5754
+ "type": "READ_ONLY",
5755
+ "via": "body_link",
5756
+ "depth": 1
5757
+ },
5561
5758
  {
5562
5759
  "source": ".agent-src.uncompressed/skills/agents-md-thin-root/SKILL.md",
5563
5760
  "target": ".agent-src.uncompressed/rules/size-enforcement.md",
@@ -5649,6 +5846,41 @@
5649
5846
  "via": "self",
5650
5847
  "depth": 0
5651
5848
  },
5849
+ {
5850
+ "source": ".agent-src.uncompressed/skills/async-python-patterns/SKILL.md",
5851
+ "target": ".agent-src.uncompressed/skills/api-design/SKILL.md",
5852
+ "type": "READ_ONLY",
5853
+ "via": "body_link",
5854
+ "depth": 1
5855
+ },
5856
+ {
5857
+ "source": ".agent-src.uncompressed/skills/async-python-patterns/SKILL.md",
5858
+ "target": ".agent-src.uncompressed/skills/async-python-patterns/SKILL.md",
5859
+ "type": "WRITE",
5860
+ "via": "self",
5861
+ "depth": 0
5862
+ },
5863
+ {
5864
+ "source": ".agent-src.uncompressed/skills/async-python-patterns/SKILL.md",
5865
+ "target": ".agent-src.uncompressed/skills/error-handling-patterns/SKILL.md",
5866
+ "type": "READ_ONLY",
5867
+ "via": "body_link",
5868
+ "depth": 1
5869
+ },
5870
+ {
5871
+ "source": ".agent-src.uncompressed/skills/async-python-patterns/SKILL.md",
5872
+ "target": ".agent-src.uncompressed/skills/mcp-builder/SKILL.md",
5873
+ "type": "READ_ONLY",
5874
+ "via": "body_link",
5875
+ "depth": 1
5876
+ },
5877
+ {
5878
+ "source": ".agent-src.uncompressed/skills/async-python-patterns/SKILL.md",
5879
+ "target": ".agent-src.uncompressed/skills/performance/SKILL.md",
5880
+ "type": "READ_ONLY",
5881
+ "via": "body_link",
5882
+ "depth": 1
5883
+ },
5652
5884
  {
5653
5885
  "source": ".agent-src.uncompressed/skills/authz-review/SKILL.md",
5654
5886
  "target": ".agent-src.uncompressed/skills/authz-review/SKILL.md",
@@ -6006,6 +6238,20 @@
6006
6238
  "via": "self",
6007
6239
  "depth": 0
6008
6240
  },
6241
+ {
6242
+ "source": ".agent-src.uncompressed/skills/defense-in-depth/SKILL.md",
6243
+ "target": ".agent-src.uncompressed/skills/defense-in-depth/SKILL.md",
6244
+ "type": "WRITE",
6245
+ "via": "self",
6246
+ "depth": 0
6247
+ },
6248
+ {
6249
+ "source": ".agent-src.uncompressed/skills/defense-in-depth/SKILL.md",
6250
+ "target": ".agent-src.uncompressed/skills/laravel-validation/SKILL.md",
6251
+ "type": "READ_ONLY",
6252
+ "via": "body_link",
6253
+ "depth": 1
6254
+ },
6009
6255
  {
6010
6256
  "source": ".agent-src.uncompressed/skills/dependency-upgrade/SKILL.md",
6011
6257
  "target": ".agent-src.uncompressed/skills/dependency-upgrade/SKILL.md",
@@ -6076,6 +6322,41 @@
6076
6322
  "via": "self",
6077
6323
  "depth": 0
6078
6324
  },
6325
+ {
6326
+ "source": ".agent-src.uncompressed/skills/error-handling-patterns/SKILL.md",
6327
+ "target": ".agent-src.uncompressed/skills/api-design/SKILL.md",
6328
+ "type": "READ_ONLY",
6329
+ "via": "body_link",
6330
+ "depth": 1
6331
+ },
6332
+ {
6333
+ "source": ".agent-src.uncompressed/skills/error-handling-patterns/SKILL.md",
6334
+ "target": ".agent-src.uncompressed/skills/bug-analyzer/SKILL.md",
6335
+ "type": "READ_ONLY",
6336
+ "via": "body_link",
6337
+ "depth": 1
6338
+ },
6339
+ {
6340
+ "source": ".agent-src.uncompressed/skills/error-handling-patterns/SKILL.md",
6341
+ "target": ".agent-src.uncompressed/skills/defense-in-depth/SKILL.md",
6342
+ "type": "READ_ONLY",
6343
+ "via": "body_link",
6344
+ "depth": 1
6345
+ },
6346
+ {
6347
+ "source": ".agent-src.uncompressed/skills/error-handling-patterns/SKILL.md",
6348
+ "target": ".agent-src.uncompressed/skills/error-handling-patterns/SKILL.md",
6349
+ "type": "WRITE",
6350
+ "via": "self",
6351
+ "depth": 0
6352
+ },
6353
+ {
6354
+ "source": ".agent-src.uncompressed/skills/error-handling-patterns/SKILL.md",
6355
+ "target": ".agent-src.uncompressed/skills/laravel-validation/SKILL.md",
6356
+ "type": "READ_ONLY",
6357
+ "via": "body_link",
6358
+ "depth": 1
6359
+ },
6079
6360
  {
6080
6361
  "source": ".agent-src.uncompressed/skills/estimate-ticket/SKILL.md",
6081
6362
  "target": ".agent-src.uncompressed/commands/jira-ticket.md",
@@ -6734,6 +7015,34 @@
6734
7015
  "via": "self",
6735
7016
  "depth": 0
6736
7017
  },
7018
+ {
7019
+ "source": ".agent-src.uncompressed/skills/mcp-builder/SKILL.md",
7020
+ "target": ".agent-src.uncompressed/skills/api-design/SKILL.md",
7021
+ "type": "READ_ONLY",
7022
+ "via": "body_link",
7023
+ "depth": 1
7024
+ },
7025
+ {
7026
+ "source": ".agent-src.uncompressed/skills/mcp-builder/SKILL.md",
7027
+ "target": ".agent-src.uncompressed/skills/mcp-builder/SKILL.md",
7028
+ "type": "WRITE",
7029
+ "via": "self",
7030
+ "depth": 0
7031
+ },
7032
+ {
7033
+ "source": ".agent-src.uncompressed/skills/mcp-builder/SKILL.md",
7034
+ "target": ".agent-src.uncompressed/skills/mcp/SKILL.md",
7035
+ "type": "READ_ONLY",
7036
+ "via": "body_link",
7037
+ "depth": 1
7038
+ },
7039
+ {
7040
+ "source": ".agent-src.uncompressed/skills/mcp-builder/SKILL.md",
7041
+ "target": ".agent-src.uncompressed/skills/testing-anti-patterns/SKILL.md",
7042
+ "type": "READ_ONLY",
7043
+ "via": "body_link",
7044
+ "depth": 1
7045
+ },
6737
7046
  {
6738
7047
  "source": ".agent-src.uncompressed/skills/mcp/SKILL.md",
6739
7048
  "target": ".agent-src.uncompressed/skills/mcp/SKILL.md",
@@ -6986,6 +7295,41 @@
6986
7295
  "via": "self",
6987
7296
  "depth": 0
6988
7297
  },
7298
+ {
7299
+ "source": ".agent-src.uncompressed/skills/prompt-engineering-patterns/SKILL.md",
7300
+ "target": ".agent-src.uncompressed/skills/async-python-patterns/SKILL.md",
7301
+ "type": "READ_ONLY",
7302
+ "via": "body_link",
7303
+ "depth": 1
7304
+ },
7305
+ {
7306
+ "source": ".agent-src.uncompressed/skills/prompt-engineering-patterns/SKILL.md",
7307
+ "target": ".agent-src.uncompressed/skills/mcp-builder/SKILL.md",
7308
+ "type": "READ_ONLY",
7309
+ "via": "body_link",
7310
+ "depth": 1
7311
+ },
7312
+ {
7313
+ "source": ".agent-src.uncompressed/skills/prompt-engineering-patterns/SKILL.md",
7314
+ "target": ".agent-src.uncompressed/skills/prompt-engineering-patterns/SKILL.md",
7315
+ "type": "WRITE",
7316
+ "via": "self",
7317
+ "depth": 0
7318
+ },
7319
+ {
7320
+ "source": ".agent-src.uncompressed/skills/prompt-engineering-patterns/SKILL.md",
7321
+ "target": ".agent-src.uncompressed/skills/prompt-optimizer/SKILL.md",
7322
+ "type": "READ_ONLY",
7323
+ "via": "body_link",
7324
+ "depth": 1
7325
+ },
7326
+ {
7327
+ "source": ".agent-src.uncompressed/skills/prompt-engineering-patterns/SKILL.md",
7328
+ "target": ".agent-src.uncompressed/skills/refine-prompt/SKILL.md",
7329
+ "type": "READ_ONLY",
7330
+ "via": "body_link",
7331
+ "depth": 1
7332
+ },
6989
7333
  {
6990
7334
  "source": ".agent-src.uncompressed/skills/prompt-optimizer/SKILL.md",
6991
7335
  "target": ".agent-src.uncompressed/commands/optimize-prompt.md",
@@ -7168,6 +7512,48 @@
7168
7512
  "via": "body_link",
7169
7513
  "depth": 1
7170
7514
  },
7515
+ {
7516
+ "source": ".agent-src.uncompressed/skills/repomix-packer/SKILL.md",
7517
+ "target": ".agent-src.uncompressed/commands/analyze-reference-repo.md",
7518
+ "type": "READ_ONLY",
7519
+ "via": "body_link",
7520
+ "depth": 1
7521
+ },
7522
+ {
7523
+ "source": ".agent-src.uncompressed/skills/repomix-packer/SKILL.md",
7524
+ "target": ".agent-src.uncompressed/skills/blast-radius-analyzer/SKILL.md",
7525
+ "type": "READ_ONLY",
7526
+ "via": "body_link",
7527
+ "depth": 1
7528
+ },
7529
+ {
7530
+ "source": ".agent-src.uncompressed/skills/repomix-packer/SKILL.md",
7531
+ "target": ".agent-src.uncompressed/skills/judge-bug-hunter/SKILL.md",
7532
+ "type": "READ_ONLY",
7533
+ "via": "body_link",
7534
+ "depth": 1
7535
+ },
7536
+ {
7537
+ "source": ".agent-src.uncompressed/skills/repomix-packer/SKILL.md",
7538
+ "target": ".agent-src.uncompressed/skills/judge-security-auditor/SKILL.md",
7539
+ "type": "READ_ONLY",
7540
+ "via": "body_link",
7541
+ "depth": 1
7542
+ },
7543
+ {
7544
+ "source": ".agent-src.uncompressed/skills/repomix-packer/SKILL.md",
7545
+ "target": ".agent-src.uncompressed/skills/markitdown/SKILL.md",
7546
+ "type": "READ_ONLY",
7547
+ "via": "body_link",
7548
+ "depth": 1
7549
+ },
7550
+ {
7551
+ "source": ".agent-src.uncompressed/skills/repomix-packer/SKILL.md",
7552
+ "target": ".agent-src.uncompressed/skills/repomix-packer/SKILL.md",
7553
+ "type": "WRITE",
7554
+ "via": "self",
7555
+ "depth": 0
7556
+ },
7171
7557
  {
7172
7558
  "source": ".agent-src.uncompressed/skills/requesting-code-review/SKILL.md",
7173
7559
  "target": ".agent-src.uncompressed/commands/commit.md",
@@ -7455,6 +7841,41 @@
7455
7841
  "via": "self",
7456
7842
  "depth": 0
7457
7843
  },
7844
+ {
7845
+ "source": ".agent-src.uncompressed/skills/secrets-management/SKILL.md",
7846
+ "target": ".agent-src.uncompressed/skills/aws-infrastructure/SKILL.md",
7847
+ "type": "READ_ONLY",
7848
+ "via": "body_link",
7849
+ "depth": 1
7850
+ },
7851
+ {
7852
+ "source": ".agent-src.uncompressed/skills/secrets-management/SKILL.md",
7853
+ "target": ".agent-src.uncompressed/skills/secrets-management/SKILL.md",
7854
+ "type": "WRITE",
7855
+ "via": "self",
7856
+ "depth": 0
7857
+ },
7858
+ {
7859
+ "source": ".agent-src.uncompressed/skills/secrets-management/SKILL.md",
7860
+ "target": ".agent-src.uncompressed/skills/security-audit/SKILL.md",
7861
+ "type": "READ_ONLY",
7862
+ "via": "body_link",
7863
+ "depth": 1
7864
+ },
7865
+ {
7866
+ "source": ".agent-src.uncompressed/skills/secrets-management/SKILL.md",
7867
+ "target": ".agent-src.uncompressed/skills/security/SKILL.md",
7868
+ "type": "READ_ONLY",
7869
+ "via": "body_link",
7870
+ "depth": 1
7871
+ },
7872
+ {
7873
+ "source": ".agent-src.uncompressed/skills/secrets-management/SKILL.md",
7874
+ "target": ".agent-src.uncompressed/skills/threat-modeling/SKILL.md",
7875
+ "type": "READ_ONLY",
7876
+ "via": "body_link",
7877
+ "depth": 1
7878
+ },
7458
7879
  {
7459
7880
  "source": ".agent-src.uncompressed/skills/security-audit/SKILL.md",
7460
7881
  "target": ".agent-src.uncompressed/skills/authz-review/SKILL.md",
@@ -7763,6 +8184,48 @@
7763
8184
  "via": "self",
7764
8185
  "depth": 0
7765
8186
  },
8187
+ {
8188
+ "source": ".agent-src.uncompressed/skills/testing-anti-patterns/SKILL.md",
8189
+ "target": ".agent-src.uncompressed/skills/defense-in-depth/SKILL.md",
8190
+ "type": "READ_ONLY",
8191
+ "via": "body_link",
8192
+ "depth": 1
8193
+ },
8194
+ {
8195
+ "source": ".agent-src.uncompressed/skills/testing-anti-patterns/SKILL.md",
8196
+ "target": ".agent-src.uncompressed/skills/judge-test-coverage/SKILL.md",
8197
+ "type": "READ_ONLY",
8198
+ "via": "body_link",
8199
+ "depth": 1
8200
+ },
8201
+ {
8202
+ "source": ".agent-src.uncompressed/skills/testing-anti-patterns/SKILL.md",
8203
+ "target": ".agent-src.uncompressed/skills/pest-testing/SKILL.md",
8204
+ "type": "READ_ONLY",
8205
+ "via": "body_link",
8206
+ "depth": 1
8207
+ },
8208
+ {
8209
+ "source": ".agent-src.uncompressed/skills/testing-anti-patterns/SKILL.md",
8210
+ "target": ".agent-src.uncompressed/skills/systematic-debugging/SKILL.md",
8211
+ "type": "READ_ONLY",
8212
+ "via": "body_link",
8213
+ "depth": 1
8214
+ },
8215
+ {
8216
+ "source": ".agent-src.uncompressed/skills/testing-anti-patterns/SKILL.md",
8217
+ "target": ".agent-src.uncompressed/skills/test-driven-development/SKILL.md",
8218
+ "type": "READ_ONLY",
8219
+ "via": "body_link",
8220
+ "depth": 1
8221
+ },
8222
+ {
8223
+ "source": ".agent-src.uncompressed/skills/testing-anti-patterns/SKILL.md",
8224
+ "target": ".agent-src.uncompressed/skills/testing-anti-patterns/SKILL.md",
8225
+ "type": "WRITE",
8226
+ "via": "self",
8227
+ "depth": 0
8228
+ },
7766
8229
  {
7767
8230
  "source": ".agent-src.uncompressed/skills/threat-modeling/SKILL.md",
7768
8231
  "target": ".agent-src.uncompressed/skills/authz-review/SKILL.md",