@winspan/claude-forge 9.2.0 → 9.12.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 (591) hide show
  1. package/DEVELOPMENT.md +80 -19
  2. package/README.md +13 -6
  3. package/dist/catalogs/agents.json +19 -24
  4. package/dist/catalogs/skills.json +139 -27
  5. package/dist/claudemd/templates/swarm-protocol.md +1 -1
  6. package/dist/cli/commands/agent.d.ts +169 -0
  7. package/dist/cli/commands/agent.d.ts.map +1 -0
  8. package/dist/cli/commands/agent.js +690 -0
  9. package/dist/cli/commands/agent.js.map +1 -0
  10. package/dist/cli/commands/codegraph.d.ts +17 -0
  11. package/dist/cli/commands/codegraph.d.ts.map +1 -0
  12. package/dist/cli/commands/codegraph.js +263 -0
  13. package/dist/cli/commands/codegraph.js.map +1 -0
  14. package/dist/cli/commands/decisions.d.ts.map +1 -1
  15. package/dist/cli/commands/decisions.js +46 -9
  16. package/dist/cli/commands/decisions.js.map +1 -1
  17. package/dist/cli/commands/executions.d.ts.map +1 -1
  18. package/dist/cli/commands/executions.js +2 -1
  19. package/dist/cli/commands/executions.js.map +1 -1
  20. package/dist/cli/commands/insights-goal-check.d.ts +5 -1
  21. package/dist/cli/commands/insights-goal-check.d.ts.map +1 -1
  22. package/dist/cli/commands/insights-goal-check.js +15 -15
  23. package/dist/cli/commands/insights-goal-check.js.map +1 -1
  24. package/dist/cli/commands/knowledge.d.ts +51 -0
  25. package/dist/cli/commands/knowledge.d.ts.map +1 -1
  26. package/dist/cli/commands/knowledge.js +202 -29
  27. package/dist/cli/commands/knowledge.js.map +1 -1
  28. package/dist/cli/commands/loop.d.ts +95 -0
  29. package/dist/cli/commands/loop.d.ts.map +1 -0
  30. package/dist/cli/commands/loop.js +408 -0
  31. package/dist/cli/commands/loop.js.map +1 -0
  32. package/dist/cli/commands/maintenance.d.ts +33 -0
  33. package/dist/cli/commands/maintenance.d.ts.map +1 -0
  34. package/dist/cli/commands/maintenance.js +75 -0
  35. package/dist/cli/commands/maintenance.js.map +1 -0
  36. package/dist/cli/commands/mcp.d.ts +23 -0
  37. package/dist/cli/commands/mcp.d.ts.map +1 -1
  38. package/dist/cli/commands/mcp.js +82 -0
  39. package/dist/cli/commands/mcp.js.map +1 -1
  40. package/dist/cli/commands/skills.d.ts +131 -0
  41. package/dist/cli/commands/skills.d.ts.map +1 -1
  42. package/dist/cli/commands/skills.js +409 -9
  43. package/dist/cli/commands/skills.js.map +1 -1
  44. package/dist/cli/commands/stats.d.ts.map +1 -1
  45. package/dist/cli/commands/stats.js +9 -2
  46. package/dist/cli/commands/stats.js.map +1 -1
  47. package/dist/cli/index.js +8 -0
  48. package/dist/cli/index.js.map +1 -1
  49. package/dist/core/constants.d.ts +37 -0
  50. package/dist/core/constants.d.ts.map +1 -1
  51. package/dist/core/constants.js +43 -0
  52. package/dist/core/constants.js.map +1 -1
  53. package/dist/core/diagnostics/checks.d.ts.map +1 -1
  54. package/dist/core/diagnostics/checks.js +2 -1
  55. package/dist/core/diagnostics/checks.js.map +1 -1
  56. package/dist/core/diagnostics/daemon-status.d.ts +1 -1
  57. package/dist/core/diagnostics/daemon-status.d.ts.map +1 -1
  58. package/dist/core/diagnostics/daemon-status.js +1 -1
  59. package/dist/core/diagnostics/daemon-status.js.map +1 -1
  60. package/dist/core/diagnostics/entropy-checks.d.ts +3 -2
  61. package/dist/core/diagnostics/entropy-checks.d.ts.map +1 -1
  62. package/dist/core/diagnostics/entropy-checks.js +10 -5
  63. package/dist/core/diagnostics/entropy-checks.js.map +1 -1
  64. package/dist/core/diagnostics/heartbeat-reader.d.ts +28 -0
  65. package/dist/core/diagnostics/heartbeat-reader.d.ts.map +1 -0
  66. package/dist/core/diagnostics/heartbeat-reader.js +50 -0
  67. package/dist/core/diagnostics/heartbeat-reader.js.map +1 -0
  68. package/dist/core/event-fields.d.ts +27 -0
  69. package/dist/core/event-fields.d.ts.map +1 -1
  70. package/dist/core/event-fields.js +43 -0
  71. package/dist/core/event-fields.js.map +1 -1
  72. package/dist/core/governance/global-inject.d.ts +34 -4
  73. package/dist/core/governance/global-inject.d.ts.map +1 -1
  74. package/dist/core/governance/global-inject.js +80 -25
  75. package/dist/core/governance/global-inject.js.map +1 -1
  76. package/dist/core/insights/agent-anchor-guard.d.ts +77 -0
  77. package/dist/core/insights/agent-anchor-guard.d.ts.map +1 -0
  78. package/dist/core/insights/agent-anchor-guard.js +119 -0
  79. package/dist/core/insights/agent-anchor-guard.js.map +1 -0
  80. package/dist/core/insights/agent-distill-context.d.ts +55 -0
  81. package/dist/core/insights/agent-distill-context.d.ts.map +1 -0
  82. package/dist/core/insights/agent-distill-context.js +146 -0
  83. package/dist/core/insights/agent-distill-context.js.map +1 -0
  84. package/dist/core/insights/agent-distill-spawn.d.ts +56 -0
  85. package/dist/core/insights/agent-distill-spawn.d.ts.map +1 -0
  86. package/dist/core/insights/agent-distill-spawn.js +179 -0
  87. package/dist/core/insights/agent-distill-spawn.js.map +1 -0
  88. package/dist/core/insights/agent-drift.d.ts +66 -0
  89. package/dist/core/insights/agent-drift.d.ts.map +1 -0
  90. package/dist/core/insights/agent-drift.js +109 -0
  91. package/dist/core/insights/agent-drift.js.map +1 -0
  92. package/dist/core/insights/agent-evolution-sources.d.ts +21 -0
  93. package/dist/core/insights/agent-evolution-sources.d.ts.map +1 -0
  94. package/dist/core/insights/agent-evolution-sources.js +36 -0
  95. package/dist/core/insights/agent-evolution-sources.js.map +1 -0
  96. package/dist/core/insights/agent-health.d.ts +142 -0
  97. package/dist/core/insights/agent-health.d.ts.map +1 -0
  98. package/dist/core/insights/agent-health.js +296 -0
  99. package/dist/core/insights/agent-health.js.map +1 -0
  100. package/dist/core/insights/agent-patch-apply.d.ts +45 -0
  101. package/dist/core/insights/agent-patch-apply.d.ts.map +1 -0
  102. package/dist/core/insights/agent-patch-apply.js +165 -0
  103. package/dist/core/insights/agent-patch-apply.js.map +1 -0
  104. package/dist/core/insights/agent-suggest.d.ts +128 -0
  105. package/dist/core/insights/agent-suggest.d.ts.map +1 -0
  106. package/dist/core/insights/agent-suggest.js +284 -0
  107. package/dist/core/insights/agent-suggest.js.map +1 -0
  108. package/dist/core/insights/coverage-tiers.d.ts +46 -0
  109. package/dist/core/insights/coverage-tiers.d.ts.map +1 -0
  110. package/dist/core/insights/coverage-tiers.js +95 -0
  111. package/dist/core/insights/coverage-tiers.js.map +1 -0
  112. package/dist/{daemon/services → core/insights}/experience-extractor.d.ts +0 -7
  113. package/dist/core/insights/experience-extractor.d.ts.map +1 -0
  114. package/dist/{daemon/services → core/insights}/experience-extractor.js +5 -9
  115. package/dist/core/insights/experience-extractor.js.map +1 -0
  116. package/dist/{daemon/services → core/insights}/violation-reporter.d.ts +20 -1
  117. package/dist/core/insights/violation-reporter.d.ts.map +1 -0
  118. package/dist/{daemon/services → core/insights}/violation-reporter.js +56 -4
  119. package/dist/core/insights/violation-reporter.js.map +1 -0
  120. package/dist/core/loop/loop-engine.d.ts +140 -0
  121. package/dist/core/loop/loop-engine.d.ts.map +1 -0
  122. package/dist/core/loop/loop-engine.js +266 -0
  123. package/dist/core/loop/loop-engine.js.map +1 -0
  124. package/dist/core/queue/index.d.ts.map +1 -1
  125. package/dist/core/queue/index.js +2 -1
  126. package/dist/core/queue/index.js.map +1 -1
  127. package/dist/core/storage/base.d.ts +159 -0
  128. package/dist/core/storage/base.d.ts.map +1 -1
  129. package/dist/core/storage/base.js +523 -0
  130. package/dist/core/storage/base.js.map +1 -1
  131. package/dist/core/storage/codegraph-types.d.ts +79 -0
  132. package/dist/core/storage/codegraph-types.d.ts.map +1 -0
  133. package/dist/core/storage/codegraph-types.js +14 -0
  134. package/dist/core/storage/codegraph-types.js.map +1 -0
  135. package/dist/core/storage/codegraph.d.ts +186 -0
  136. package/dist/core/storage/codegraph.d.ts.map +1 -0
  137. package/dist/core/storage/codegraph.js +452 -0
  138. package/dist/core/storage/codegraph.js.map +1 -0
  139. package/dist/core/storage/decisions.d.ts +30 -5
  140. package/dist/core/storage/decisions.d.ts.map +1 -1
  141. package/dist/core/storage/decisions.js +45 -13
  142. package/dist/core/storage/decisions.js.map +1 -1
  143. package/dist/core/storage/events.d.ts +127 -0
  144. package/dist/core/storage/events.d.ts.map +1 -1
  145. package/dist/core/storage/events.js +318 -3
  146. package/dist/core/storage/events.js.map +1 -1
  147. package/dist/core/storage/feedback.d.ts +3 -23
  148. package/dist/core/storage/feedback.d.ts.map +1 -1
  149. package/dist/core/storage/feedback.js +37 -38
  150. package/dist/core/storage/feedback.js.map +1 -1
  151. package/dist/core/storage/injections.d.ts +40 -0
  152. package/dist/core/storage/injections.d.ts.map +1 -1
  153. package/dist/core/storage/injections.js +69 -0
  154. package/dist/core/storage/injections.js.map +1 -1
  155. package/dist/core/storage/knowledge.d.ts +226 -0
  156. package/dist/core/storage/knowledge.d.ts.map +1 -1
  157. package/dist/core/storage/knowledge.js +391 -4
  158. package/dist/core/storage/knowledge.js.map +1 -1
  159. package/dist/core/storage/pipeline-rollup.d.ts +1 -7
  160. package/dist/core/storage/pipeline-rollup.d.ts.map +1 -1
  161. package/dist/core/storage/pipeline-rollup.js +18 -57
  162. package/dist/core/storage/pipeline-rollup.js.map +1 -1
  163. package/dist/core/storage/routing.d.ts +34 -0
  164. package/dist/core/storage/routing.d.ts.map +1 -1
  165. package/dist/core/storage/routing.js +92 -2
  166. package/dist/core/storage/routing.js.map +1 -1
  167. package/dist/core/storage/rows.d.ts +5 -25
  168. package/dist/core/storage/rows.d.ts.map +1 -1
  169. package/dist/core/storage/schema.sql +92 -27
  170. package/dist/core/storage/sessions.d.ts.map +1 -1
  171. package/dist/core/storage/sessions.js +2 -1
  172. package/dist/core/storage/sessions.js.map +1 -1
  173. package/dist/core/storage/skills.d.ts +159 -0
  174. package/dist/core/storage/skills.d.ts.map +1 -1
  175. package/dist/core/storage/skills.js +350 -4
  176. package/dist/core/storage/skills.js.map +1 -1
  177. package/dist/core/storage/sqlite.d.ts +81 -25
  178. package/dist/core/storage/sqlite.d.ts.map +1 -1
  179. package/dist/core/storage/sqlite.js +143 -45
  180. package/dist/core/storage/sqlite.js.map +1 -1
  181. package/dist/core/storage/tasks.d.ts +270 -0
  182. package/dist/core/storage/tasks.d.ts.map +1 -1
  183. package/dist/core/storage/tasks.js +495 -16
  184. package/dist/core/storage/tasks.js.map +1 -1
  185. package/dist/core/storage/tool-intercepts.d.ts +1 -1
  186. package/dist/core/storage/tool-intercepts.js +1 -1
  187. package/dist/core/types.d.ts +26 -3
  188. package/dist/core/types.d.ts.map +1 -1
  189. package/dist/core/types.js +1 -3
  190. package/dist/core/types.js.map +1 -1
  191. package/dist/core/utils/binary-paths.d.ts +32 -0
  192. package/dist/core/utils/binary-paths.d.ts.map +1 -1
  193. package/dist/core/utils/binary-paths.js +52 -0
  194. package/dist/core/utils/binary-paths.js.map +1 -1
  195. package/dist/core/utils/claude-cli-resolver.d.ts.map +1 -0
  196. package/dist/{skills/distill → core/utils}/claude-cli-resolver.js +1 -1
  197. package/dist/core/utils/claude-cli-resolver.js.map +1 -0
  198. package/dist/core/utils/claude-cli-spawn.d.ts +1 -1
  199. package/dist/core/utils/claude-cli-spawn.js +2 -2
  200. package/dist/core/utils/claude-cli-spawn.js.map +1 -1
  201. package/dist/core/utils/noise-prompt.d.ts +1 -1
  202. package/dist/core/utils/noise-prompt.js +1 -1
  203. package/dist/core/utils/time.d.ts +26 -0
  204. package/dist/core/utils/time.d.ts.map +1 -1
  205. package/dist/core/utils/time.js +33 -0
  206. package/dist/core/utils/time.js.map +1 -1
  207. package/dist/daemon/config-store.d.ts.map +1 -1
  208. package/dist/daemon/config-store.js +14 -5
  209. package/dist/daemon/config-store.js.map +1 -1
  210. package/dist/daemon/event-parser.d.ts.map +1 -1
  211. package/dist/daemon/event-parser.js +5 -0
  212. package/dist/daemon/event-parser.js.map +1 -1
  213. package/dist/daemon/handlers/post-tool-use.d.ts +24 -16
  214. package/dist/daemon/handlers/post-tool-use.d.ts.map +1 -1
  215. package/dist/daemon/handlers/post-tool-use.js +76 -116
  216. package/dist/daemon/handlers/post-tool-use.js.map +1 -1
  217. package/dist/daemon/handlers/pre-tool-use.d.ts +35 -10
  218. package/dist/daemon/handlers/pre-tool-use.d.ts.map +1 -1
  219. package/dist/daemon/handlers/pre-tool-use.js +71 -38
  220. package/dist/daemon/handlers/pre-tool-use.js.map +1 -1
  221. package/dist/daemon/handlers/stop.d.ts +20 -0
  222. package/dist/daemon/handlers/stop.d.ts.map +1 -1
  223. package/dist/daemon/handlers/stop.js +96 -8
  224. package/dist/daemon/handlers/stop.js.map +1 -1
  225. package/dist/daemon/handlers/user-prompt.d.ts +16 -1
  226. package/dist/daemon/handlers/user-prompt.d.ts.map +1 -1
  227. package/dist/daemon/handlers/user-prompt.js +97 -56
  228. package/dist/daemon/handlers/user-prompt.js.map +1 -1
  229. package/dist/daemon/handlers/violation-content-backfill.d.ts +76 -0
  230. package/dist/daemon/handlers/violation-content-backfill.d.ts.map +1 -0
  231. package/dist/daemon/handlers/violation-content-backfill.js +167 -0
  232. package/dist/daemon/handlers/violation-content-backfill.js.map +1 -0
  233. package/dist/daemon/index.d.ts +19 -0
  234. package/dist/daemon/index.d.ts.map +1 -1
  235. package/dist/daemon/index.js +125 -200
  236. package/dist/daemon/index.js.map +1 -1
  237. package/dist/daemon/rules/defaults.d.ts.map +1 -1
  238. package/dist/daemon/rules/defaults.js +151 -64
  239. package/dist/daemon/rules/defaults.js.map +1 -1
  240. package/dist/daemon/rules/types.d.ts +28 -22
  241. package/dist/daemon/rules/types.d.ts.map +1 -1
  242. package/dist/daemon/rules/workflow-defaults.js +9 -9
  243. package/dist/daemon/rules/workflow-defaults.js.map +1 -1
  244. package/dist/daemon/services/codegraph-sync.d.ts +94 -0
  245. package/dist/daemon/services/codegraph-sync.d.ts.map +1 -0
  246. package/dist/daemon/services/codegraph-sync.js +159 -0
  247. package/dist/daemon/services/codegraph-sync.js.map +1 -0
  248. package/dist/daemon/services/decision-hint.d.ts +47 -10
  249. package/dist/daemon/services/decision-hint.d.ts.map +1 -1
  250. package/dist/daemon/services/decision-hint.js +99 -24
  251. package/dist/daemon/services/decision-hint.js.map +1 -1
  252. package/dist/daemon/services/event-ttl-sweep.d.ts.map +1 -1
  253. package/dist/daemon/services/event-ttl-sweep.js +3 -2
  254. package/dist/daemon/services/event-ttl-sweep.js.map +1 -1
  255. package/dist/daemon/services/feedback-aggregator.d.ts +14 -26
  256. package/dist/daemon/services/feedback-aggregator.d.ts.map +1 -1
  257. package/dist/daemon/services/feedback-aggregator.js +23 -63
  258. package/dist/daemon/services/feedback-aggregator.js.map +1 -1
  259. package/dist/daemon/services/heartbeat-writer.d.ts +6 -15
  260. package/dist/daemon/services/heartbeat-writer.d.ts.map +1 -1
  261. package/dist/daemon/services/heartbeat-writer.js +7 -36
  262. package/dist/daemon/services/heartbeat-writer.js.map +1 -1
  263. package/dist/daemon/services/kb-injector.d.ts +1 -1
  264. package/dist/daemon/services/kb-injector.d.ts.map +1 -1
  265. package/dist/daemon/services/kb-injector.js +10 -2
  266. package/dist/daemon/services/kb-injector.js.map +1 -1
  267. package/dist/daemon/services/kb-rebuild-scheduler.d.ts +95 -0
  268. package/dist/daemon/services/kb-rebuild-scheduler.d.ts.map +1 -0
  269. package/dist/daemon/services/kb-rebuild-scheduler.js +149 -0
  270. package/dist/daemon/services/kb-rebuild-scheduler.js.map +1 -0
  271. package/dist/daemon/services/loop-hint.d.ts +139 -0
  272. package/dist/daemon/services/loop-hint.d.ts.map +1 -0
  273. package/dist/daemon/services/loop-hint.js +272 -0
  274. package/dist/daemon/services/loop-hint.js.map +1 -0
  275. package/dist/daemon/services/outcome-classification-service.js +1 -1
  276. package/dist/daemon/services/outcome-classification-service.js.map +1 -1
  277. package/dist/daemon/services/task-segmenter.d.ts +11 -0
  278. package/dist/daemon/services/task-segmenter.d.ts.map +1 -1
  279. package/dist/daemon/services/task-segmenter.js +48 -2
  280. package/dist/daemon/services/task-segmenter.js.map +1 -1
  281. package/dist/daemon/startup/maintenance-schedulers.d.ts +68 -0
  282. package/dist/daemon/startup/maintenance-schedulers.d.ts.map +1 -0
  283. package/dist/daemon/startup/maintenance-schedulers.js +294 -0
  284. package/dist/daemon/startup/maintenance-schedulers.js.map +1 -0
  285. package/dist/daemon/templates/agents/agent-retro-distiller.md +106 -0
  286. package/dist/daemon/templates/agents/claudemd-writer.md +1 -0
  287. package/dist/daemon/templates/agents/coder.md +165 -8
  288. package/dist/daemon/templates/agents/decision-maker.md +107 -21
  289. package/dist/daemon/templates/agents/doc-reviewer.md +4 -1
  290. package/dist/daemon/templates/agents/harness-debug-full.md +85 -3
  291. package/dist/daemon/templates/agents/knowledge-builder.md +1 -0
  292. package/dist/daemon/templates/agents/patch-applier.md +1 -0
  293. package/dist/daemon/templates/agents/planner.md +55 -3
  294. package/dist/daemon/templates/agents/safety-net-implementer.md +278 -0
  295. package/dist/daemon/templates/agents/skill-distiller.md +1 -0
  296. package/dist/daemon/templates/agents/task-boundary-classifier.md +1 -0
  297. package/dist/daemon/templates/agents/verify-agent.md +128 -5
  298. package/dist/hooks/stop.sh +7 -1
  299. package/dist/knowledge/builder.js +36 -7
  300. package/dist/knowledge/builder.js.map +1 -1
  301. package/dist/knowledge/constants.d.ts +10 -5
  302. package/dist/knowledge/constants.d.ts.map +1 -1
  303. package/dist/knowledge/constants.js +10 -5
  304. package/dist/knowledge/constants.js.map +1 -1
  305. package/dist/knowledge/graph/edge-extractor.d.ts +45 -0
  306. package/dist/knowledge/graph/edge-extractor.d.ts.map +1 -0
  307. package/dist/knowledge/graph/edge-extractor.js +242 -0
  308. package/dist/knowledge/graph/edge-extractor.js.map +1 -0
  309. package/dist/knowledge/graph/impact.d.ts +73 -0
  310. package/dist/knowledge/graph/impact.d.ts.map +1 -0
  311. package/dist/knowledge/graph/impact.js +94 -0
  312. package/dist/knowledge/graph/impact.js.map +1 -0
  313. package/dist/knowledge/graph/types.d.ts +22 -0
  314. package/dist/knowledge/graph/types.d.ts.map +1 -0
  315. package/dist/knowledge/graph/types.js +13 -0
  316. package/dist/knowledge/graph/types.js.map +1 -0
  317. package/dist/knowledge/prompt.d.ts +9 -0
  318. package/dist/knowledge/prompt.d.ts.map +1 -1
  319. package/dist/knowledge/prompt.js +17 -5
  320. package/dist/knowledge/prompt.js.map +1 -1
  321. package/dist/knowledge/query.d.ts +13 -0
  322. package/dist/knowledge/query.d.ts.map +1 -1
  323. package/dist/knowledge/query.js +107 -10
  324. package/dist/knowledge/query.js.map +1 -1
  325. package/dist/knowledge/repo-map.d.ts +11 -5
  326. package/dist/knowledge/repo-map.d.ts.map +1 -1
  327. package/dist/knowledge/repo-map.js +42 -3
  328. package/dist/knowledge/repo-map.js.map +1 -1
  329. package/dist/knowledge/validator.d.ts.map +1 -1
  330. package/dist/knowledge/validator.js +69 -2
  331. package/dist/knowledge/validator.js.map +1 -1
  332. package/dist/mcp/server.d.ts +64 -8
  333. package/dist/mcp/server.d.ts.map +1 -1
  334. package/dist/mcp/server.js +233 -18
  335. package/dist/mcp/server.js.map +1 -1
  336. package/dist/skills/distill/distiller.js +1 -1
  337. package/dist/skills/distill/distiller.js.map +1 -1
  338. package/dist/skills/distilled/distilled-api-design.md +4 -0
  339. package/dist/skills/distilled/distilled-brainstorming.md +79 -0
  340. package/dist/skills/distilled/distilled-brand-guidelines.md +86 -0
  341. package/dist/skills/distilled/distilled-canvas-design.md +128 -0
  342. package/dist/skills/distilled/distilled-claude-api.md +185 -0
  343. package/dist/skills/distilled/distilled-creator.md +5 -2
  344. package/dist/skills/distilled/distilled-dispatching-parallel-agents.md +136 -0
  345. package/dist/skills/distilled/distilled-doc-coauthoring.md +144 -0
  346. package/dist/skills/distilled/distilled-docx.md +231 -0
  347. package/dist/skills/distilled/distilled-executing-plans.md +85 -50
  348. package/dist/skills/distilled/distilled-finishing-a-development-branch.md +213 -0
  349. package/dist/skills/distilled/distilled-frontend-design.md +118 -0
  350. package/dist/skills/distilled/distilled-harness-engineering.md +1 -1
  351. package/dist/skills/distilled/distilled-receiving-code-review.md +185 -0
  352. package/dist/skills/distilled/distilled-subagent-driven-development.md +124 -0
  353. package/dist/skills/distilled/distilled-systematic-debugging.md +108 -260
  354. package/dist/skills/distilled/distilled-test-driven-development.md +432 -0
  355. package/dist/skills/distilled/distilled-using-superpowers.md +134 -0
  356. package/dist/skills/distilled/distilled-verification-before-completion.md +88 -78
  357. package/dist/skills/distilled/distilled-writing-skills.md +175 -0
  358. package/dist/skills/registry.d.ts +10 -50
  359. package/dist/skills/registry.d.ts.map +1 -1
  360. package/dist/skills/registry.js +7 -118
  361. package/dist/skills/registry.js.map +1 -1
  362. package/dist/skills/tools/pipeline-suggest.js +2 -2
  363. package/dist/skills/tools/pipeline-suggest.js.map +1 -1
  364. package/dist/skills/tools/skill-invoke.d.ts +2 -1
  365. package/dist/skills/tools/skill-invoke.d.ts.map +1 -1
  366. package/dist/skills/tools/skill-invoke.js +3 -1
  367. package/dist/skills/tools/skill-invoke.js.map +1 -1
  368. package/dist/web/analytics/anti-pattern-detector.d.ts.map +1 -1
  369. package/dist/web/analytics/anti-pattern-detector.js +6 -1
  370. package/dist/web/analytics/anti-pattern-detector.js.map +1 -1
  371. package/dist/web/analytics/drift-detector.d.ts +6 -0
  372. package/dist/web/analytics/drift-detector.d.ts.map +1 -1
  373. package/dist/web/analytics/drift-detector.js +15 -8
  374. package/dist/web/analytics/drift-detector.js.map +1 -1
  375. package/dist/web/analytics/weekly-report.d.ts +13 -0
  376. package/dist/web/analytics/weekly-report.d.ts.map +1 -1
  377. package/dist/web/analytics/weekly-report.js +17 -3
  378. package/dist/web/analytics/weekly-report.js.map +1 -1
  379. package/dist/web/routes/_helpers.d.ts +31 -0
  380. package/dist/web/routes/_helpers.d.ts.map +1 -1
  381. package/dist/web/routes/_helpers.js +33 -0
  382. package/dist/web/routes/_helpers.js.map +1 -1
  383. package/dist/web/routes/agent-distill.d.ts +49 -0
  384. package/dist/web/routes/agent-distill.d.ts.map +1 -0
  385. package/dist/web/routes/agent-distill.js +526 -0
  386. package/dist/web/routes/agent-distill.js.map +1 -0
  387. package/dist/web/routes/config.d.ts +56 -0
  388. package/dist/web/routes/config.d.ts.map +1 -0
  389. package/dist/web/routes/config.js +243 -0
  390. package/dist/web/routes/config.js.map +1 -0
  391. package/dist/web/routes/decisions.js +1 -1
  392. package/dist/web/routes/decisions.js.map +1 -1
  393. package/dist/web/routes/error-handler.d.ts +0 -4
  394. package/dist/web/routes/error-handler.d.ts.map +1 -1
  395. package/dist/web/routes/error-handler.js +0 -8
  396. package/dist/web/routes/error-handler.js.map +1 -1
  397. package/dist/web/routes/events.d.ts.map +1 -1
  398. package/dist/web/routes/events.js +2 -1
  399. package/dist/web/routes/events.js.map +1 -1
  400. package/dist/web/routes/insights.d.ts.map +1 -1
  401. package/dist/web/routes/insights.js +0 -0
  402. package/dist/web/routes/insights.js.map +1 -1
  403. package/dist/web/routes/knowledge.d.ts +43 -2
  404. package/dist/web/routes/knowledge.d.ts.map +1 -1
  405. package/dist/web/routes/knowledge.js +117 -6
  406. package/dist/web/routes/knowledge.js.map +1 -1
  407. package/dist/web/routes/pipeline.d.ts +0 -9
  408. package/dist/web/routes/pipeline.d.ts.map +1 -1
  409. package/dist/web/routes/pipeline.js +0 -4
  410. package/dist/web/routes/pipeline.js.map +1 -1
  411. package/dist/web/routes/rules.d.ts.map +1 -1
  412. package/dist/web/routes/rules.js +20 -6
  413. package/dist/web/routes/rules.js.map +1 -1
  414. package/dist/web/routes/sessions.d.ts.map +1 -1
  415. package/dist/web/routes/sessions.js +8 -7
  416. package/dist/web/routes/sessions.js.map +1 -1
  417. package/dist/web/routes/skill-stats.d.ts.map +1 -1
  418. package/dist/web/routes/skill-stats.js +153 -16
  419. package/dist/web/routes/skill-stats.js.map +1 -1
  420. package/dist/web/routes/skills-distill.js +1 -1
  421. package/dist/web/routes/skills-distill.js.map +1 -1
  422. package/dist/web/routes/stats.d.ts.map +1 -1
  423. package/dist/web/routes/stats.js +2 -1
  424. package/dist/web/routes/stats.js.map +1 -1
  425. package/dist/web/routes/task-timeline.d.ts +95 -19
  426. package/dist/web/routes/task-timeline.d.ts.map +1 -1
  427. package/dist/web/routes/task-timeline.js +344 -88
  428. package/dist/web/routes/task-timeline.js.map +1 -1
  429. package/dist/web/routes/tasks.d.ts.map +1 -1
  430. package/dist/web/routes/tasks.js +52 -30
  431. package/dist/web/routes/tasks.js.map +1 -1
  432. package/dist/web/routes/violations.d.ts +1 -1
  433. package/dist/web/routes/violations.d.ts.map +1 -1
  434. package/dist/web/routes/violations.js +3 -2
  435. package/dist/web/routes/violations.js.map +1 -1
  436. package/dist/web/server.d.ts.map +1 -1
  437. package/dist/web/server.js +20 -0
  438. package/dist/web/server.js.map +1 -1
  439. package/dist/web/services/agent-distill-manager.d.ts +122 -0
  440. package/dist/web/services/agent-distill-manager.d.ts.map +1 -0
  441. package/dist/web/services/agent-distill-manager.js +397 -0
  442. package/dist/web/services/agent-distill-manager.js.map +1 -0
  443. package/dist/web/services/distill-manager.d.ts +47 -0
  444. package/dist/web/services/distill-manager.d.ts.map +1 -1
  445. package/dist/web/services/distill-manager.js +103 -0
  446. package/dist/web/services/distill-manager.js.map +1 -1
  447. package/dist/web/static/assets/AgentDetailPage-DlUeA1sX.js +2 -0
  448. package/dist/web/static/assets/AgentDetailPage-DlUeA1sX.js.map +1 -0
  449. package/dist/web/static/assets/AgentDistillRunPage-Cybo4bii.js +3 -0
  450. package/dist/web/static/assets/AgentDistillRunPage-Cybo4bii.js.map +1 -0
  451. package/dist/web/static/assets/AgentsPage-Qd9FExLG.js +2 -0
  452. package/dist/web/static/assets/AgentsPage-Qd9FExLG.js.map +1 -0
  453. package/dist/web/static/assets/DaemonHealthPage-DTSVqtrI.js +2 -0
  454. package/dist/web/static/assets/DaemonHealthPage-DTSVqtrI.js.map +1 -0
  455. package/dist/web/static/assets/DecisionDetailPage-b4BA8dhc.js +2 -0
  456. package/dist/web/static/assets/DecisionDetailPage-b4BA8dhc.js.map +1 -0
  457. package/dist/web/static/assets/DecisionsPage-a3NRo_T7.js +2 -0
  458. package/dist/web/static/assets/DecisionsPage-a3NRo_T7.js.map +1 -0
  459. package/dist/web/static/assets/DiagnosticsPage-DIVdiIQG.js +2 -0
  460. package/dist/web/static/assets/DiagnosticsPage-DIVdiIQG.js.map +1 -0
  461. package/dist/web/static/assets/DistillDetailPage-U6a3l2iP.js +4 -0
  462. package/dist/web/static/assets/DistillDetailPage-U6a3l2iP.js.map +1 -0
  463. package/dist/web/static/assets/DistillPage-O7BHtRN8.js +2 -0
  464. package/dist/web/static/assets/DistillPage-O7BHtRN8.js.map +1 -0
  465. package/dist/web/static/assets/DistillRunPage-D1JuRWWr.js +2 -0
  466. package/dist/web/static/assets/DistillRunPage-D1JuRWWr.js.map +1 -0
  467. package/dist/web/static/assets/GlobalScopeHint-Q3wTJx3F.js +2 -0
  468. package/dist/web/static/assets/GlobalScopeHint-Q3wTJx3F.js.map +1 -0
  469. package/dist/web/static/assets/IssueDetailPage-BDfrtk2C.js +2 -0
  470. package/dist/web/static/assets/IssueDetailPage-BDfrtk2C.js.map +1 -0
  471. package/dist/web/static/assets/IssuesPage-SKmhlCrw.js +2 -0
  472. package/dist/web/static/assets/IssuesPage-SKmhlCrw.js.map +1 -0
  473. package/dist/web/static/assets/KbDetailPage-Yna86Na8.js +2 -0
  474. package/dist/web/static/assets/KbDetailPage-Yna86Na8.js.map +1 -0
  475. package/dist/web/static/assets/KbHitsPage-Cljl7H9p.js +2 -0
  476. package/dist/web/static/assets/KbHitsPage-Cljl7H9p.js.map +1 -0
  477. package/dist/web/static/assets/{MarkdownRenderer-DZmTl-8J.js → MarkdownRenderer-DlDQNihj.js} +2 -2
  478. package/dist/web/static/assets/{MarkdownRenderer-DZmTl-8J.js.map → MarkdownRenderer-DlDQNihj.js.map} +1 -1
  479. package/dist/web/static/assets/NotFound-LMzbP51V.js +2 -0
  480. package/dist/web/static/assets/{NotFound-BQPh0vaF.js.map → NotFound-LMzbP51V.js.map} +1 -1
  481. package/dist/web/static/assets/SettingsPage-DzoK4PKg.js +2 -0
  482. package/dist/web/static/assets/SettingsPage-DzoK4PKg.js.map +1 -0
  483. package/dist/web/static/assets/SkillDetailPage-BuBJJ_NX.js +2 -0
  484. package/dist/web/static/assets/SkillDetailPage-BuBJJ_NX.js.map +1 -0
  485. package/dist/web/static/assets/SkillsPage-aojkJpBc.js +2 -0
  486. package/dist/web/static/assets/SkillsPage-aojkJpBc.js.map +1 -0
  487. package/dist/web/static/assets/TaskDetailPage-1ckxnGhw.js +4 -0
  488. package/dist/web/static/assets/TaskDetailPage-1ckxnGhw.js.map +1 -0
  489. package/dist/web/static/assets/TasksHubPage-C2PLh3eg.js +6 -0
  490. package/dist/web/static/assets/TasksHubPage-C2PLh3eg.js.map +1 -0
  491. package/dist/web/static/assets/WorkplacePage-DHrp5VxS.js +2 -0
  492. package/dist/web/static/assets/WorkplacePage-DHrp5VxS.js.map +1 -0
  493. package/dist/web/static/assets/arco-DV6xCLhr.js +14 -0
  494. package/dist/web/static/assets/arco-DV6xCLhr.js.map +1 -0
  495. package/dist/web/static/assets/charts-BSV4cyC4.js +37 -0
  496. package/dist/web/static/assets/charts-BSV4cyC4.js.map +1 -0
  497. package/dist/web/static/assets/{index-7bl3kbcx.css → index-B_v_MKlb.css} +1 -1
  498. package/dist/web/static/assets/index-DileOOE4.js +4 -0
  499. package/dist/web/static/assets/index-DileOOE4.js.map +1 -0
  500. package/dist/web/static/assets/markdown-CA7ePUts.js +30 -0
  501. package/dist/web/static/assets/markdown-CA7ePUts.js.map +1 -0
  502. package/dist/web/static/assets/{outcome-DUn1NjlC.js → outcome-BKGy9azt.js} +2 -2
  503. package/dist/web/static/assets/{outcome-DUn1NjlC.js.map → outcome-BKGy9azt.js.map} +1 -1
  504. package/dist/web/static/assets/{query-S6X1S7K9.js → query-CgCOpYWf.js} +2 -2
  505. package/dist/web/static/assets/{query-S6X1S7K9.js.map → query-CgCOpYWf.js.map} +1 -1
  506. package/dist/web/static/assets/{react-router-JVUrkhdd.js → react-router-Cxmg8RuL.js} +3 -3
  507. package/dist/web/static/assets/{react-router-JVUrkhdd.js.map → react-router-Cxmg8RuL.js.map} +1 -1
  508. package/dist/web/static/assets/{syntax-highlighter-BkZfCDsz.js → syntax-highlighter-BDYycNja.js} +3 -3
  509. package/dist/web/static/assets/{syntax-highlighter-BkZfCDsz.js.map → syntax-highlighter-BDYycNja.js.map} +1 -1
  510. package/dist/web/static/assets/task-title-BhOcemuR.js +2 -0
  511. package/dist/web/static/assets/task-title-BhOcemuR.js.map +1 -0
  512. package/dist/web/static/assets/useAgentStats-B-uTgqBd.js +2 -0
  513. package/dist/web/static/assets/useAgentStats-B-uTgqBd.js.map +1 -0
  514. package/dist/web/static/assets/useDecisions-D-G2Ft5T.js +2 -0
  515. package/dist/web/static/assets/useDecisions-D-G2Ft5T.js.map +1 -0
  516. package/dist/web/static/assets/useDistill-21dZkXlT.js +3 -0
  517. package/dist/web/static/assets/useDistill-21dZkXlT.js.map +1 -0
  518. package/dist/web/static/assets/useEffectiveProject-DQiyX54y.js +2 -0
  519. package/dist/web/static/assets/useEffectiveProject-DQiyX54y.js.map +1 -0
  520. package/dist/web/static/assets/useIssuesFeed-CFiyQkAL.js +2 -0
  521. package/dist/web/static/assets/useIssuesFeed-CFiyQkAL.js.map +1 -0
  522. package/dist/web/static/assets/useKbHits-xKXWgqh9.js +2 -0
  523. package/dist/web/static/assets/useKbHits-xKXWgqh9.js.map +1 -0
  524. package/dist/web/static/assets/useSkillStats-B5hbIwdf.js +2 -0
  525. package/dist/web/static/assets/useSkillStats-B5hbIwdf.js.map +1 -0
  526. package/dist/web/static/assets/vendor-DS-q4Eyc.js +36 -0
  527. package/dist/web/static/assets/vendor-DS-q4Eyc.js.map +1 -0
  528. package/dist/web/static/index.html +6 -6
  529. package/package.json +5 -3
  530. package/dist/core/storage/workflow-recommendations.d.ts +0 -124
  531. package/dist/core/storage/workflow-recommendations.d.ts.map +0 -1
  532. package/dist/core/storage/workflow-recommendations.js +0 -274
  533. package/dist/core/storage/workflow-recommendations.js.map +0 -1
  534. package/dist/daemon/services/experience-extractor.d.ts.map +0 -1
  535. package/dist/daemon/services/experience-extractor.js.map +0 -1
  536. package/dist/daemon/services/violation-reporter.d.ts.map +0 -1
  537. package/dist/daemon/services/violation-reporter.js.map +0 -1
  538. package/dist/daemon/templates/agents/harness-hotfix.md +0 -99
  539. package/dist/daemon/templates/agents/hybrid-feature-with-safety.md +0 -104
  540. package/dist/daemon/templates/agents/refactor-specialist.md +0 -98
  541. package/dist/skills/distill/claude-cli-resolver.d.ts.map +0 -1
  542. package/dist/skills/distill/claude-cli-resolver.js.map +0 -1
  543. package/dist/skills/distilled/distilled-defi-amm-security.md +0 -293
  544. package/dist/skills/keyword-score.d.ts +0 -29
  545. package/dist/skills/keyword-score.d.ts.map +0 -1
  546. package/dist/skills/keyword-score.js +0 -54
  547. package/dist/skills/keyword-score.js.map +0 -1
  548. package/dist/web/static/assets/AgentContentPage-DkeRNxok.js +0 -2
  549. package/dist/web/static/assets/AgentContentPage-DkeRNxok.js.map +0 -1
  550. package/dist/web/static/assets/AgentDelegationTable-ByBa0x1l.js +0 -2
  551. package/dist/web/static/assets/AgentDelegationTable-ByBa0x1l.js.map +0 -1
  552. package/dist/web/static/assets/ContextInsightsPage-oUk7_I8u.js +0 -3
  553. package/dist/web/static/assets/ContextInsightsPage-oUk7_I8u.js.map +0 -1
  554. package/dist/web/static/assets/DaemonHealthPage-DG2fyOP7.js +0 -2
  555. package/dist/web/static/assets/DaemonHealthPage-DG2fyOP7.js.map +0 -1
  556. package/dist/web/static/assets/DecisionsPage-CMAPEnKb.js +0 -2
  557. package/dist/web/static/assets/DecisionsPage-CMAPEnKb.js.map +0 -1
  558. package/dist/web/static/assets/DiagnosticsPage-DQd-Zm4r.js +0 -2
  559. package/dist/web/static/assets/DiagnosticsPage-DQd-Zm4r.js.map +0 -1
  560. package/dist/web/static/assets/DriftTab-DqpepOhI.js +0 -2
  561. package/dist/web/static/assets/DriftTab-DqpepOhI.js.map +0 -1
  562. package/dist/web/static/assets/HealthHomePage-CN6zNIie.js +0 -3
  563. package/dist/web/static/assets/HealthHomePage-CN6zNIie.js.map +0 -1
  564. package/dist/web/static/assets/KbHitRateTable-ByEIWujF.js +0 -2
  565. package/dist/web/static/assets/KbHitRateTable-ByEIWujF.js.map +0 -1
  566. package/dist/web/static/assets/NotFound-BQPh0vaF.js +0 -2
  567. package/dist/web/static/assets/ProjectSwitcher-D3lZMFd3.js +0 -2
  568. package/dist/web/static/assets/ProjectSwitcher-D3lZMFd3.js.map +0 -1
  569. package/dist/web/static/assets/SettingsPage-oLJBNzQj.js +0 -2
  570. package/dist/web/static/assets/SettingsPage-oLJBNzQj.js.map +0 -1
  571. package/dist/web/static/assets/SkillContentPage-DK5rgfgw.js +0 -2
  572. package/dist/web/static/assets/SkillContentPage-DK5rgfgw.js.map +0 -1
  573. package/dist/web/static/assets/SkillStatsTable-DYMzjEUV.js +0 -2
  574. package/dist/web/static/assets/SkillStatsTable-DYMzjEUV.js.map +0 -1
  575. package/dist/web/static/assets/SkillsDistillTab-C7qaG8q3.js +0 -2
  576. package/dist/web/static/assets/SkillsDistillTab-C7qaG8q3.js.map +0 -1
  577. package/dist/web/static/assets/TasksHubPage-03wsRRsJ.js +0 -6
  578. package/dist/web/static/assets/TasksHubPage-03wsRRsJ.js.map +0 -1
  579. package/dist/web/static/assets/ViolationsPage-DSiLr-9O.js +0 -3
  580. package/dist/web/static/assets/ViolationsPage-DSiLr-9O.js.map +0 -1
  581. package/dist/web/static/assets/arco-Bhi3a6Qp.js +0 -14
  582. package/dist/web/static/assets/arco-Bhi3a6Qp.js.map +0 -1
  583. package/dist/web/static/assets/charts-BuHQWDbQ.js +0 -37
  584. package/dist/web/static/assets/charts-BuHQWDbQ.js.map +0 -1
  585. package/dist/web/static/assets/index-BIYnq1Dx.js +0 -4
  586. package/dist/web/static/assets/index-BIYnq1Dx.js.map +0 -1
  587. package/dist/web/static/assets/useTabsParam-k8qte_0C.js +0 -2
  588. package/dist/web/static/assets/useTabsParam-k8qte_0C.js.map +0 -1
  589. package/dist/web/static/assets/vendor-DWgdB1eY.js +0 -65
  590. package/dist/web/static/assets/vendor-DWgdB1eY.js.map +0 -1
  591. /package/dist/{skills/distill → core/utils}/claude-cli-resolver.d.ts +0 -0
