@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.
- package/DEVELOPMENT.md +80 -19
- package/README.md +13 -6
- package/dist/catalogs/agents.json +19 -24
- package/dist/catalogs/skills.json +139 -27
- package/dist/claudemd/templates/swarm-protocol.md +1 -1
- package/dist/cli/commands/agent.d.ts +169 -0
- package/dist/cli/commands/agent.d.ts.map +1 -0
- package/dist/cli/commands/agent.js +690 -0
- package/dist/cli/commands/agent.js.map +1 -0
- package/dist/cli/commands/codegraph.d.ts +17 -0
- package/dist/cli/commands/codegraph.d.ts.map +1 -0
- package/dist/cli/commands/codegraph.js +263 -0
- package/dist/cli/commands/codegraph.js.map +1 -0
- package/dist/cli/commands/decisions.d.ts.map +1 -1
- package/dist/cli/commands/decisions.js +46 -9
- package/dist/cli/commands/decisions.js.map +1 -1
- package/dist/cli/commands/executions.d.ts.map +1 -1
- package/dist/cli/commands/executions.js +2 -1
- package/dist/cli/commands/executions.js.map +1 -1
- package/dist/cli/commands/insights-goal-check.d.ts +5 -1
- package/dist/cli/commands/insights-goal-check.d.ts.map +1 -1
- package/dist/cli/commands/insights-goal-check.js +15 -15
- package/dist/cli/commands/insights-goal-check.js.map +1 -1
- package/dist/cli/commands/knowledge.d.ts +51 -0
- package/dist/cli/commands/knowledge.d.ts.map +1 -1
- package/dist/cli/commands/knowledge.js +202 -29
- package/dist/cli/commands/knowledge.js.map +1 -1
- package/dist/cli/commands/loop.d.ts +95 -0
- package/dist/cli/commands/loop.d.ts.map +1 -0
- package/dist/cli/commands/loop.js +408 -0
- package/dist/cli/commands/loop.js.map +1 -0
- package/dist/cli/commands/maintenance.d.ts +33 -0
- package/dist/cli/commands/maintenance.d.ts.map +1 -0
- package/dist/cli/commands/maintenance.js +75 -0
- package/dist/cli/commands/maintenance.js.map +1 -0
- package/dist/cli/commands/mcp.d.ts +23 -0
- package/dist/cli/commands/mcp.d.ts.map +1 -1
- package/dist/cli/commands/mcp.js +82 -0
- package/dist/cli/commands/mcp.js.map +1 -1
- package/dist/cli/commands/skills.d.ts +131 -0
- package/dist/cli/commands/skills.d.ts.map +1 -1
- package/dist/cli/commands/skills.js +409 -9
- package/dist/cli/commands/skills.js.map +1 -1
- package/dist/cli/commands/stats.d.ts.map +1 -1
- package/dist/cli/commands/stats.js +9 -2
- package/dist/cli/commands/stats.js.map +1 -1
- package/dist/cli/index.js +8 -0
- package/dist/cli/index.js.map +1 -1
- package/dist/core/constants.d.ts +37 -0
- package/dist/core/constants.d.ts.map +1 -1
- package/dist/core/constants.js +43 -0
- package/dist/core/constants.js.map +1 -1
- package/dist/core/diagnostics/checks.d.ts.map +1 -1
- package/dist/core/diagnostics/checks.js +2 -1
- package/dist/core/diagnostics/checks.js.map +1 -1
- package/dist/core/diagnostics/daemon-status.d.ts +1 -1
- package/dist/core/diagnostics/daemon-status.d.ts.map +1 -1
- package/dist/core/diagnostics/daemon-status.js +1 -1
- package/dist/core/diagnostics/daemon-status.js.map +1 -1
- package/dist/core/diagnostics/entropy-checks.d.ts +3 -2
- package/dist/core/diagnostics/entropy-checks.d.ts.map +1 -1
- package/dist/core/diagnostics/entropy-checks.js +10 -5
- package/dist/core/diagnostics/entropy-checks.js.map +1 -1
- package/dist/core/diagnostics/heartbeat-reader.d.ts +28 -0
- package/dist/core/diagnostics/heartbeat-reader.d.ts.map +1 -0
- package/dist/core/diagnostics/heartbeat-reader.js +50 -0
- package/dist/core/diagnostics/heartbeat-reader.js.map +1 -0
- package/dist/core/event-fields.d.ts +27 -0
- package/dist/core/event-fields.d.ts.map +1 -1
- package/dist/core/event-fields.js +43 -0
- package/dist/core/event-fields.js.map +1 -1
- package/dist/core/governance/global-inject.d.ts +34 -4
- package/dist/core/governance/global-inject.d.ts.map +1 -1
- package/dist/core/governance/global-inject.js +80 -25
- package/dist/core/governance/global-inject.js.map +1 -1
- package/dist/core/insights/agent-anchor-guard.d.ts +77 -0
- package/dist/core/insights/agent-anchor-guard.d.ts.map +1 -0
- package/dist/core/insights/agent-anchor-guard.js +119 -0
- package/dist/core/insights/agent-anchor-guard.js.map +1 -0
- package/dist/core/insights/agent-distill-context.d.ts +55 -0
- package/dist/core/insights/agent-distill-context.d.ts.map +1 -0
- package/dist/core/insights/agent-distill-context.js +146 -0
- package/dist/core/insights/agent-distill-context.js.map +1 -0
- package/dist/core/insights/agent-distill-spawn.d.ts +56 -0
- package/dist/core/insights/agent-distill-spawn.d.ts.map +1 -0
- package/dist/core/insights/agent-distill-spawn.js +179 -0
- package/dist/core/insights/agent-distill-spawn.js.map +1 -0
- package/dist/core/insights/agent-drift.d.ts +66 -0
- package/dist/core/insights/agent-drift.d.ts.map +1 -0
- package/dist/core/insights/agent-drift.js +109 -0
- package/dist/core/insights/agent-drift.js.map +1 -0
- package/dist/core/insights/agent-evolution-sources.d.ts +21 -0
- package/dist/core/insights/agent-evolution-sources.d.ts.map +1 -0
- package/dist/core/insights/agent-evolution-sources.js +36 -0
- package/dist/core/insights/agent-evolution-sources.js.map +1 -0
- package/dist/core/insights/agent-health.d.ts +142 -0
- package/dist/core/insights/agent-health.d.ts.map +1 -0
- package/dist/core/insights/agent-health.js +296 -0
- package/dist/core/insights/agent-health.js.map +1 -0
- package/dist/core/insights/agent-patch-apply.d.ts +45 -0
- package/dist/core/insights/agent-patch-apply.d.ts.map +1 -0
- package/dist/core/insights/agent-patch-apply.js +165 -0
- package/dist/core/insights/agent-patch-apply.js.map +1 -0
- package/dist/core/insights/agent-suggest.d.ts +128 -0
- package/dist/core/insights/agent-suggest.d.ts.map +1 -0
- package/dist/core/insights/agent-suggest.js +284 -0
- package/dist/core/insights/agent-suggest.js.map +1 -0
- package/dist/core/insights/coverage-tiers.d.ts +46 -0
- package/dist/core/insights/coverage-tiers.d.ts.map +1 -0
- package/dist/core/insights/coverage-tiers.js +95 -0
- package/dist/core/insights/coverage-tiers.js.map +1 -0
- package/dist/{daemon/services → core/insights}/experience-extractor.d.ts +0 -7
- package/dist/core/insights/experience-extractor.d.ts.map +1 -0
- package/dist/{daemon/services → core/insights}/experience-extractor.js +5 -9
- package/dist/core/insights/experience-extractor.js.map +1 -0
- package/dist/{daemon/services → core/insights}/violation-reporter.d.ts +20 -1
- package/dist/core/insights/violation-reporter.d.ts.map +1 -0
- package/dist/{daemon/services → core/insights}/violation-reporter.js +56 -4
- package/dist/core/insights/violation-reporter.js.map +1 -0
- package/dist/core/loop/loop-engine.d.ts +140 -0
- package/dist/core/loop/loop-engine.d.ts.map +1 -0
- package/dist/core/loop/loop-engine.js +266 -0
- package/dist/core/loop/loop-engine.js.map +1 -0
- package/dist/core/queue/index.d.ts.map +1 -1
- package/dist/core/queue/index.js +2 -1
- package/dist/core/queue/index.js.map +1 -1
- package/dist/core/storage/base.d.ts +159 -0
- package/dist/core/storage/base.d.ts.map +1 -1
- package/dist/core/storage/base.js +523 -0
- package/dist/core/storage/base.js.map +1 -1
- package/dist/core/storage/codegraph-types.d.ts +79 -0
- package/dist/core/storage/codegraph-types.d.ts.map +1 -0
- package/dist/core/storage/codegraph-types.js +14 -0
- package/dist/core/storage/codegraph-types.js.map +1 -0
- package/dist/core/storage/codegraph.d.ts +186 -0
- package/dist/core/storage/codegraph.d.ts.map +1 -0
- package/dist/core/storage/codegraph.js +452 -0
- package/dist/core/storage/codegraph.js.map +1 -0
- package/dist/core/storage/decisions.d.ts +30 -5
- package/dist/core/storage/decisions.d.ts.map +1 -1
- package/dist/core/storage/decisions.js +45 -13
- package/dist/core/storage/decisions.js.map +1 -1
- package/dist/core/storage/events.d.ts +127 -0
- package/dist/core/storage/events.d.ts.map +1 -1
- package/dist/core/storage/events.js +318 -3
- package/dist/core/storage/events.js.map +1 -1
- package/dist/core/storage/feedback.d.ts +3 -23
- package/dist/core/storage/feedback.d.ts.map +1 -1
- package/dist/core/storage/feedback.js +37 -38
- package/dist/core/storage/feedback.js.map +1 -1
- package/dist/core/storage/injections.d.ts +40 -0
- package/dist/core/storage/injections.d.ts.map +1 -1
- package/dist/core/storage/injections.js +69 -0
- package/dist/core/storage/injections.js.map +1 -1
- package/dist/core/storage/knowledge.d.ts +226 -0
- package/dist/core/storage/knowledge.d.ts.map +1 -1
- package/dist/core/storage/knowledge.js +391 -4
- package/dist/core/storage/knowledge.js.map +1 -1
- package/dist/core/storage/pipeline-rollup.d.ts +1 -7
- package/dist/core/storage/pipeline-rollup.d.ts.map +1 -1
- package/dist/core/storage/pipeline-rollup.js +18 -57
- package/dist/core/storage/pipeline-rollup.js.map +1 -1
- package/dist/core/storage/routing.d.ts +34 -0
- package/dist/core/storage/routing.d.ts.map +1 -1
- package/dist/core/storage/routing.js +92 -2
- package/dist/core/storage/routing.js.map +1 -1
- package/dist/core/storage/rows.d.ts +5 -25
- package/dist/core/storage/rows.d.ts.map +1 -1
- package/dist/core/storage/schema.sql +92 -27
- package/dist/core/storage/sessions.d.ts.map +1 -1
- package/dist/core/storage/sessions.js +2 -1
- package/dist/core/storage/sessions.js.map +1 -1
- package/dist/core/storage/skills.d.ts +159 -0
- package/dist/core/storage/skills.d.ts.map +1 -1
- package/dist/core/storage/skills.js +350 -4
- package/dist/core/storage/skills.js.map +1 -1
- package/dist/core/storage/sqlite.d.ts +81 -25
- package/dist/core/storage/sqlite.d.ts.map +1 -1
- package/dist/core/storage/sqlite.js +143 -45
- package/dist/core/storage/sqlite.js.map +1 -1
- package/dist/core/storage/tasks.d.ts +270 -0
- package/dist/core/storage/tasks.d.ts.map +1 -1
- package/dist/core/storage/tasks.js +495 -16
- package/dist/core/storage/tasks.js.map +1 -1
- package/dist/core/storage/tool-intercepts.d.ts +1 -1
- package/dist/core/storage/tool-intercepts.js +1 -1
- package/dist/core/types.d.ts +26 -3
- package/dist/core/types.d.ts.map +1 -1
- package/dist/core/types.js +1 -3
- package/dist/core/types.js.map +1 -1
- package/dist/core/utils/binary-paths.d.ts +32 -0
- package/dist/core/utils/binary-paths.d.ts.map +1 -1
- package/dist/core/utils/binary-paths.js +52 -0
- package/dist/core/utils/binary-paths.js.map +1 -1
- package/dist/core/utils/claude-cli-resolver.d.ts.map +1 -0
- package/dist/{skills/distill → core/utils}/claude-cli-resolver.js +1 -1
- package/dist/core/utils/claude-cli-resolver.js.map +1 -0
- package/dist/core/utils/claude-cli-spawn.d.ts +1 -1
- package/dist/core/utils/claude-cli-spawn.js +2 -2
- package/dist/core/utils/claude-cli-spawn.js.map +1 -1
- package/dist/core/utils/noise-prompt.d.ts +1 -1
- package/dist/core/utils/noise-prompt.js +1 -1
- package/dist/core/utils/time.d.ts +26 -0
- package/dist/core/utils/time.d.ts.map +1 -1
- package/dist/core/utils/time.js +33 -0
- package/dist/core/utils/time.js.map +1 -1
- package/dist/daemon/config-store.d.ts.map +1 -1
- package/dist/daemon/config-store.js +14 -5
- package/dist/daemon/config-store.js.map +1 -1
- package/dist/daemon/event-parser.d.ts.map +1 -1
- package/dist/daemon/event-parser.js +5 -0
- package/dist/daemon/event-parser.js.map +1 -1
- package/dist/daemon/handlers/post-tool-use.d.ts +24 -16
- package/dist/daemon/handlers/post-tool-use.d.ts.map +1 -1
- package/dist/daemon/handlers/post-tool-use.js +76 -116
- package/dist/daemon/handlers/post-tool-use.js.map +1 -1
- package/dist/daemon/handlers/pre-tool-use.d.ts +35 -10
- package/dist/daemon/handlers/pre-tool-use.d.ts.map +1 -1
- package/dist/daemon/handlers/pre-tool-use.js +71 -38
- package/dist/daemon/handlers/pre-tool-use.js.map +1 -1
- package/dist/daemon/handlers/stop.d.ts +20 -0
- package/dist/daemon/handlers/stop.d.ts.map +1 -1
- package/dist/daemon/handlers/stop.js +96 -8
- package/dist/daemon/handlers/stop.js.map +1 -1
- package/dist/daemon/handlers/user-prompt.d.ts +16 -1
- package/dist/daemon/handlers/user-prompt.d.ts.map +1 -1
- package/dist/daemon/handlers/user-prompt.js +97 -56
- package/dist/daemon/handlers/user-prompt.js.map +1 -1
- package/dist/daemon/handlers/violation-content-backfill.d.ts +76 -0
- package/dist/daemon/handlers/violation-content-backfill.d.ts.map +1 -0
- package/dist/daemon/handlers/violation-content-backfill.js +167 -0
- package/dist/daemon/handlers/violation-content-backfill.js.map +1 -0
- package/dist/daemon/index.d.ts +19 -0
- package/dist/daemon/index.d.ts.map +1 -1
- package/dist/daemon/index.js +125 -200
- package/dist/daemon/index.js.map +1 -1
- package/dist/daemon/rules/defaults.d.ts.map +1 -1
- package/dist/daemon/rules/defaults.js +151 -64
- package/dist/daemon/rules/defaults.js.map +1 -1
- package/dist/daemon/rules/types.d.ts +28 -22
- package/dist/daemon/rules/types.d.ts.map +1 -1
- package/dist/daemon/rules/workflow-defaults.js +9 -9
- package/dist/daemon/rules/workflow-defaults.js.map +1 -1
- package/dist/daemon/services/codegraph-sync.d.ts +94 -0
- package/dist/daemon/services/codegraph-sync.d.ts.map +1 -0
- package/dist/daemon/services/codegraph-sync.js +159 -0
- package/dist/daemon/services/codegraph-sync.js.map +1 -0
- package/dist/daemon/services/decision-hint.d.ts +47 -10
- package/dist/daemon/services/decision-hint.d.ts.map +1 -1
- package/dist/daemon/services/decision-hint.js +99 -24
- package/dist/daemon/services/decision-hint.js.map +1 -1
- package/dist/daemon/services/event-ttl-sweep.d.ts.map +1 -1
- package/dist/daemon/services/event-ttl-sweep.js +3 -2
- package/dist/daemon/services/event-ttl-sweep.js.map +1 -1
- package/dist/daemon/services/feedback-aggregator.d.ts +14 -26
- package/dist/daemon/services/feedback-aggregator.d.ts.map +1 -1
- package/dist/daemon/services/feedback-aggregator.js +23 -63
- package/dist/daemon/services/feedback-aggregator.js.map +1 -1
- package/dist/daemon/services/heartbeat-writer.d.ts +6 -15
- package/dist/daemon/services/heartbeat-writer.d.ts.map +1 -1
- package/dist/daemon/services/heartbeat-writer.js +7 -36
- package/dist/daemon/services/heartbeat-writer.js.map +1 -1
- package/dist/daemon/services/kb-injector.d.ts +1 -1
- package/dist/daemon/services/kb-injector.d.ts.map +1 -1
- package/dist/daemon/services/kb-injector.js +10 -2
- package/dist/daemon/services/kb-injector.js.map +1 -1
- package/dist/daemon/services/kb-rebuild-scheduler.d.ts +95 -0
- package/dist/daemon/services/kb-rebuild-scheduler.d.ts.map +1 -0
- package/dist/daemon/services/kb-rebuild-scheduler.js +149 -0
- package/dist/daemon/services/kb-rebuild-scheduler.js.map +1 -0
- package/dist/daemon/services/loop-hint.d.ts +139 -0
- package/dist/daemon/services/loop-hint.d.ts.map +1 -0
- package/dist/daemon/services/loop-hint.js +272 -0
- package/dist/daemon/services/loop-hint.js.map +1 -0
- package/dist/daemon/services/outcome-classification-service.js +1 -1
- package/dist/daemon/services/outcome-classification-service.js.map +1 -1
- package/dist/daemon/services/task-segmenter.d.ts +11 -0
- package/dist/daemon/services/task-segmenter.d.ts.map +1 -1
- package/dist/daemon/services/task-segmenter.js +48 -2
- package/dist/daemon/services/task-segmenter.js.map +1 -1
- package/dist/daemon/startup/maintenance-schedulers.d.ts +68 -0
- package/dist/daemon/startup/maintenance-schedulers.d.ts.map +1 -0
- package/dist/daemon/startup/maintenance-schedulers.js +294 -0
- package/dist/daemon/startup/maintenance-schedulers.js.map +1 -0
- package/dist/daemon/templates/agents/agent-retro-distiller.md +106 -0
- package/dist/daemon/templates/agents/claudemd-writer.md +1 -0
- package/dist/daemon/templates/agents/coder.md +165 -8
- package/dist/daemon/templates/agents/decision-maker.md +107 -21
- package/dist/daemon/templates/agents/doc-reviewer.md +4 -1
- package/dist/daemon/templates/agents/harness-debug-full.md +85 -3
- package/dist/daemon/templates/agents/knowledge-builder.md +1 -0
- package/dist/daemon/templates/agents/patch-applier.md +1 -0
- package/dist/daemon/templates/agents/planner.md +55 -3
- package/dist/daemon/templates/agents/safety-net-implementer.md +278 -0
- package/dist/daemon/templates/agents/skill-distiller.md +1 -0
- package/dist/daemon/templates/agents/task-boundary-classifier.md +1 -0
- package/dist/daemon/templates/agents/verify-agent.md +128 -5
- package/dist/hooks/stop.sh +7 -1
- package/dist/knowledge/builder.js +36 -7
- package/dist/knowledge/builder.js.map +1 -1
- package/dist/knowledge/constants.d.ts +10 -5
- package/dist/knowledge/constants.d.ts.map +1 -1
- package/dist/knowledge/constants.js +10 -5
- package/dist/knowledge/constants.js.map +1 -1
- package/dist/knowledge/graph/edge-extractor.d.ts +45 -0
- package/dist/knowledge/graph/edge-extractor.d.ts.map +1 -0
- package/dist/knowledge/graph/edge-extractor.js +242 -0
- package/dist/knowledge/graph/edge-extractor.js.map +1 -0
- package/dist/knowledge/graph/impact.d.ts +73 -0
- package/dist/knowledge/graph/impact.d.ts.map +1 -0
- package/dist/knowledge/graph/impact.js +94 -0
- package/dist/knowledge/graph/impact.js.map +1 -0
- package/dist/knowledge/graph/types.d.ts +22 -0
- package/dist/knowledge/graph/types.d.ts.map +1 -0
- package/dist/knowledge/graph/types.js +13 -0
- package/dist/knowledge/graph/types.js.map +1 -0
- package/dist/knowledge/prompt.d.ts +9 -0
- package/dist/knowledge/prompt.d.ts.map +1 -1
- package/dist/knowledge/prompt.js +17 -5
- package/dist/knowledge/prompt.js.map +1 -1
- package/dist/knowledge/query.d.ts +13 -0
- package/dist/knowledge/query.d.ts.map +1 -1
- package/dist/knowledge/query.js +107 -10
- package/dist/knowledge/query.js.map +1 -1
- package/dist/knowledge/repo-map.d.ts +11 -5
- package/dist/knowledge/repo-map.d.ts.map +1 -1
- package/dist/knowledge/repo-map.js +42 -3
- package/dist/knowledge/repo-map.js.map +1 -1
- package/dist/knowledge/validator.d.ts.map +1 -1
- package/dist/knowledge/validator.js +69 -2
- package/dist/knowledge/validator.js.map +1 -1
- package/dist/mcp/server.d.ts +64 -8
- package/dist/mcp/server.d.ts.map +1 -1
- package/dist/mcp/server.js +233 -18
- package/dist/mcp/server.js.map +1 -1
- package/dist/skills/distill/distiller.js +1 -1
- package/dist/skills/distill/distiller.js.map +1 -1
- package/dist/skills/distilled/distilled-api-design.md +4 -0
- package/dist/skills/distilled/distilled-brainstorming.md +79 -0
- package/dist/skills/distilled/distilled-brand-guidelines.md +86 -0
- package/dist/skills/distilled/distilled-canvas-design.md +128 -0
- package/dist/skills/distilled/distilled-claude-api.md +185 -0
- package/dist/skills/distilled/distilled-creator.md +5 -2
- package/dist/skills/distilled/distilled-dispatching-parallel-agents.md +136 -0
- package/dist/skills/distilled/distilled-doc-coauthoring.md +144 -0
- package/dist/skills/distilled/distilled-docx.md +231 -0
- package/dist/skills/distilled/distilled-executing-plans.md +85 -50
- package/dist/skills/distilled/distilled-finishing-a-development-branch.md +213 -0
- package/dist/skills/distilled/distilled-frontend-design.md +118 -0
- package/dist/skills/distilled/distilled-harness-engineering.md +1 -1
- package/dist/skills/distilled/distilled-receiving-code-review.md +185 -0
- package/dist/skills/distilled/distilled-subagent-driven-development.md +124 -0
- package/dist/skills/distilled/distilled-systematic-debugging.md +108 -260
- package/dist/skills/distilled/distilled-test-driven-development.md +432 -0
- package/dist/skills/distilled/distilled-using-superpowers.md +134 -0
- package/dist/skills/distilled/distilled-verification-before-completion.md +88 -78
- package/dist/skills/distilled/distilled-writing-skills.md +175 -0
- package/dist/skills/registry.d.ts +10 -50
- package/dist/skills/registry.d.ts.map +1 -1
- package/dist/skills/registry.js +7 -118
- package/dist/skills/registry.js.map +1 -1
- package/dist/skills/tools/pipeline-suggest.js +2 -2
- package/dist/skills/tools/pipeline-suggest.js.map +1 -1
- package/dist/skills/tools/skill-invoke.d.ts +2 -1
- package/dist/skills/tools/skill-invoke.d.ts.map +1 -1
- package/dist/skills/tools/skill-invoke.js +3 -1
- package/dist/skills/tools/skill-invoke.js.map +1 -1
- package/dist/web/analytics/anti-pattern-detector.d.ts.map +1 -1
- package/dist/web/analytics/anti-pattern-detector.js +6 -1
- package/dist/web/analytics/anti-pattern-detector.js.map +1 -1
- package/dist/web/analytics/drift-detector.d.ts +6 -0
- package/dist/web/analytics/drift-detector.d.ts.map +1 -1
- package/dist/web/analytics/drift-detector.js +15 -8
- package/dist/web/analytics/drift-detector.js.map +1 -1
- package/dist/web/analytics/weekly-report.d.ts +13 -0
- package/dist/web/analytics/weekly-report.d.ts.map +1 -1
- package/dist/web/analytics/weekly-report.js +17 -3
- package/dist/web/analytics/weekly-report.js.map +1 -1
- package/dist/web/routes/_helpers.d.ts +31 -0
- package/dist/web/routes/_helpers.d.ts.map +1 -1
- package/dist/web/routes/_helpers.js +33 -0
- package/dist/web/routes/_helpers.js.map +1 -1
- package/dist/web/routes/agent-distill.d.ts +49 -0
- package/dist/web/routes/agent-distill.d.ts.map +1 -0
- package/dist/web/routes/agent-distill.js +526 -0
- package/dist/web/routes/agent-distill.js.map +1 -0
- package/dist/web/routes/config.d.ts +56 -0
- package/dist/web/routes/config.d.ts.map +1 -0
- package/dist/web/routes/config.js +243 -0
- package/dist/web/routes/config.js.map +1 -0
- package/dist/web/routes/decisions.js +1 -1
- package/dist/web/routes/decisions.js.map +1 -1
- package/dist/web/routes/error-handler.d.ts +0 -4
- package/dist/web/routes/error-handler.d.ts.map +1 -1
- package/dist/web/routes/error-handler.js +0 -8
- package/dist/web/routes/error-handler.js.map +1 -1
- package/dist/web/routes/events.d.ts.map +1 -1
- package/dist/web/routes/events.js +2 -1
- package/dist/web/routes/events.js.map +1 -1
- package/dist/web/routes/insights.d.ts.map +1 -1
- package/dist/web/routes/insights.js +0 -0
- package/dist/web/routes/insights.js.map +1 -1
- package/dist/web/routes/knowledge.d.ts +43 -2
- package/dist/web/routes/knowledge.d.ts.map +1 -1
- package/dist/web/routes/knowledge.js +117 -6
- package/dist/web/routes/knowledge.js.map +1 -1
- package/dist/web/routes/pipeline.d.ts +0 -9
- package/dist/web/routes/pipeline.d.ts.map +1 -1
- package/dist/web/routes/pipeline.js +0 -4
- package/dist/web/routes/pipeline.js.map +1 -1
- package/dist/web/routes/rules.d.ts.map +1 -1
- package/dist/web/routes/rules.js +20 -6
- package/dist/web/routes/rules.js.map +1 -1
- package/dist/web/routes/sessions.d.ts.map +1 -1
- package/dist/web/routes/sessions.js +8 -7
- package/dist/web/routes/sessions.js.map +1 -1
- package/dist/web/routes/skill-stats.d.ts.map +1 -1
- package/dist/web/routes/skill-stats.js +153 -16
- package/dist/web/routes/skill-stats.js.map +1 -1
- package/dist/web/routes/skills-distill.js +1 -1
- package/dist/web/routes/skills-distill.js.map +1 -1
- package/dist/web/routes/stats.d.ts.map +1 -1
- package/dist/web/routes/stats.js +2 -1
- package/dist/web/routes/stats.js.map +1 -1
- package/dist/web/routes/task-timeline.d.ts +95 -19
- package/dist/web/routes/task-timeline.d.ts.map +1 -1
- package/dist/web/routes/task-timeline.js +344 -88
- package/dist/web/routes/task-timeline.js.map +1 -1
- package/dist/web/routes/tasks.d.ts.map +1 -1
- package/dist/web/routes/tasks.js +52 -30
- package/dist/web/routes/tasks.js.map +1 -1
- package/dist/web/routes/violations.d.ts +1 -1
- package/dist/web/routes/violations.d.ts.map +1 -1
- package/dist/web/routes/violations.js +3 -2
- package/dist/web/routes/violations.js.map +1 -1
- package/dist/web/server.d.ts.map +1 -1
- package/dist/web/server.js +20 -0
- package/dist/web/server.js.map +1 -1
- package/dist/web/services/agent-distill-manager.d.ts +122 -0
- package/dist/web/services/agent-distill-manager.d.ts.map +1 -0
- package/dist/web/services/agent-distill-manager.js +397 -0
- package/dist/web/services/agent-distill-manager.js.map +1 -0
- package/dist/web/services/distill-manager.d.ts +47 -0
- package/dist/web/services/distill-manager.d.ts.map +1 -1
- package/dist/web/services/distill-manager.js +103 -0
- package/dist/web/services/distill-manager.js.map +1 -1
- package/dist/web/static/assets/AgentDetailPage-DlUeA1sX.js +2 -0
- package/dist/web/static/assets/AgentDetailPage-DlUeA1sX.js.map +1 -0
- package/dist/web/static/assets/AgentDistillRunPage-Cybo4bii.js +3 -0
- package/dist/web/static/assets/AgentDistillRunPage-Cybo4bii.js.map +1 -0
- package/dist/web/static/assets/AgentsPage-Qd9FExLG.js +2 -0
- package/dist/web/static/assets/AgentsPage-Qd9FExLG.js.map +1 -0
- package/dist/web/static/assets/DaemonHealthPage-DTSVqtrI.js +2 -0
- package/dist/web/static/assets/DaemonHealthPage-DTSVqtrI.js.map +1 -0
- package/dist/web/static/assets/DecisionDetailPage-b4BA8dhc.js +2 -0
- package/dist/web/static/assets/DecisionDetailPage-b4BA8dhc.js.map +1 -0
- package/dist/web/static/assets/DecisionsPage-a3NRo_T7.js +2 -0
- package/dist/web/static/assets/DecisionsPage-a3NRo_T7.js.map +1 -0
- package/dist/web/static/assets/DiagnosticsPage-DIVdiIQG.js +2 -0
- package/dist/web/static/assets/DiagnosticsPage-DIVdiIQG.js.map +1 -0
- package/dist/web/static/assets/DistillDetailPage-U6a3l2iP.js +4 -0
- package/dist/web/static/assets/DistillDetailPage-U6a3l2iP.js.map +1 -0
- package/dist/web/static/assets/DistillPage-O7BHtRN8.js +2 -0
- package/dist/web/static/assets/DistillPage-O7BHtRN8.js.map +1 -0
- package/dist/web/static/assets/DistillRunPage-D1JuRWWr.js +2 -0
- package/dist/web/static/assets/DistillRunPage-D1JuRWWr.js.map +1 -0
- package/dist/web/static/assets/GlobalScopeHint-Q3wTJx3F.js +2 -0
- package/dist/web/static/assets/GlobalScopeHint-Q3wTJx3F.js.map +1 -0
- package/dist/web/static/assets/IssueDetailPage-BDfrtk2C.js +2 -0
- package/dist/web/static/assets/IssueDetailPage-BDfrtk2C.js.map +1 -0
- package/dist/web/static/assets/IssuesPage-SKmhlCrw.js +2 -0
- package/dist/web/static/assets/IssuesPage-SKmhlCrw.js.map +1 -0
- package/dist/web/static/assets/KbDetailPage-Yna86Na8.js +2 -0
- package/dist/web/static/assets/KbDetailPage-Yna86Na8.js.map +1 -0
- package/dist/web/static/assets/KbHitsPage-Cljl7H9p.js +2 -0
- package/dist/web/static/assets/KbHitsPage-Cljl7H9p.js.map +1 -0
- package/dist/web/static/assets/{MarkdownRenderer-DZmTl-8J.js → MarkdownRenderer-DlDQNihj.js} +2 -2
- package/dist/web/static/assets/{MarkdownRenderer-DZmTl-8J.js.map → MarkdownRenderer-DlDQNihj.js.map} +1 -1
- package/dist/web/static/assets/NotFound-LMzbP51V.js +2 -0
- package/dist/web/static/assets/{NotFound-BQPh0vaF.js.map → NotFound-LMzbP51V.js.map} +1 -1
- package/dist/web/static/assets/SettingsPage-DzoK4PKg.js +2 -0
- package/dist/web/static/assets/SettingsPage-DzoK4PKg.js.map +1 -0
- package/dist/web/static/assets/SkillDetailPage-BuBJJ_NX.js +2 -0
- package/dist/web/static/assets/SkillDetailPage-BuBJJ_NX.js.map +1 -0
- package/dist/web/static/assets/SkillsPage-aojkJpBc.js +2 -0
- package/dist/web/static/assets/SkillsPage-aojkJpBc.js.map +1 -0
- package/dist/web/static/assets/TaskDetailPage-1ckxnGhw.js +4 -0
- package/dist/web/static/assets/TaskDetailPage-1ckxnGhw.js.map +1 -0
- package/dist/web/static/assets/TasksHubPage-C2PLh3eg.js +6 -0
- package/dist/web/static/assets/TasksHubPage-C2PLh3eg.js.map +1 -0
- package/dist/web/static/assets/WorkplacePage-DHrp5VxS.js +2 -0
- package/dist/web/static/assets/WorkplacePage-DHrp5VxS.js.map +1 -0
- package/dist/web/static/assets/arco-DV6xCLhr.js +14 -0
- package/dist/web/static/assets/arco-DV6xCLhr.js.map +1 -0
- package/dist/web/static/assets/charts-BSV4cyC4.js +37 -0
- package/dist/web/static/assets/charts-BSV4cyC4.js.map +1 -0
- package/dist/web/static/assets/{index-7bl3kbcx.css → index-B_v_MKlb.css} +1 -1
- package/dist/web/static/assets/index-DileOOE4.js +4 -0
- package/dist/web/static/assets/index-DileOOE4.js.map +1 -0
- package/dist/web/static/assets/markdown-CA7ePUts.js +30 -0
- package/dist/web/static/assets/markdown-CA7ePUts.js.map +1 -0
- package/dist/web/static/assets/{outcome-DUn1NjlC.js → outcome-BKGy9azt.js} +2 -2
- package/dist/web/static/assets/{outcome-DUn1NjlC.js.map → outcome-BKGy9azt.js.map} +1 -1
- package/dist/web/static/assets/{query-S6X1S7K9.js → query-CgCOpYWf.js} +2 -2
- package/dist/web/static/assets/{query-S6X1S7K9.js.map → query-CgCOpYWf.js.map} +1 -1
- package/dist/web/static/assets/{react-router-JVUrkhdd.js → react-router-Cxmg8RuL.js} +3 -3
- package/dist/web/static/assets/{react-router-JVUrkhdd.js.map → react-router-Cxmg8RuL.js.map} +1 -1
- package/dist/web/static/assets/{syntax-highlighter-BkZfCDsz.js → syntax-highlighter-BDYycNja.js} +3 -3
- package/dist/web/static/assets/{syntax-highlighter-BkZfCDsz.js.map → syntax-highlighter-BDYycNja.js.map} +1 -1
- package/dist/web/static/assets/task-title-BhOcemuR.js +2 -0
- package/dist/web/static/assets/task-title-BhOcemuR.js.map +1 -0
- package/dist/web/static/assets/useAgentStats-B-uTgqBd.js +2 -0
- package/dist/web/static/assets/useAgentStats-B-uTgqBd.js.map +1 -0
- package/dist/web/static/assets/useDecisions-D-G2Ft5T.js +2 -0
- package/dist/web/static/assets/useDecisions-D-G2Ft5T.js.map +1 -0
- package/dist/web/static/assets/useDistill-21dZkXlT.js +3 -0
- package/dist/web/static/assets/useDistill-21dZkXlT.js.map +1 -0
- package/dist/web/static/assets/useEffectiveProject-DQiyX54y.js +2 -0
- package/dist/web/static/assets/useEffectiveProject-DQiyX54y.js.map +1 -0
- package/dist/web/static/assets/useIssuesFeed-CFiyQkAL.js +2 -0
- package/dist/web/static/assets/useIssuesFeed-CFiyQkAL.js.map +1 -0
- package/dist/web/static/assets/useKbHits-xKXWgqh9.js +2 -0
- package/dist/web/static/assets/useKbHits-xKXWgqh9.js.map +1 -0
- package/dist/web/static/assets/useSkillStats-B5hbIwdf.js +2 -0
- package/dist/web/static/assets/useSkillStats-B5hbIwdf.js.map +1 -0
- package/dist/web/static/assets/vendor-DS-q4Eyc.js +36 -0
- package/dist/web/static/assets/vendor-DS-q4Eyc.js.map +1 -0
- package/dist/web/static/index.html +6 -6
- package/package.json +5 -3
- package/dist/core/storage/workflow-recommendations.d.ts +0 -124
- package/dist/core/storage/workflow-recommendations.d.ts.map +0 -1
- package/dist/core/storage/workflow-recommendations.js +0 -274
- package/dist/core/storage/workflow-recommendations.js.map +0 -1
- package/dist/daemon/services/experience-extractor.d.ts.map +0 -1
- package/dist/daemon/services/experience-extractor.js.map +0 -1
- package/dist/daemon/services/violation-reporter.d.ts.map +0 -1
- package/dist/daemon/services/violation-reporter.js.map +0 -1
- package/dist/daemon/templates/agents/harness-hotfix.md +0 -99
- package/dist/daemon/templates/agents/hybrid-feature-with-safety.md +0 -104
- package/dist/daemon/templates/agents/refactor-specialist.md +0 -98
- package/dist/skills/distill/claude-cli-resolver.d.ts.map +0 -1
- package/dist/skills/distill/claude-cli-resolver.js.map +0 -1
- package/dist/skills/distilled/distilled-defi-amm-security.md +0 -293
- package/dist/skills/keyword-score.d.ts +0 -29
- package/dist/skills/keyword-score.d.ts.map +0 -1
- package/dist/skills/keyword-score.js +0 -54
- package/dist/skills/keyword-score.js.map +0 -1
- package/dist/web/static/assets/AgentContentPage-DkeRNxok.js +0 -2
- package/dist/web/static/assets/AgentContentPage-DkeRNxok.js.map +0 -1
- package/dist/web/static/assets/AgentDelegationTable-ByBa0x1l.js +0 -2
- package/dist/web/static/assets/AgentDelegationTable-ByBa0x1l.js.map +0 -1
- package/dist/web/static/assets/ContextInsightsPage-oUk7_I8u.js +0 -3
- package/dist/web/static/assets/ContextInsightsPage-oUk7_I8u.js.map +0 -1
- package/dist/web/static/assets/DaemonHealthPage-DG2fyOP7.js +0 -2
- package/dist/web/static/assets/DaemonHealthPage-DG2fyOP7.js.map +0 -1
- package/dist/web/static/assets/DecisionsPage-CMAPEnKb.js +0 -2
- package/dist/web/static/assets/DecisionsPage-CMAPEnKb.js.map +0 -1
- package/dist/web/static/assets/DiagnosticsPage-DQd-Zm4r.js +0 -2
- package/dist/web/static/assets/DiagnosticsPage-DQd-Zm4r.js.map +0 -1
- package/dist/web/static/assets/DriftTab-DqpepOhI.js +0 -2
- package/dist/web/static/assets/DriftTab-DqpepOhI.js.map +0 -1
- package/dist/web/static/assets/HealthHomePage-CN6zNIie.js +0 -3
- package/dist/web/static/assets/HealthHomePage-CN6zNIie.js.map +0 -1
- package/dist/web/static/assets/KbHitRateTable-ByEIWujF.js +0 -2
- package/dist/web/static/assets/KbHitRateTable-ByEIWujF.js.map +0 -1
- package/dist/web/static/assets/NotFound-BQPh0vaF.js +0 -2
- package/dist/web/static/assets/ProjectSwitcher-D3lZMFd3.js +0 -2
- package/dist/web/static/assets/ProjectSwitcher-D3lZMFd3.js.map +0 -1
- package/dist/web/static/assets/SettingsPage-oLJBNzQj.js +0 -2
- package/dist/web/static/assets/SettingsPage-oLJBNzQj.js.map +0 -1
- package/dist/web/static/assets/SkillContentPage-DK5rgfgw.js +0 -2
- package/dist/web/static/assets/SkillContentPage-DK5rgfgw.js.map +0 -1
- package/dist/web/static/assets/SkillStatsTable-DYMzjEUV.js +0 -2
- package/dist/web/static/assets/SkillStatsTable-DYMzjEUV.js.map +0 -1
- package/dist/web/static/assets/SkillsDistillTab-C7qaG8q3.js +0 -2
- package/dist/web/static/assets/SkillsDistillTab-C7qaG8q3.js.map +0 -1
- package/dist/web/static/assets/TasksHubPage-03wsRRsJ.js +0 -6
- package/dist/web/static/assets/TasksHubPage-03wsRRsJ.js.map +0 -1
- package/dist/web/static/assets/ViolationsPage-DSiLr-9O.js +0 -3
- package/dist/web/static/assets/ViolationsPage-DSiLr-9O.js.map +0 -1
- package/dist/web/static/assets/arco-Bhi3a6Qp.js +0 -14
- package/dist/web/static/assets/arco-Bhi3a6Qp.js.map +0 -1
- package/dist/web/static/assets/charts-BuHQWDbQ.js +0 -37
- package/dist/web/static/assets/charts-BuHQWDbQ.js.map +0 -1
- package/dist/web/static/assets/index-BIYnq1Dx.js +0 -4
- package/dist/web/static/assets/index-BIYnq1Dx.js.map +0 -1
- package/dist/web/static/assets/useTabsParam-k8qte_0C.js +0 -2
- package/dist/web/static/assets/useTabsParam-k8qte_0C.js.map +0 -1
- package/dist/web/static/assets/vendor-DWgdB1eY.js +0 -65
- package/dist/web/static/assets/vendor-DWgdB1eY.js.map +0 -1
- /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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
113
|
+
commit: 928076cc08cbb31e8549cea2883b4f51811de1c8
|
|
114
114
|
paths:
|
|
115
115
|
- verification-loop/SKILL.md
|
|
116
|
-
distilled_at: '2026-
|
|
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
|
-
|
|
127
|
-
|
|
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
|
|
134
|
-
- Before committing,
|
|
135
|
-
- Before expressing satisfaction
|
|
136
|
-
-
|
|
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
|
|
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
|
-
|
|
142
|
+
The rule applies to exact phrases, paraphrases, and any implication of success — spirit over letter.
|
|
149
143
|
|
|
150
|
-
|
|
144
|
+
## The Gate Function
|
|
151
145
|
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
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
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
-
|
|
183
|
-
|
|
184
|
-
-
|
|
185
|
-
|
|
186
|
-
-
|
|
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
|
-
*
|
|
18
|
-
*
|
|
19
|
-
*
|
|
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
|
-
*
|
|
45
|
-
*
|
|
46
|
-
* `matchKeywords`
|
|
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":"
|
|
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"}
|