@@ -10,110 +10,110 @@ rubric_version: 2
10
10
  distilled_from:
11
11
  - upstream: https://github.com/obra/superpowers.git
12
12
  license: MIT
13
- commit: unknown
13
+ commit: f2cbfbefebbfef77321e4c9abc9e949826bea9d7
14
14
  paths:
15
15
  - verification-before-completion/SKILL.md
16
16
  - upstream: https://github.com/affaan-m/ECC.git
17
17
  license: MIT
18
- commit: unknown
18
+ commit: 928076cc08cbb31e8549cea2883b4f51811de1c8
19
19
  paths:
20
20
  - django-verification/SKILL.md
21
21
  - upstream: https://github.com/affaan-m/ECC.git
22
22
  license: MIT
23
- commit: unknown
23
+ commit: 928076cc08cbb31e8549cea2883b4f51811de1c8
24
24
  paths:
25
25
  - laravel-verification/SKILL.md
26
26
  - upstream: https://github.com/affaan-m/ECC.git
27
27
  license: MIT
28
- commit: unknown
28
+ commit: 928076cc08cbb31e8549cea2883b4f51811de1c8
29
29
  paths:
30
30
  - quarkus-verification/SKILL.md
31
31
  - upstream: https://github.com/affaan-m/ECC.git
32
32
  license: MIT
33
- commit: unknown
33
+ commit: 928076cc08cbb31e8549cea2883b4f51811de1c8
34
34
  paths:
35
35
  - springboot-verification/SKILL.md
36
36
  - upstream: https://github.com/affaan-m/ECC.git
37
37
  license: MIT
38
- commit: unknown
38
+ commit: 928076cc08cbb31e8549cea2883b4f51811de1c8
39
39
  paths:
40
40
  - verification-loop/SKILL.md
41
41
  - upstream: https://github.com/affaan-m/ECC.git
42
42
  license: MIT
43
- commit: unknown
43
+ commit: 928076cc08cbb31e8549cea2883b4f51811de1c8
44
44
  paths:
45
45
  - verification-loop/SKILL.md
46
46
  - upstream: https://github.com/affaan-m/ECC.git
47
47
  license: MIT
48
- commit: unknown
48
+ commit: 928076cc08cbb31e8549cea2883b4f51811de1c8
49
49
  paths:
50
50
  - laravel-verification/SKILL.md
51
51
  - upstream: https://github.com/affaan-m/ECC.git
52
52
  license: MIT
53
- commit: unknown
53
+ commit: 928076cc08cbb31e8549cea2883b4f51811de1c8
54
54
  paths:
55
55
  - quarkus-verification/SKILL.md
56
56
  - upstream: https://github.com/affaan-m/ECC.git
57
57
  license: MIT
58
- commit: unknown
58
+ commit: 928076cc08cbb31e8549cea2883b4f51811de1c8
59
59
  paths:
60
60
  - springboot-verification/SKILL.md
61
61
  - upstream: https://github.com/affaan-m/ECC.git
62
62
  license: MIT
63
- commit: unknown
63
+ commit: 928076cc08cbb31e8549cea2883b4f51811de1c8
64
64
  paths:
65
65
  - verification-loop/SKILL.md
66
66
  - upstream: https://github.com/affaan-m/ECC.git
67
67
  license: MIT
68
- commit: unknown
68
+ commit: 928076cc08cbb31e8549cea2883b4f51811de1c8
69
69
  paths:
70
70
  - django-verification/SKILL.md
71
71
  - upstream: https://github.com/affaan-m/ECC.git
72
72
  license: MIT
73
- commit: unknown
73
+ commit: 928076cc08cbb31e8549cea2883b4f51811de1c8
74
74
  paths:
75
75
  - laravel-verification/SKILL.md
76
76
  - upstream: https://github.com/affaan-m/ECC.git
77
77
  license: MIT
78
- commit: unknown
78
+ commit: 928076cc08cbb31e8549cea2883b4f51811de1c8
79
79
  paths:
80
80
  - springboot-verification/SKILL.md
81
81
  - upstream: https://github.com/affaan-m/ECC.git
82
82
  license: MIT
83
- commit: unknown
83
+ commit: 928076cc08cbb31e8549cea2883b4f51811de1c8
84
84
  paths:
85
85
  - verification-loop/SKILL.md
86
86
  - upstream: https://github.com/affaan-m/ECC.git
87
87
  license: MIT
88
- commit: unknown
88
+ commit: 928076cc08cbb31e8549cea2883b4f51811de1c8
89
89
  paths:
90
90
  - verification-loop/SKILL.md
91
91
  - upstream: https://github.com/affaan-m/ECC.git
92
92
  license: MIT
93
- commit: unknown
93
+ commit: 928076cc08cbb31e8549cea2883b4f51811de1c8
94
94
  paths:
95
95
  - django-verification/SKILL.md
96
96
  - upstream: https://github.com/affaan-m/ECC.git
97
97
  license: MIT
98
- commit: unknown
98
+ commit: 928076cc08cbb31e8549cea2883b4f51811de1c8
99
99
  paths:
100
100
  - laravel-verification/SKILL.md
101
101
  - upstream: https://github.com/affaan-m/ECC.git
102
102
  license: MIT
103
- commit: unknown
103
+ commit: 928076cc08cbb31e8549cea2883b4f51811de1c8
104
104
  paths:
105
105
  - quarkus-verification/SKILL.md
106
106
  - upstream: https://github.com/affaan-m/ECC.git
107
107
  license: MIT
108
- commit: unknown
108
+ commit: 928076cc08cbb31e8549cea2883b4f51811de1c8
109
109
  paths:
110
110
  - springboot-verification/SKILL.md
111
111
  - upstream: https://github.com/affaan-m/ECC.git
112
112
  license: MIT
113
- commit: unknown
113
+ commit: 928076cc08cbb31e8549cea2883b4f51811de1c8
114
114
  paths:
115
115
  - verification-loop/SKILL.md
116
- distilled_at: '2026-05-29T08:11:27.303Z'
116
+ distilled_at: '2026-06-15T00:59:08.307Z'
117
117
  distilled_by: claude-code skill-distiller agent
118
118
  it_universal_score: 5
119
119
  it_universal_dims:
@@ -123,81 +123,91 @@ it_universal_dims:
123
123
  d4: 1
124
124
  d5: 1
125
125
  it_universal_rationale: >-
126
- Purely behavioral/process methodology with no language, toolchain, or repo-structure dependencies
127
- applies identically to any codebase or project.
126
+ Language-neutral, tool-chain-neutral verification discipline with zero repo-specific references;
127
+ the Gate Function and rationalization tables transfer directly to any codebase or workflow.
128
128
  ---
129
129
 
130
130
  # Verification Before Completion
131
131
 
132
132
  ## When to use
133
- - Before claiming any work is "done", "fixed", "passing", or "complete"
134
- - Before committing, pushing, or opening a pull request
135
- - Before expressing satisfaction ("Great!", "Done!", "All good!")
136
- - Before delegating to another agent and trusting its self-report
137
- - Before moving to the next task in any project
133
+ - Before claiming "tests pass", "build succeeds", "bug is fixed", or "done"
134
+ - Before committing, opening a PR, or marking a task complete
135
+ - Before expressing any satisfaction or moving to the next task
136
+ - After delegating work to a sub-agent that reports success
138
137
 
139
138
  ## Core idea
140
139
 
141
- Claiming success without fresh evidence is dishonest, not efficient. The only valid
142
- basis for a completion claim is the **output you just read** from a verification
143
- command you **just ran**. Prior runs, intuition, and agent self-reports are not
144
- evidence. This is a non-negotiable gate: run → read → claim, in that order, with no
145
- shortcuts. The rule applies to exact phrases, paraphrases, and any implication of
146
- correctness — "spirit over letter" means rewording the claim doesn't escape the rule.
140
+ Claiming work is complete without fresh evidence is dishonesty, not efficiency. The only valid basis for a success claim is the **actual output of the relevant command run in the current context**. Prior runs, agent self-reports, confidence, and partial checks are not substitutes. Every rationalization for skipping verification is a known failure mode; name it, then reject it.
147
141
 
148
- ## Steps
142
+ The rule applies to exact phrases, paraphrases, and any implication of success — spirit over letter.
149
143
 
150
- **The Gate Function — execute before any success claim:**
144
+ ## The Gate Function
151
145
 
152
- 1. **IDENTIFY** What command proves this specific claim? Name it explicitly.
153
- 2. **RUN** — Execute the full command now, in this message, fresh.
154
- 3. **READ** — Read the complete output; check exit code; count failures.
155
- 4. **VERIFY** — Does the output actually confirm the claim?
156
- - If NO state the actual status with the evidence you have
157
- - If YES continue to step 5
158
- 5. **CLAIM** State the claim and quote or cite the confirming output.
146
+ Before making **any** status claim or completion statement, execute all five steps:
147
+
148
+ 1. **IDENTIFY** — What command produces evidence for this claim?
149
+ 2. **RUN** — Execute it fully (no cached output, no partial scope)
150
+ 3. **READ** Examine the complete output; check exit code; count failures
151
+ 4. **VERIFY** Does the output confirm the claim?
152
+ - If NO state actual status with the evidence
153
+ - If YES → state the claim *with* the evidence attached
154
+ 5. **THEN** — Only now make the claim
159
155
 
160
156
  Skipping any step = asserting without evidence.
161
157
 
162
- **TDD Red-Green cycle (regression tests):**
163
- 1. Write the regression test
164
- 2. Run it must **pass** against the fixed code
165
- 3. Temporarily revert the fix → run again → must **fail**
166
- 4. Restore the fix run again must **pass**
167
- 5. Only now claim "regression test verified"
158
+ ## Common Claim Required Evidence
159
+
160
+ | Claim | What actually proves it | What does NOT prove it |
161
+ |---|---|---|
162
+ | Tests pass | Test runner: 0 failures, 0 errors | Previous run; "should pass" |
163
+ | Linter clean | Linter output: 0 issues | Partial file check |
164
+ | Build succeeds | Build command exits 0 | Linter passing; logs look fine |
165
+ | Bug fixed | Original symptom reproduced and passes | Code changed; assumed fixed |
166
+ | Regression test valid | Red → Green cycle verified | Test written but not inverted |
167
+ | Agent completed task | VCS diff shows expected changes | Agent reports "success" |
168
+ | Requirements met | Line-by-line checklist verified | All tests passing |
169
+
170
+ ## Red Flags — Stop Immediately
171
+
172
+ - Hedging words: "should", "probably", "seems to", "I think"
173
+ - Expressing satisfaction before running verification ("Great!", "Done!", "Perfect!")
174
+ - About to commit or push without having run the check
175
+ - Trusting a delegated agent's self-report without inspecting artifacts
176
+ - Reasoning "partial check is sufficient"
177
+ - Feeling tired and wanting the work to be over
178
+
179
+ ## Rationalization Table
180
+
181
+ | Excuse heard | Correct response |
182
+ |---|---|
183
+ | "Should work now" | RUN the command |
184
+ | "I'm confident" | Confidence ≠ evidence |
185
+ | "Just this once" | No exceptions |
186
+ | "Linter passed" | Linter ≠ compiler |
187
+ | "Agent said success" | Verify independently via VCS diff |
188
+ | "Partial check is enough" | Partial proves nothing |
189
+ | "Different words, rule doesn't apply" | Spirit over letter |
190
+
191
+ ## Steps (TDD Red-Green Pattern)
192
+
193
+ When writing a regression test, full verification requires a **red-green cycle**:
168
194
 
169
- ## Common failure patterns
195
+ 1. Write the test
196
+ 2. Run → must **pass** (green, with fix in place)
197
+ 3. Temporarily revert the fix
198
+ 4. Run → must **fail** (red — confirms test is meaningful)
199
+ 5. Restore fix
200
+ 6. Run → must **pass** again
170
201
 
171
- | Claim | Requires | Not sufficient |
172
- |-------|----------|----------------|
173
- | "Tests pass" | Test runner output: 0 failures | Previous run / "should pass" |
174
- | "Linter clean" | Linter output: 0 errors | Partial check / extrapolation |
175
- | "Build succeeds" | Build command: exit 0 | Linter passing / logs look good |
176
- | "Bug fixed" | Original symptom reproduced and passes | Code changed, assumed fixed |
177
- | "Agent completed" | VCS diff shows expected changes | Agent self-report of success |
178
- | "Requirements met" | Line-by-line checklist against spec | Tests passing alone |
202
+ Skipping the red phase means the test may not actually catch the bug.
179
203
 
180
204
  ## Anti-patterns
181
205
 
182
- - **Hedging language as a loophole**: "should work", "probably passes", "seems fine"
183
- these are completion claims without evidence, not honest uncertainty.
184
- - **Trusting agent success reports**: sub-agents have no penalty for false positives;
185
- always verify independently via diff or re-running the command yourself.
186
- - **Partial verification**: linter passing compiler passing tests passing
187
- requirements met. Each claim needs its own command.
188
- - **Fatigue exceptions**: exhaustion is not a reason to skip verification; it is
189
- exactly when false-positive claims are most likely.
190
- - **"Just this once"**: there are no exceptions; the first exception breaks the trust
191
- the rule is designed to protect.
192
- - **Rationalization table** (internal check before claiming):
193
-
194
- | Excuse | Correct response |
195
- |--------|-----------------|
196
- | "I'm confident" | Confidence ≠ evidence — run the command |
197
- | "Linter passed" | Linter ≠ compiler — run the build |
198
- | "Agent said success" | Verify independently |
199
- | "Partial check is enough" | Partial proves nothing |
200
- | "Different words so rule doesn't apply" | Spirit over letter |
206
+ - Claiming success based on a run from an earlier message or session
207
+ - Saying "looks good" after reading code without executing it
208
+ - Committing in the same step as implementation without a separate verify step
209
+ - Conflating "agent reports done" with "work is verified done"
210
+ - Using softer phrasing ("it appears to be working") to sidestep the rule — the spirit still applies
201
211
 
202
212
  ## References
203
213
  - Upstream: https://github.com/obra/superpowers.git
@@ -0,0 +1,175 @@
1
+ ---
2
+ name: distilled-writing-skills
3
+ version: 0.2.0-distilled
4
+ description: 'Distilled IT-universal skill: writing-skills (score 4/5)'
5
+ keywords:
6
+ - writing
7
+ - skills
8
+ rubric_version: 2
9
+ distilled_from:
10
+ - upstream: https://github.com/obra/superpowers.git
11
+ license: MIT
12
+ commit: f2cbfbefebbfef77321e4c9abc9e949826bea9d7
13
+ paths:
14
+ - writing-skills/SKILL.md
15
+ distilled_at: '2026-06-15T01:00:38.805Z'
16
+ distilled_by: claude-code skill-distiller agent
17
+ it_universal_score: 4
18
+ it_universal_dims:
19
+ d1: 1
20
+ d2: 0.5
21
+ d3: 1
22
+ d4: 0.5
23
+ d5: 1
24
+ it_universal_rationale: >-
25
+ TDD-for-documentation methodology and description-field optimization (CSO) are language-neutral
26
+ and applicable to any AI agent skill authoring workflow, regardless of codebase or toolchain.
27
+ ---
28
+
29
+ # Writing Agent Skills (TDD for Process Documentation)
30
+
31
+ ## When to use
32
+ - Creating a new skill document for an AI agent
33
+ - Editing or refactoring an existing skill that agents seem to ignore
34
+ - Verifying a skill actually changes agent behavior before deploying it
35
+ - Debugging why an agent skips or misreads a skill (description optimization)
36
+ - Deciding whether something belongs in a skill vs. a repo-level convention file
37
+
38
+ ## Core idea
39
+
40
+ Writing skills is **TDD applied to process documentation**. Like software TDD, you first run
41
+ a baseline scenario (RED: watch the agent violate the rule *without* the skill), then write
42
+ the skill (GREEN: agent now complies), then close loopholes found through additional tests
43
+ (REFACTOR). If you skipped the baseline, you don't know whether the skill targets the real
44
+ failure mode. The key artifact is a `SKILL.md` with two critical elements: a precise
45
+ frontmatter `description` that drives **discovery**, and a concise body that drives
46
+ **compliance**. Both must be correct; a great body behind a misleading description is never
47
+ loaded.
48
+
49
+ ## Steps
50
+
51
+ ### 1. RED — establish baseline
52
+ Before writing anything, run a pressure scenario with a subagent. Document the exact
53
+ rationalizations the agent uses to justify the violation. These become the specific failure
54
+ modes the skill must address.
55
+
56
+ ### 2. Write the skill
57
+
58
+ Create `skills/<skill-name>/SKILL.md` (flat namespace; all skills live in one searchable
59
+ directory):
60
+
61
+ ```markdown
62
+ ---
63
+ name: Skill-Name-With-Hyphens
64
+ description: Use when [specific triggering conditions, symptoms, situations]
65
+ ---
66
+
67
+ # Skill Name
68
+
69
+ ## Overview
70
+ Core principle in 1-2 sentences.
71
+
72
+ ## When to Use
73
+ - Symptom A
74
+ - Symptom B
75
+ - NOT when: [counter-indicators]
76
+
77
+ ## Core Pattern
78
+ Before/after comparison or concrete steps.
79
+
80
+ ## Common Mistakes
81
+ What goes wrong + fixes.
82
+ ```
83
+
84
+ **Frontmatter rules:**
85
+ - `name`: letters, numbers, hyphens only (no parentheses or special chars)
86
+ - `description`: **triggering conditions only** — see §Description Anti-patterns below
87
+ - Total frontmatter ≤ 1 024 characters
88
+
89
+ ### 3. GREEN — verify compliance
90
+ Re-run the same pressure scenario with the skill present. Agent should comply. If it still
91
+ violates, sharpen the `description` or tighten the body.
92
+
93
+ ### 4. REFACTOR — close loopholes
94
+ Observe new rationalizations the agent invents. Plug each one. Repeat until no new failure
95
+ modes emerge.
96
+
97
+ ## Description Anti-patterns — CSO Critical
98
+
99
+ The `description` field is how an agent decides *whether to load* the skill at all. A bad
100
+ description is the #1 reason skills are ignored.
101
+
102
+ > **Rule: Description = When to Use. NOT What the Skill Does.**
103
+
104
+ If the description summarises the skill's workflow, the agent may follow that summary
105
+ *instead of* reading the full body. Observed failure: description said "code review between
106
+ tasks" → agent did ONE review and never consulted the two-stage flowchart in the body.
107
+
108
+ ```yaml
109
+ # ❌ BAD: summarises workflow — agent skips body
110
+ description: Use when executing plans - dispatches subagent per task with review between tasks
111
+
112
+ # ❌ BAD: too much process detail
113
+ description: Use for TDD — write test first, watch it fail, write minimal code, refactor
114
+
115
+ # ✅ GOOD: triggering conditions only, no workflow
116
+ description: Use when executing implementation plans with independent tasks
117
+
118
+ # ✅ GOOD: problem-focused triggers
119
+ description: Use when tests have race conditions, timing dependencies, or pass/fail inconsistently
120
+ ```
121
+
122
+ Additional description rules:
123
+ - Start with `Use when…`
124
+ - Write in third person (injected into system prompts)
125
+ - Describe the *problem* (race conditions, inconsistent state), not language-specific
126
+ symptoms (unless the skill itself is tech-specific — then be explicit)
127
+ - Under 500 characters if possible
128
+
129
+ ## When NOT to create a skill
130
+
131
+ | Situation | Better home |
132
+ |---|---|
133
+ | One-off solution for a single task | Session notes / inline comment |
134
+ | Standard practice documented elsewhere | Link to that source |
135
+ | Repo-specific conventions | Your repo's convention file (e.g., `CLAUDE.md`, `AGENTS.md`) |
136
+ | Mechanical constraint enforceable by linting/CI | Automate it — save skills for judgment calls |
137
+
138
+ ## Token efficiency
139
+
140
+ Always-loaded skills consume context in **every conversation**. Keep them tight:
141
+
142
+ - Always-loaded / getting-started skills: < 150 words each
143
+ - Other frequently-loaded skills: < 500 words
144
+ - Move exhaustive flag lists to `--help`; reference the command rather than duplicating it
145
+ - Cross-reference other skills by name instead of repeating their content
146
+ - One excellent code example beats several mediocre ones
147
+
148
+ ## Naming conventions
149
+
150
+ Prefer **verb-first gerunds** — active, describes the action being taken:
151
+
152
+ | ✅ Good | ❌ Bad |
153
+ |---|---|
154
+ | `condition-based-waiting` | `async-test-helpers` |
155
+ | `root-cause-tracing` | `debugging-techniques` |
156
+ | `flatten-with-flags` | `data-structure-refactoring` |
157
+ | `creating-skills` | `skill-creation` |
158
+
159
+ ## Anti-patterns
160
+
161
+ - **Skipping baseline** — writing a skill without watching the agent fail first means you
162
+ don't know what failure mode you're actually solving
163
+ - **Workflow summary in description** — causes agent to follow the description shortcut
164
+ instead of reading the body
165
+ - **Over-documenting** — bloated skills inflate context cost and reduce compliance; every
166
+ word in a frequently-loaded skill has a runtime price
167
+ - **Project-specific content in skills** — repo paths, local tool names, environment
168
+ variables; these belong in your repo's convention file, not a reusable skill
169
+ - **Force-loading via direct file links (`@file`)** — burns context before it's needed;
170
+ reference skill names instead and let the agent decide when to load
171
+ - **Flowcharts for linear instructions** — use numbered lists; reserve flowcharts for
172
+ non-obvious decision branches where early exit is the common error
173
+
174
+ ## References
175
+ - Upstream: https://github.com/obra/superpowers.git
@@ -13,12 +13,10 @@ export interface Skill {
13
13
  isBuiltin?: boolean;
14
14
  description?: string;
15
15
  /**
16
- * Phase 7 — Skill ↔ Agent pairing.
17
- * When set, UserPromptHandler step 4 emits a "强烈建议 Task spawn <agent>"
18
- * directive AND writes a `workflow_recommendations` row (source='skill_pairing')
19
- * instead of injecting the skill content directly. The agent name MUST match
20
- * a `.claude/agents/<spawn_agent>.md` file so Phase 5's mismatch-deny rule
21
- * has a concrete target to enforce on PreToolUse.
16
+ * Phase 7 — Skill ↔ Agent pairing (frontmatter field, parse-only).
17
+ * The push-injection path that consumed this (skill_pairing directive +
18
+ * workflow_recommendations write) was deleted with spec 1200 / decision
19
+ * fe6f98cd; the field is still parsed so frontmatter round-trips cleanly.
22
20
  */
23
21
  spawn_agent?: string;
24
22
  /**
@@ -41,9 +39,12 @@ export interface Skill {
41
39
  * `config.skill_matching.api_key` was removed from the `ForgeConfig` JSON
42
40
  * schema in D R-D; daemon still grep-warns the raw yaml on startup.
43
41
  *
44
- * BREAKING: users that previously enjoyed AI-powered semantic skill
45
- * recommendations now get keyword-only matching (the existing
46
- * `matchKeywords` fallback, which already covered the unconfigured case).
42
+ * Dead-code removal (2026-06-10, decision ed98c8e8): the keyword-matching
43
+ * API (`match` / `matchWithConfidence` / `matchWithDetails` / private
44
+ * `matchKeywords`) and the keyword scoring helper file were deleted — the
45
+ * skill push route is gone; skills are now pull-only via MCP
46
+ * (`skill-list` / `skill-invoke`), which only need `getAll` / `get` /
47
+ * `getManifest` / `reload`.
47
48
  */
48
49
  export declare class SkillRegistry {
49
50
  private skills;
@@ -63,47 +64,6 @@ export declare class SkillRegistry {
63
64
  * 2. Directory: ~/.claude/skills/skill-name/SKILL.md (agent-skills format)
64
65
  */
65
66
  private scan;
66
- /**
67
- * Match a prompt against skill keywords.
68
- *
69
- * Post D R-B (spec 0902): semantic / AI matching has been removed. Only
70
- * the keyword path runs. The result `source` is therefore always
71
- * `'keyword'`.
72
- */
73
- match(prompt: string, keywords?: string[], context?: {
74
- recentFiles?: string[];
75
- }): Promise<Skill | null>;
76
- /**
77
- * Like match(), but also returns the confidence score (0-100) so callers
78
- * can compare across alternatives (e.g. agent vs skill routing).
79
- *
80
- * Post D R-B: only keyword matching remains; `source` is always
81
- * `'keyword'`. The literal-union return type is preserved for caller
82
- * compatibility — `'semantic'` is no longer emitted but kept in the type
83
- * so older code paths that pattern-match on it still compile until R-D.
84
- */
85
- matchWithConfidence(prompt: string, keywords?: string[], context?: {
86
- recentFiles?: string[];
87
- }): Promise<{
88
- skill: Skill;
89
- confidence: number;
90
- source: 'semantic' | 'keyword';
91
- } | null>;
92
- /**
93
- * Keyword-based matching (fallback method)
94
- * Supports fallback to description-based substring matching when keywords are empty
95
- */
96
- private matchKeywords;
97
- /**
98
- * Match with full result details (for debugging/logging)
99
- */
100
- matchWithDetails(prompt: string, keywords?: string[], context?: {
101
- recentFiles?: string[];
102
- }): Promise<{
103
- skill: Skill;
104
- confidence: number;
105
- matchedKeywords: string[];
106
- }[]>;
107
67
  /** Return all loaded skills */
108
68
  getAll(): Skill[];
109
69
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"registry.d.ts","sourceRoot":"","sources":["../../src/skills/registry.ts"],"names":[],"mappings":"AAWA,MAAM,WAAW,KAAK;IACpB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,EAAE,CAAC;IACnB,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,MAAM,CAAC;IACb;;;;;OAKG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;;;;OAOG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;;OAKG;IACH,kBAAkB,CAAC,EAAE,MAAM,CAAC;CAC7B;AAED;;;;;;;;;;;;;;;GAeG;AACH,qBAAa,aAAa;IACxB,OAAO,CAAC,MAAM,CAAiC;;IAO/C;;;OAGG;IACH,OAAO,CAAC,mBAAmB;IAK3B;;;;;;;;OAQG;IACH,OAAO,CAAC,IAAI;IA6HZ;;;;;;OAMG;IACG,KAAK,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,GAAE,MAAM,EAAO,EAAE,OAAO,CAAC,EAAE;QAAE,WAAW,CAAC,EAAE,MAAM,EAAE,CAAA;KAAE,GAAG,OAAO,CAAC,KAAK,GAAG,IAAI,CAAC;IAKjH;;;;;;;;OAQG;IACG,mBAAmB,CACvB,MAAM,EAAE,MAAM,EACd,QAAQ,GAAE,MAAM,EAAO,EACvB,OAAO,CAAC,EAAE;QAAE,WAAW,CAAC,EAAE,MAAM,EAAE,CAAA;KAAE,GACnC,OAAO,CAAC;QAAE,KAAK,EAAE,KAAK,CAAC;QAAC,UAAU,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,UAAU,GAAG,SAAS,CAAA;KAAE,GAAG,IAAI,CAAC;IASvF;;;OAGG;YACW,aAAa;IA8D3B;;OAEG;IACG,gBAAgB,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,GAAE,MAAM,EAAO,EAAE,OAAO,CAAC,EAAE;QAAE,WAAW,CAAC,EAAE,MAAM,EAAE,CAAA;KAAE;;;;;IAkCpG,+BAA+B;IAC/B,MAAM,IAAI,KAAK,EAAE;IAIjB;;;;;;;OAOG;IACH,GAAG,CAAC,EAAE,EAAE,MAAM,GAAG,KAAK,GAAG,SAAS;IAIlC;;OAEG;IACH,WAAW,IAAI,KAAK,CAAC;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,WAAW,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,MAAM,EAAE,CAAA;KAAE,CAAC;IAS3F,mCAAmC;IACnC,MAAM,IAAI,IAAI;CAIf"}
1
+ {"version":3,"file":"registry.d.ts","sourceRoot":"","sources":["../../src/skills/registry.ts"],"names":[],"mappings":"AAUA,MAAM,WAAW,KAAK;IACpB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,EAAE,CAAC;IACnB,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,MAAM,CAAC;IACb;;;;;OAKG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;;OAKG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;;OAKG;IACH,kBAAkB,CAAC,EAAE,MAAM,CAAC;CAC7B;AAED;;;;;;;;;;;;;;;;;;GAkBG;AACH,qBAAa,aAAa;IACxB,OAAO,CAAC,MAAM,CAAiC;;IAO/C;;;OAGG;IACH,OAAO,CAAC,mBAAmB;IAK3B;;;;;;;;OAQG;IACH,OAAO,CAAC,IAAI;IA6HZ,+BAA+B;IAC/B,MAAM,IAAI,KAAK,EAAE;IAIjB;;;;;;;OAOG;IACH,GAAG,CAAC,EAAE,EAAE,MAAM,GAAG,KAAK,GAAG,SAAS;IAIlC;;OAEG;IACH,WAAW,IAAI,KAAK,CAAC;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,WAAW,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,MAAM,EAAE,CAAA;KAAE,CAAC;IAS3F,mCAAmC;IACnC,MAAM,IAAI,IAAI;CAIf"}