@ultrakit/ultrakit 0.0.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/README.md +95 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +5991 -0
- package/dist/template/.opencode/.env.example +196 -0
- package/dist/template/.opencode/.template-manifest.json +718 -0
- package/dist/template/.opencode/.version +1 -0
- package/dist/template/.opencode/AGENTS.md +573 -0
- package/dist/template/.opencode/AGENT_ALIGNMENT.md +564 -0
- package/dist/template/.opencode/README.md +79 -0
- package/dist/template/.opencode/agent/build.md +447 -0
- package/dist/template/.opencode/agent/explore.md +114 -0
- package/dist/template/.opencode/agent/general.md +201 -0
- package/dist/template/.opencode/agent/painter.md +83 -0
- package/dist/template/.opencode/agent/plan.md +469 -0
- package/dist/template/.opencode/agent/review.md +235 -0
- package/dist/template/.opencode/agent/scout.md +142 -0
- package/dist/template/.opencode/agent/vision.md +169 -0
- package/dist/template/.opencode/command/compound.md +240 -0
- package/dist/template/.opencode/command/create.md +298 -0
- package/dist/template/.opencode/command/curate.md +299 -0
- package/dist/template/.opencode/command/design.md +130 -0
- package/dist/template/.opencode/command/explore.md +170 -0
- package/dist/template/.opencode/command/handoff.md +149 -0
- package/dist/template/.opencode/command/health.md +356 -0
- package/dist/template/.opencode/command/init-context.md +297 -0
- package/dist/template/.opencode/command/init-user.md +125 -0
- package/dist/template/.opencode/command/init.md +115 -0
- package/dist/template/.opencode/command/iterate.md +200 -0
- package/dist/template/.opencode/command/lfg.md +173 -0
- package/dist/template/.opencode/command/plan.md +436 -0
- package/dist/template/.opencode/command/pr.md +166 -0
- package/dist/template/.opencode/command/research.md +128 -0
- package/dist/template/.opencode/command/resume.md +78 -0
- package/dist/template/.opencode/command/review-codebase.md +135 -0
- package/dist/template/.opencode/command/ship.md +390 -0
- package/dist/template/.opencode/command/status.md +126 -0
- package/dist/template/.opencode/command/ui-review.md +111 -0
- package/dist/template/.opencode/command/ui-slop-check.md +169 -0
- package/dist/template/.opencode/command/verify.md +173 -0
- package/dist/template/.opencode/context/README.md +29 -0
- package/dist/template/.opencode/context/git-context.md +32 -0
- package/dist/template/.opencode/dcp-prompts/defaults/README.md +40 -0
- package/dist/template/.opencode/dcp-prompts/defaults/compress-message.md +42 -0
- package/dist/template/.opencode/dcp-prompts/defaults/compress-range.md +59 -0
- package/dist/template/.opencode/dcp-prompts/defaults/context-limit-nudge.md +15 -0
- package/dist/template/.opencode/dcp-prompts/defaults/iteration-nudge.md +3 -0
- package/dist/template/.opencode/dcp-prompts/defaults/system.md +31 -0
- package/dist/template/.opencode/dcp-prompts/defaults/turn-nudge.md +7 -0
- package/dist/template/.opencode/dcp-prompts/overrides/compress-message.md +71 -0
- package/dist/template/.opencode/dcp.jsonc +115 -0
- package/dist/template/.opencode/memory/README.md +89 -0
- package/dist/template/.opencode/memory/_templates/design.md +59 -0
- package/dist/template/.opencode/memory/_templates/prd.md +203 -0
- package/dist/template/.opencode/memory/_templates/project.md +58 -0
- package/dist/template/.opencode/memory/_templates/proposal.md +38 -0
- package/dist/template/.opencode/memory/_templates/roadmap.md +93 -0
- package/dist/template/.opencode/memory/_templates/state.md +89 -0
- package/dist/template/.opencode/memory/_templates/tasks.md +198 -0
- package/dist/template/.opencode/memory/_templates/tech-stack.md +85 -0
- package/dist/template/.opencode/memory/_templates/user.md +26 -0
- package/dist/template/.opencode/memory/project/gotchas.md +67 -0
- package/dist/template/.opencode/memory/project/project.md +92 -0
- package/dist/template/.opencode/memory/project/roadmap.md +142 -0
- package/dist/template/.opencode/memory/project/state.md +84 -0
- package/dist/template/.opencode/memory/project/tech-stack.md +53 -0
- package/dist/template/.opencode/memory/project/user.md +45 -0
- package/dist/template/.opencode/memory/research/benchmark-framework.md +162 -0
- package/dist/template/.opencode/memory/research/ccpm-analysis.md +334 -0
- package/dist/template/.opencode/memory/research/context-management-analysis.md +685 -0
- package/dist/template/.opencode/memory/research/effectiveness-audit.md +213 -0
- package/dist/template/.opencode/memory/research/opencode-mcp-bug-report.md +129 -0
- package/dist/template/.opencode/memory/research/openspec-analysis.md +226 -0
- package/dist/template/.opencode/memory/session-context.md +40 -0
- package/dist/template/.opencode/opencode.json +1148 -0
- package/dist/template/.opencode/opencodex-fast.jsonc +3 -0
- package/dist/template/.opencode/package.json +21 -0
- package/dist/template/.opencode/plugin/README.md +81 -0
- package/dist/template/.opencode/plugin/copilot-auth.ts +1285 -0
- package/dist/template/.opencode/plugin/lib/capture.ts +177 -0
- package/dist/template/.opencode/plugin/lib/compact.ts +194 -0
- package/dist/template/.opencode/plugin/lib/compile.ts +253 -0
- package/dist/template/.opencode/plugin/lib/context.ts +198 -0
- package/dist/template/.opencode/plugin/lib/curator.ts +234 -0
- package/dist/template/.opencode/plugin/lib/db/graph.ts +253 -0
- package/dist/template/.opencode/plugin/lib/db/maintenance.ts +312 -0
- package/dist/template/.opencode/plugin/lib/db/observations.ts +304 -0
- package/dist/template/.opencode/plugin/lib/db/pipeline.ts +520 -0
- package/dist/template/.opencode/plugin/lib/db/schema.ts +687 -0
- package/dist/template/.opencode/plugin/lib/db/types.ts +284 -0
- package/dist/template/.opencode/plugin/lib/distill.ts +376 -0
- package/dist/template/.opencode/plugin/lib/index-generator.ts +170 -0
- package/dist/template/.opencode/plugin/lib/inject.ts +126 -0
- package/dist/template/.opencode/plugin/lib/lint.ts +359 -0
- package/dist/template/.opencode/plugin/lib/memory-admin-tools.ts +277 -0
- package/dist/template/.opencode/plugin/lib/memory-db.ts +100 -0
- package/dist/template/.opencode/plugin/lib/memory-helpers.ts +141 -0
- package/dist/template/.opencode/plugin/lib/memory-hooks.ts +399 -0
- package/dist/template/.opencode/plugin/lib/memory-tools.ts +535 -0
- package/dist/template/.opencode/plugin/lib/notify.ts +89 -0
- package/dist/template/.opencode/plugin/lib/operation-log.ts +110 -0
- package/dist/template/.opencode/plugin/lib/validate.ts +243 -0
- package/dist/template/.opencode/plugin/memory.ts +90 -0
- package/dist/template/.opencode/plugin/package.json +7 -0
- package/dist/template/.opencode/plugin/prompt-leverage.ts +191 -0
- package/dist/template/.opencode/plugin/rtk.ts +43 -0
- package/dist/template/.opencode/plugin/sdk/copilot/chat/convert-to-openai-compatible-chat-messages.ts +172 -0
- package/dist/template/.opencode/plugin/sdk/copilot/chat/get-response-metadata.ts +15 -0
- package/dist/template/.opencode/plugin/sdk/copilot/chat/map-openai-compatible-finish-reason.ts +19 -0
- package/dist/template/.opencode/plugin/sdk/copilot/chat/openai-compatible-api-types.ts +72 -0
- package/dist/template/.opencode/plugin/sdk/copilot/chat/openai-compatible-chat-language-model.ts +835 -0
- package/dist/template/.opencode/plugin/sdk/copilot/chat/openai-compatible-chat-options.ts +30 -0
- package/dist/template/.opencode/plugin/sdk/copilot/chat/openai-compatible-metadata-extractor.ts +48 -0
- package/dist/template/.opencode/plugin/sdk/copilot/chat/openai-compatible-prepare-tools.ts +92 -0
- package/dist/template/.opencode/plugin/sdk/copilot/copilot-provider.ts +101 -0
- package/dist/template/.opencode/plugin/sdk/copilot/index.ts +5 -0
- package/dist/template/.opencode/plugin/sdk/copilot/openai-compatible-error.ts +30 -0
- package/dist/template/.opencode/plugin/sdk/copilot/responses/convert-to-openai-responses-input.ts +335 -0
- package/dist/template/.opencode/plugin/sdk/copilot/responses/map-openai-responses-finish-reason.ts +22 -0
- package/dist/template/.opencode/plugin/sdk/copilot/responses/openai-config.ts +18 -0
- package/dist/template/.opencode/plugin/sdk/copilot/responses/openai-error.ts +22 -0
- package/dist/template/.opencode/plugin/sdk/copilot/responses/openai-responses-api-types.ts +214 -0
- package/dist/template/.opencode/plugin/sdk/copilot/responses/openai-responses-language-model.ts +1770 -0
- package/dist/template/.opencode/plugin/sdk/copilot/responses/openai-responses-prepare-tools.ts +173 -0
- package/dist/template/.opencode/plugin/sdk/copilot/responses/openai-responses-settings.ts +1 -0
- package/dist/template/.opencode/plugin/sdk/copilot/responses/tool/code-interpreter.ts +87 -0
- package/dist/template/.opencode/plugin/sdk/copilot/responses/tool/file-search.ts +127 -0
- package/dist/template/.opencode/plugin/sdk/copilot/responses/tool/image-generation.ts +114 -0
- package/dist/template/.opencode/plugin/sdk/copilot/responses/tool/local-shell.ts +64 -0
- package/dist/template/.opencode/plugin/sdk/copilot/responses/tool/web-search-preview.ts +103 -0
- package/dist/template/.opencode/plugin/sdk/copilot/responses/tool/web-search.ts +102 -0
- package/dist/template/.opencode/plugin/sessions.ts +457 -0
- package/dist/template/.opencode/plugin/skill-mcp.ts +618 -0
- package/dist/template/.opencode/plugin/tsconfig.json +16 -0
- package/dist/template/.opencode/skill/accessibility-audit/SKILL.md +191 -0
- package/dist/template/.opencode/skill/agent-evals/SKILL.md +208 -0
- package/dist/template/.opencode/skill/agent-teams/SKILL.md +268 -0
- package/dist/template/.opencode/skill/anti-ai-slop/SKILL.md +76 -0
- package/dist/template/.opencode/skill/api-and-interface-design/SKILL.md +162 -0
- package/dist/template/.opencode/skill/augment-context-engine/SKILL.md +122 -0
- package/dist/template/.opencode/skill/augment-context-engine/mcp.json +6 -0
- package/dist/template/.opencode/skill/beads/SKILL.md +182 -0
- package/dist/template/.opencode/skill/beads/references/BEST_PRACTICES.md +27 -0
- package/dist/template/.opencode/skill/beads/references/BOUNDARIES.md +219 -0
- package/dist/template/.opencode/skill/beads/references/DEPENDENCIES.md +124 -0
- package/dist/template/.opencode/skill/beads/references/EXAMPLES.md +45 -0
- package/dist/template/.opencode/skill/beads/references/FILE_CLAIMING.md +101 -0
- package/dist/template/.opencode/skill/beads/references/GIT_SYNC.md +25 -0
- package/dist/template/.opencode/skill/beads/references/HIERARCHY.md +71 -0
- package/dist/template/.opencode/skill/beads/references/MULTI_AGENT.md +40 -0
- package/dist/template/.opencode/skill/beads/references/RESUMABILITY.md +177 -0
- package/dist/template/.opencode/skill/beads/references/SESSION_PROTOCOL.md +61 -0
- package/dist/template/.opencode/skill/beads/references/TASK_CREATION.md +38 -0
- package/dist/template/.opencode/skill/beads/references/TROUBLESHOOTING.md +38 -0
- package/dist/template/.opencode/skill/beads/references/WORKFLOWS.md +226 -0
- package/dist/template/.opencode/skill/brainstorming/SKILL.md +114 -0
- package/dist/template/.opencode/skill/brand-asset-protocol/SKILL.md +222 -0
- package/dist/template/.opencode/skill/chrome-devtools/SKILL.md +76 -0
- package/dist/template/.opencode/skill/chrome-devtools/mcp.json +19 -0
- package/dist/template/.opencode/skill/ci-cd-and-automation/SKILL.md +202 -0
- package/dist/template/.opencode/skill/cloudflare/SKILL.md +253 -0
- package/dist/template/.opencode/skill/cloudflare/references/agents-sdk/README.md +35 -0
- package/dist/template/.opencode/skill/cloudflare/references/agents-sdk/api.md +100 -0
- package/dist/template/.opencode/skill/cloudflare/references/agents-sdk/configuration.md +99 -0
- package/dist/template/.opencode/skill/cloudflare/references/agents-sdk/gotchas.md +59 -0
- package/dist/template/.opencode/skill/cloudflare/references/agents-sdk/patterns.md +89 -0
- package/dist/template/.opencode/skill/cloudflare/references/ai-gateway/README.md +695 -0
- package/dist/template/.opencode/skill/cloudflare/references/ai-search/README.md +14 -0
- package/dist/template/.opencode/skill/cloudflare/references/ai-search/api.md +38 -0
- package/dist/template/.opencode/skill/cloudflare/references/ai-search/configuration.md +52 -0
- package/dist/template/.opencode/skill/cloudflare/references/ai-search/gotchas.md +41 -0
- package/dist/template/.opencode/skill/cloudflare/references/ai-search/patterns.md +45 -0
- package/dist/template/.opencode/skill/cloudflare/references/analytics-engine/README.md +14 -0
- package/dist/template/.opencode/skill/cloudflare/references/analytics-engine/api.md +27 -0
- package/dist/template/.opencode/skill/cloudflare/references/analytics-engine/configuration.md +45 -0
- package/dist/template/.opencode/skill/cloudflare/references/analytics-engine/gotchas.md +3 -0
- package/dist/template/.opencode/skill/cloudflare/references/analytics-engine/patterns.md +36 -0
- package/dist/template/.opencode/skill/cloudflare/references/api/README.md +21 -0
- package/dist/template/.opencode/skill/cloudflare/references/api/api.md +31 -0
- package/dist/template/.opencode/skill/cloudflare/references/api/configuration.md +20 -0
- package/dist/template/.opencode/skill/cloudflare/references/api/gotchas.md +28 -0
- package/dist/template/.opencode/skill/cloudflare/references/api/patterns.md +47 -0
- package/dist/template/.opencode/skill/cloudflare/references/api-shield/README.md +20 -0
- package/dist/template/.opencode/skill/cloudflare/references/api-shield/api.md +78 -0
- package/dist/template/.opencode/skill/cloudflare/references/api-shield/configuration.md +128 -0
- package/dist/template/.opencode/skill/cloudflare/references/api-shield/gotchas.md +51 -0
- package/dist/template/.opencode/skill/cloudflare/references/api-shield/patterns.md +145 -0
- package/dist/template/.opencode/skill/cloudflare/references/argo-smart-routing/README.md +16 -0
- package/dist/template/.opencode/skill/cloudflare/references/argo-smart-routing/api.md +50 -0
- package/dist/template/.opencode/skill/cloudflare/references/argo-smart-routing/configuration.md +53 -0
- package/dist/template/.opencode/skill/cloudflare/references/argo-smart-routing/gotchas.md +16 -0
- package/dist/template/.opencode/skill/cloudflare/references/argo-smart-routing/patterns.md +45 -0
- package/dist/template/.opencode/skill/cloudflare/references/bindings/README.md +14 -0
- package/dist/template/.opencode/skill/cloudflare/references/bindings/api.md +3 -0
- package/dist/template/.opencode/skill/cloudflare/references/bindings/configuration.md +58 -0
- package/dist/template/.opencode/skill/cloudflare/references/bindings/gotchas.md +35 -0
- package/dist/template/.opencode/skill/cloudflare/references/bindings/patterns.md +37 -0
- package/dist/template/.opencode/skill/cloudflare/references/bot-management/README.md +71 -0
- package/dist/template/.opencode/skill/cloudflare/references/bot-management/api.md +168 -0
- package/dist/template/.opencode/skill/cloudflare/references/bot-management/configuration.md +114 -0
- package/dist/template/.opencode/skill/cloudflare/references/bot-management/gotchas.md +99 -0
- package/dist/template/.opencode/skill/cloudflare/references/bot-management/patterns.md +125 -0
- package/dist/template/.opencode/skill/cloudflare/references/browser-rendering/README.md +16 -0
- package/dist/template/.opencode/skill/cloudflare/references/browser-rendering/api.md +54 -0
- package/dist/template/.opencode/skill/cloudflare/references/browser-rendering/configuration.md +47 -0
- package/dist/template/.opencode/skill/cloudflare/references/browser-rendering/gotchas.md +29 -0
- package/dist/template/.opencode/skill/cloudflare/references/browser-rendering/patterns.md +29 -0
- package/dist/template/.opencode/skill/cloudflare/references/c3/README.md +264 -0
- package/dist/template/.opencode/skill/cloudflare/references/cache-reserve/README.md +93 -0
- package/dist/template/.opencode/skill/cloudflare/references/cache-reserve/api.md +176 -0
- package/dist/template/.opencode/skill/cloudflare/references/cache-reserve/configuration.md +164 -0
- package/dist/template/.opencode/skill/cloudflare/references/cache-reserve/gotchas.md +203 -0
- package/dist/template/.opencode/skill/cloudflare/references/cache-reserve/patterns.md +180 -0
- package/dist/template/.opencode/skill/cloudflare/references/containers/README.md +16 -0
- package/dist/template/.opencode/skill/cloudflare/references/containers/api.md +43 -0
- package/dist/template/.opencode/skill/cloudflare/references/containers/configuration.md +56 -0
- package/dist/template/.opencode/skill/cloudflare/references/containers/gotchas.md +21 -0
- package/dist/template/.opencode/skill/cloudflare/references/containers/patterns.md +40 -0
- package/dist/template/.opencode/skill/cloudflare/references/cron-triggers/README.md +85 -0
- package/dist/template/.opencode/skill/cloudflare/references/cron-triggers/api.md +198 -0
- package/dist/template/.opencode/skill/cloudflare/references/cron-triggers/configuration.md +151 -0
- package/dist/template/.opencode/skill/cloudflare/references/cron-triggers/gotchas.md +129 -0
- package/dist/template/.opencode/skill/cloudflare/references/cron-triggers/patterns.md +122 -0
- package/dist/template/.opencode/skill/cloudflare/references/d1/README.md +92 -0
- package/dist/template/.opencode/skill/cloudflare/references/d1/api.md +141 -0
- package/dist/template/.opencode/skill/cloudflare/references/d1/configuration.md +127 -0
- package/dist/template/.opencode/skill/cloudflare/references/d1/gotchas.md +70 -0
- package/dist/template/.opencode/skill/cloudflare/references/d1/patterns.md +144 -0
- package/dist/template/.opencode/skill/cloudflare/references/ddos/README.md +34 -0
- package/dist/template/.opencode/skill/cloudflare/references/ddos/api.md +136 -0
- package/dist/template/.opencode/skill/cloudflare/references/ddos/configuration.md +67 -0
- package/dist/template/.opencode/skill/cloudflare/references/ddos/gotchas.md +114 -0
- package/dist/template/.opencode/skill/cloudflare/references/ddos/patterns.md +158 -0
- package/dist/template/.opencode/skill/cloudflare/references/do-storage/README.md +62 -0
- package/dist/template/.opencode/skill/cloudflare/references/do-storage/api.md +89 -0
- package/dist/template/.opencode/skill/cloudflare/references/do-storage/configuration.md +116 -0
- package/dist/template/.opencode/skill/cloudflare/references/do-storage/gotchas.md +93 -0
- package/dist/template/.opencode/skill/cloudflare/references/do-storage/patterns.md +112 -0
- package/dist/template/.opencode/skill/cloudflare/references/durable-objects/README.md +125 -0
- package/dist/template/.opencode/skill/cloudflare/references/durable-objects/api.md +152 -0
- package/dist/template/.opencode/skill/cloudflare/references/durable-objects/configuration.md +148 -0
- package/dist/template/.opencode/skill/cloudflare/references/durable-objects/gotchas.md +158 -0
- package/dist/template/.opencode/skill/cloudflare/references/durable-objects/patterns.md +255 -0
- package/dist/template/.opencode/skill/cloudflare/references/email-routing/README.md +18 -0
- package/dist/template/.opencode/skill/cloudflare/references/email-routing/api.md +46 -0
- package/dist/template/.opencode/skill/cloudflare/references/email-routing/configuration.md +63 -0
- package/dist/template/.opencode/skill/cloudflare/references/email-routing/gotchas.md +16 -0
- package/dist/template/.opencode/skill/cloudflare/references/email-routing/patterns.md +46 -0
- package/dist/template/.opencode/skill/cloudflare/references/email-workers/README.md +598 -0
- package/dist/template/.opencode/skill/cloudflare/references/hyperdrive/README.md +62 -0
- package/dist/template/.opencode/skill/cloudflare/references/hyperdrive/api.md +137 -0
- package/dist/template/.opencode/skill/cloudflare/references/hyperdrive/configuration.md +133 -0
- package/dist/template/.opencode/skill/cloudflare/references/hyperdrive/gotchas.md +184 -0
- package/dist/template/.opencode/skill/cloudflare/references/hyperdrive/patterns.md +176 -0
- package/dist/template/.opencode/skill/cloudflare/references/images/README.md +14 -0
- package/dist/template/.opencode/skill/cloudflare/references/images/api.md +3 -0
- package/dist/template/.opencode/skill/cloudflare/references/images/configuration.md +45 -0
- package/dist/template/.opencode/skill/cloudflare/references/images/gotchas.md +23 -0
- package/dist/template/.opencode/skill/cloudflare/references/images/patterns.md +31 -0
- package/dist/template/.opencode/skill/cloudflare/references/kv/README.md +60 -0
- package/dist/template/.opencode/skill/cloudflare/references/kv/api.md +114 -0
- package/dist/template/.opencode/skill/cloudflare/references/kv/configuration.md +92 -0
- package/dist/template/.opencode/skill/cloudflare/references/kv/gotchas.md +117 -0
- package/dist/template/.opencode/skill/cloudflare/references/kv/patterns.md +139 -0
- package/dist/template/.opencode/skill/cloudflare/references/miniflare/README.md +64 -0
- package/dist/template/.opencode/skill/cloudflare/references/miniflare/api.md +144 -0
- package/dist/template/.opencode/skill/cloudflare/references/miniflare/configuration.md +203 -0
- package/dist/template/.opencode/skill/cloudflare/references/miniflare/gotchas.md +187 -0
- package/dist/template/.opencode/skill/cloudflare/references/miniflare/patterns.md +211 -0
- package/dist/template/.opencode/skill/cloudflare/references/network-interconnect/README.md +60 -0
- package/dist/template/.opencode/skill/cloudflare/references/network-interconnect/api.md +240 -0
- package/dist/template/.opencode/skill/cloudflare/references/network-interconnect/configuration.md +127 -0
- package/dist/template/.opencode/skill/cloudflare/references/network-interconnect/gotchas.md +171 -0
- package/dist/template/.opencode/skill/cloudflare/references/network-interconnect/patterns.md +171 -0
- package/dist/template/.opencode/skill/cloudflare/references/observability/README.md +18 -0
- package/dist/template/.opencode/skill/cloudflare/references/observability/api.md +51 -0
- package/dist/template/.opencode/skill/cloudflare/references/observability/configuration.md +60 -0
- package/dist/template/.opencode/skill/cloudflare/references/observability/gotchas.md +36 -0
- package/dist/template/.opencode/skill/cloudflare/references/observability/patterns.md +42 -0
- package/dist/template/.opencode/skill/cloudflare/references/pages/README.md +76 -0
- package/dist/template/.opencode/skill/cloudflare/references/pages/api.md +200 -0
- package/dist/template/.opencode/skill/cloudflare/references/pages/configuration.md +228 -0
- package/dist/template/.opencode/skill/cloudflare/references/pages/gotchas.md +161 -0
- package/dist/template/.opencode/skill/cloudflare/references/pages/patterns.md +145 -0
- package/dist/template/.opencode/skill/cloudflare/references/pages-functions/README.md +57 -0
- package/dist/template/.opencode/skill/cloudflare/references/pages-functions/api.md +201 -0
- package/dist/template/.opencode/skill/cloudflare/references/pages-functions/configuration.md +159 -0
- package/dist/template/.opencode/skill/cloudflare/references/pages-functions/gotchas.md +151 -0
- package/dist/template/.opencode/skill/cloudflare/references/pages-functions/patterns.md +190 -0
- package/dist/template/.opencode/skill/cloudflare/references/pipelines/README.md +664 -0
- package/dist/template/.opencode/skill/cloudflare/references/pulumi/README.md +107 -0
- package/dist/template/.opencode/skill/cloudflare/references/pulumi/api.md +194 -0
- package/dist/template/.opencode/skill/cloudflare/references/pulumi/configuration.md +216 -0
- package/dist/template/.opencode/skill/cloudflare/references/pulumi/gotchas.md +223 -0
- package/dist/template/.opencode/skill/cloudflare/references/pulumi/patterns.md +139 -0
- package/dist/template/.opencode/skill/cloudflare/references/queues/README.md +69 -0
- package/dist/template/.opencode/skill/cloudflare/references/queues/api.md +138 -0
- package/dist/template/.opencode/skill/cloudflare/references/queues/configuration.md +125 -0
- package/dist/template/.opencode/skill/cloudflare/references/queues/gotchas.md +112 -0
- package/dist/template/.opencode/skill/cloudflare/references/queues/patterns.md +155 -0
- package/dist/template/.opencode/skill/cloudflare/references/r2/README.md +61 -0
- package/dist/template/.opencode/skill/cloudflare/references/r2/api.md +127 -0
- package/dist/template/.opencode/skill/cloudflare/references/r2/configuration.md +76 -0
- package/dist/template/.opencode/skill/cloudflare/references/r2/gotchas.md +94 -0
- package/dist/template/.opencode/skill/cloudflare/references/r2/patterns.md +127 -0
- package/dist/template/.opencode/skill/cloudflare/references/r2-data-catalog/README.md +18 -0
- package/dist/template/.opencode/skill/cloudflare/references/r2-data-catalog/api.md +29 -0
- package/dist/template/.opencode/skill/cloudflare/references/r2-data-catalog/configuration.md +39 -0
- package/dist/template/.opencode/skill/cloudflare/references/r2-data-catalog/gotchas.md +20 -0
- package/dist/template/.opencode/skill/cloudflare/references/r2-data-catalog/patterns.md +46 -0
- package/dist/template/.opencode/skill/cloudflare/references/r2-sql/README.md +512 -0
- package/dist/template/.opencode/skill/cloudflare/references/realtime-sfu/README.md +21 -0
- package/dist/template/.opencode/skill/cloudflare/references/realtime-sfu/api.md +135 -0
- package/dist/template/.opencode/skill/cloudflare/references/realtime-sfu/configuration.md +63 -0
- package/dist/template/.opencode/skill/cloudflare/references/realtime-sfu/gotchas.md +75 -0
- package/dist/template/.opencode/skill/cloudflare/references/realtime-sfu/patterns.md +102 -0
- package/dist/template/.opencode/skill/cloudflare/references/realtimekit/README.md +81 -0
- package/dist/template/.opencode/skill/cloudflare/references/realtimekit/api.md +164 -0
- package/dist/template/.opencode/skill/cloudflare/references/realtimekit/configuration.md +147 -0
- package/dist/template/.opencode/skill/cloudflare/references/realtimekit/gotchas.md +172 -0
- package/dist/template/.opencode/skill/cloudflare/references/realtimekit/patterns.md +155 -0
- package/dist/template/.opencode/skill/cloudflare/references/sandbox/README.md +90 -0
- package/dist/template/.opencode/skill/cloudflare/references/sandbox/api.md +178 -0
- package/dist/template/.opencode/skill/cloudflare/references/sandbox/configuration.md +131 -0
- package/dist/template/.opencode/skill/cloudflare/references/sandbox/gotchas.md +156 -0
- package/dist/template/.opencode/skill/cloudflare/references/sandbox/patterns.md +203 -0
- package/dist/template/.opencode/skill/cloudflare/references/secrets-store/README.md +58 -0
- package/dist/template/.opencode/skill/cloudflare/references/secrets-store/api.md +182 -0
- package/dist/template/.opencode/skill/cloudflare/references/secrets-store/configuration.md +140 -0
- package/dist/template/.opencode/skill/cloudflare/references/secrets-store/gotchas.md +129 -0
- package/dist/template/.opencode/skill/cloudflare/references/secrets-store/patterns.md +218 -0
- package/dist/template/.opencode/skill/cloudflare/references/smart-placement/README.md +91 -0
- package/dist/template/.opencode/skill/cloudflare/references/smart-placement/api.md +139 -0
- package/dist/template/.opencode/skill/cloudflare/references/smart-placement/configuration.md +129 -0
- package/dist/template/.opencode/skill/cloudflare/references/smart-placement/gotchas.md +87 -0
- package/dist/template/.opencode/skill/cloudflare/references/smart-placement/patterns.md +135 -0
- package/dist/template/.opencode/skill/cloudflare/references/snippets/README.md +15 -0
- package/dist/template/.opencode/skill/cloudflare/references/snippets/api.md +47 -0
- package/dist/template/.opencode/skill/cloudflare/references/snippets/configuration.md +33 -0
- package/dist/template/.opencode/skill/cloudflare/references/snippets/gotchas.md +21 -0
- package/dist/template/.opencode/skill/cloudflare/references/snippets/patterns.md +34 -0
- package/dist/template/.opencode/skill/cloudflare/references/spectrum/README.md +16 -0
- package/dist/template/.opencode/skill/cloudflare/references/spectrum/api.md +24 -0
- package/dist/template/.opencode/skill/cloudflare/references/spectrum/configuration.md +43 -0
- package/dist/template/.opencode/skill/cloudflare/references/spectrum/gotchas.md +42 -0
- package/dist/template/.opencode/skill/cloudflare/references/spectrum/patterns.md +40 -0
- package/dist/template/.opencode/skill/cloudflare/references/static-assets/README.md +14 -0
- package/dist/template/.opencode/skill/cloudflare/references/static-assets/api.md +3 -0
- package/dist/template/.opencode/skill/cloudflare/references/static-assets/configuration.md +47 -0
- package/dist/template/.opencode/skill/cloudflare/references/static-assets/gotchas.md +44 -0
- package/dist/template/.opencode/skill/cloudflare/references/static-assets/patterns.md +42 -0
- package/dist/template/.opencode/skill/cloudflare/references/stream/README.md +103 -0
- package/dist/template/.opencode/skill/cloudflare/references/stream/api.md +204 -0
- package/dist/template/.opencode/skill/cloudflare/references/stream/configuration.md +127 -0
- package/dist/template/.opencode/skill/cloudflare/references/stream/gotchas.md +131 -0
- package/dist/template/.opencode/skill/cloudflare/references/stream/patterns.md +152 -0
- package/dist/template/.opencode/skill/cloudflare/references/tail-workers/README.md +640 -0
- package/dist/template/.opencode/skill/cloudflare/references/terraform/README.md +76 -0
- package/dist/template/.opencode/skill/cloudflare/references/terraform/api.md +159 -0
- package/dist/template/.opencode/skill/cloudflare/references/terraform/configuration.md +156 -0
- package/dist/template/.opencode/skill/cloudflare/references/terraform/gotchas.md +207 -0
- package/dist/template/.opencode/skill/cloudflare/references/terraform/patterns.md +135 -0
- package/dist/template/.opencode/skill/cloudflare/references/tunnel/README.md +82 -0
- package/dist/template/.opencode/skill/cloudflare/references/tunnel/api.md +105 -0
- package/dist/template/.opencode/skill/cloudflare/references/tunnel/configuration.md +113 -0
- package/dist/template/.opencode/skill/cloudflare/references/tunnel/gotchas.md +115 -0
- package/dist/template/.opencode/skill/cloudflare/references/tunnel/patterns.md +157 -0
- package/dist/template/.opencode/skill/cloudflare/references/turn/README.md +699 -0
- package/dist/template/.opencode/skill/cloudflare/references/turnstile/README.md +14 -0
- package/dist/template/.opencode/skill/cloudflare/references/turnstile/api.md +3 -0
- package/dist/template/.opencode/skill/cloudflare/references/turnstile/configuration.md +19 -0
- package/dist/template/.opencode/skill/cloudflare/references/turnstile/gotchas.md +27 -0
- package/dist/template/.opencode/skill/cloudflare/references/turnstile/patterns.md +41 -0
- package/dist/template/.opencode/skill/cloudflare/references/vectorize/README.md +682 -0
- package/dist/template/.opencode/skill/cloudflare/references/waf/README.md +14 -0
- package/dist/template/.opencode/skill/cloudflare/references/waf/api.md +3 -0
- package/dist/template/.opencode/skill/cloudflare/references/waf/configuration.md +44 -0
- package/dist/template/.opencode/skill/cloudflare/references/waf/gotchas.md +24 -0
- package/dist/template/.opencode/skill/cloudflare/references/waf/patterns.md +29 -0
- package/dist/template/.opencode/skill/cloudflare/references/web-analytics/README.md +19 -0
- package/dist/template/.opencode/skill/cloudflare/references/web-analytics/api.md +52 -0
- package/dist/template/.opencode/skill/cloudflare/references/web-analytics/configuration.md +31 -0
- package/dist/template/.opencode/skill/cloudflare/references/web-analytics/gotchas.md +28 -0
- package/dist/template/.opencode/skill/cloudflare/references/web-analytics/patterns.md +52 -0
- package/dist/template/.opencode/skill/cloudflare/references/workerd/README.md +47 -0
- package/dist/template/.opencode/skill/cloudflare/references/workerd/api.md +199 -0
- package/dist/template/.opencode/skill/cloudflare/references/workerd/configuration.md +185 -0
- package/dist/template/.opencode/skill/cloudflare/references/workerd/gotchas.md +203 -0
- package/dist/template/.opencode/skill/cloudflare/references/workerd/patterns.md +216 -0
- package/dist/template/.opencode/skill/cloudflare/references/workers/README.md +96 -0
- package/dist/template/.opencode/skill/cloudflare/references/workers/api.md +137 -0
- package/dist/template/.opencode/skill/cloudflare/references/workers/configuration.md +147 -0
- package/dist/template/.opencode/skill/cloudflare/references/workers/gotchas.md +99 -0
- package/dist/template/.opencode/skill/cloudflare/references/workers/patterns.md +149 -0
- package/dist/template/.opencode/skill/cloudflare/references/workers-ai/README.md +116 -0
- package/dist/template/.opencode/skill/cloudflare/references/workers-for-platforms/README.md +48 -0
- package/dist/template/.opencode/skill/cloudflare/references/workers-for-platforms/api.md +169 -0
- package/dist/template/.opencode/skill/cloudflare/references/workers-for-platforms/configuration.md +136 -0
- package/dist/template/.opencode/skill/cloudflare/references/workers-for-platforms/gotchas.md +130 -0
- package/dist/template/.opencode/skill/cloudflare/references/workers-for-platforms/patterns.md +170 -0
- package/dist/template/.opencode/skill/cloudflare/references/workers-playground/README.md +16 -0
- package/dist/template/.opencode/skill/cloudflare/references/workers-playground/api.md +20 -0
- package/dist/template/.opencode/skill/cloudflare/references/workers-playground/configuration.md +3 -0
- package/dist/template/.opencode/skill/cloudflare/references/workers-playground/gotchas.md +35 -0
- package/dist/template/.opencode/skill/cloudflare/references/workers-playground/patterns.md +42 -0
- package/dist/template/.opencode/skill/cloudflare/references/workers-vpc/README.md +579 -0
- package/dist/template/.opencode/skill/cloudflare/references/workflows/README.md +62 -0
- package/dist/template/.opencode/skill/cloudflare/references/workflows/api.md +125 -0
- package/dist/template/.opencode/skill/cloudflare/references/workflows/configuration.md +177 -0
- package/dist/template/.opencode/skill/cloudflare/references/workflows/gotchas.md +136 -0
- package/dist/template/.opencode/skill/cloudflare/references/workflows/patterns.md +132 -0
- package/dist/template/.opencode/skill/cloudflare/references/wrangler/README.md +90 -0
- package/dist/template/.opencode/skill/cloudflare/references/wrangler/api.md +140 -0
- package/dist/template/.opencode/skill/cloudflare/references/wrangler/configuration.md +128 -0
- package/dist/template/.opencode/skill/cloudflare/references/wrangler/gotchas.md +93 -0
- package/dist/template/.opencode/skill/cloudflare/references/wrangler/patterns.md +150 -0
- package/dist/template/.opencode/skill/cloudflare/references/zaraz/README.md +360 -0
- package/dist/template/.opencode/skill/code-search-patterns/SKILL.md +253 -0
- package/dist/template/.opencode/skill/code-simplification/SKILL.md +211 -0
- package/dist/template/.opencode/skill/condition-based-waiting/SKILL.md +135 -0
- package/dist/template/.opencode/skill/condition-based-waiting/example.ts +158 -0
- package/dist/template/.opencode/skill/context-condensation/SKILL.md +149 -0
- package/dist/template/.opencode/skill/context-engineering/SKILL.md +176 -0
- package/dist/template/.opencode/skill/context-initialization/SKILL.md +69 -0
- package/dist/template/.opencode/skill/context-management/SKILL.md +390 -0
- package/dist/template/.opencode/skill/core-data-expert/SKILL.md +93 -0
- package/dist/template/.opencode/skill/core-data-expert/references/batch-operations.md +543 -0
- package/dist/template/.opencode/skill/core-data-expert/references/cloudkit-integration.md +259 -0
- package/dist/template/.opencode/skill/core-data-expert/references/concurrency.md +522 -0
- package/dist/template/.opencode/skill/core-data-expert/references/fetch-requests.md +643 -0
- package/dist/template/.opencode/skill/core-data-expert/references/glossary.md +233 -0
- package/dist/template/.opencode/skill/core-data-expert/references/migration.md +393 -0
- package/dist/template/.opencode/skill/core-data-expert/references/model-configuration.md +597 -0
- package/dist/template/.opencode/skill/core-data-expert/references/performance.md +300 -0
- package/dist/template/.opencode/skill/core-data-expert/references/persistent-history.md +553 -0
- package/dist/template/.opencode/skill/core-data-expert/references/project-audit.md +60 -0
- package/dist/template/.opencode/skill/core-data-expert/references/saving.md +574 -0
- package/dist/template/.opencode/skill/core-data-expert/references/stack-setup.md +625 -0
- package/dist/template/.opencode/skill/core-data-expert/references/testing.md +300 -0
- package/dist/template/.opencode/skill/core-data-expert/references/threading.md +589 -0
- package/dist/template/.opencode/skill/deep-research/SKILL.md +384 -0
- package/dist/template/.opencode/skill/defense-in-depth/SKILL.md +176 -0
- package/dist/template/.opencode/skill/deprecation-and-migration/SKILL.md +189 -0
- package/dist/template/.opencode/skill/design-direction-advisor/SKILL.md +139 -0
- package/dist/template/.opencode/skill/design-system-audit/SKILL.md +153 -0
- package/dist/template/.opencode/skill/design-taste-frontend/SKILL.md +238 -0
- package/dist/template/.opencode/skill/development-lifecycle/SKILL.md +320 -0
- package/dist/template/.opencode/skill/dispatching-parallel-agents/SKILL.md +191 -0
- package/dist/template/.opencode/skill/documentation-and-adrs/SKILL.md +220 -0
- package/dist/template/.opencode/skill/executing-plans/SKILL.md +247 -0
- package/dist/template/.opencode/skill/figma/SKILL.md +224 -0
- package/dist/template/.opencode/skill/figma-go/SKILL.md +65 -0
- package/dist/template/.opencode/skill/finishing-a-development-branch/SKILL.md +357 -0
- package/dist/template/.opencode/skill/frontend-design/SKILL.md +235 -0
- package/dist/template/.opencode/skill/frontend-design/references/animation/motion-advanced.md +224 -0
- package/dist/template/.opencode/skill/frontend-design/references/animation/motion-core.md +181 -0
- package/dist/template/.opencode/skill/frontend-design/references/canvas/execution.md +90 -0
- package/dist/template/.opencode/skill/frontend-design/references/canvas/philosophy.md +94 -0
- package/dist/template/.opencode/skill/frontend-design/references/design/color-system.md +111 -0
- package/dist/template/.opencode/skill/frontend-design/references/design/interaction.md +149 -0
- package/dist/template/.opencode/skill/frontend-design/references/design/typography-rules.md +106 -0
- package/dist/template/.opencode/skill/frontend-design/references/design/ux-writing.md +99 -0
- package/dist/template/.opencode/skill/frontend-design/references/shadcn/accessibility.md +132 -0
- package/dist/template/.opencode/skill/frontend-design/references/shadcn/core-components.md +153 -0
- package/dist/template/.opencode/skill/frontend-design/references/shadcn/form-components.md +158 -0
- package/dist/template/.opencode/skill/frontend-design/references/shadcn/setup.md +69 -0
- package/dist/template/.opencode/skill/frontend-design/references/shadcn/theming.md +152 -0
- package/dist/template/.opencode/skill/frontend-design/references/tailwind/responsive.md +112 -0
- package/dist/template/.opencode/skill/frontend-design/references/tailwind/utilities-layout.md +134 -0
- package/dist/template/.opencode/skill/frontend-design/references/tailwind/utilities-styling.md +165 -0
- package/dist/template/.opencode/skill/frontend-design/references/tailwind/v4-config.md +147 -0
- package/dist/template/.opencode/skill/frontend-design/references/tailwind/v4-features.md +128 -0
- package/dist/template/.opencode/skill/full-output-enforcement/SKILL.md +62 -0
- package/dist/template/.opencode/skill/gemini-large-context/SKILL.md +216 -0
- package/dist/template/.opencode/skill/gh-address-comments/SKILL.md +29 -0
- package/dist/template/.opencode/skill/gh-address-comments/scripts/fetch_comments.py +237 -0
- package/dist/template/.opencode/skill/gh-fix-ci/SKILL.md +38 -0
- package/dist/template/.opencode/skill/gh-fix-ci/scripts/inspect_pr_checks.py +509 -0
- package/dist/template/.opencode/skill/hi-fi-prototype-html/SKILL.md +253 -0
- package/dist/template/.opencode/skill/high-end-visual-design/SKILL.md +111 -0
- package/dist/template/.opencode/skill/html-deck-export/SKILL.md +189 -0
- package/dist/template/.opencode/skill/incremental-implementation/SKILL.md +191 -0
- package/dist/template/.opencode/skill/index-knowledge/SKILL.md +413 -0
- package/dist/template/.opencode/skill/industrial-brutalist-ui/SKILL.md +105 -0
- package/dist/template/.opencode/skill/jira/SKILL.md +283 -0
- package/dist/template/.opencode/skill/jira/mcp.json +6 -0
- package/dist/template/.opencode/skill/memory-grounding/SKILL.md +68 -0
- package/dist/template/.opencode/skill/memory-system/SKILL.md +148 -0
- package/dist/template/.opencode/skill/minimalist-ui/SKILL.md +98 -0
- package/dist/template/.opencode/skill/mockup-to-code/SKILL.md +184 -0
- package/dist/template/.opencode/skill/opensrc/SKILL.md +284 -0
- package/dist/template/.opencode/skill/opensrc/references/architecture.md +176 -0
- package/dist/template/.opencode/skill/opensrc/references/cli-usage.md +176 -0
- package/dist/template/.opencode/skill/opensrc/references/registry-support.md +137 -0
- package/dist/template/.opencode/skill/pdf-extract/SKILL.md +438 -0
- package/dist/template/.opencode/skill/performance-optimization/SKILL.md +236 -0
- package/dist/template/.opencode/skill/playwright/SKILL.md +381 -0
- package/dist/template/.opencode/skill/playwright/mcp.json +16 -0
- package/dist/template/.opencode/skill/playwright/references/agent-browser-cli.md +405 -0
- package/dist/template/.opencode/skill/playwriter/SKILL.md +158 -0
- package/dist/template/.opencode/skill/polar/SKILL.md +102 -0
- package/dist/template/.opencode/skill/portless/SKILL.md +109 -0
- package/dist/template/.opencode/skill/prd/SKILL.md +146 -0
- package/dist/template/.opencode/skill/prd-task/SKILL.md +182 -0
- package/dist/template/.opencode/skill/prd-task/references/prd-schema.json +124 -0
- package/dist/template/.opencode/skill/prompt-leverage/SKILL.md +90 -0
- package/dist/template/.opencode/skill/prompt-leverage/references/framework.md +91 -0
- package/dist/template/.opencode/skill/prompt-leverage/scripts/augment_prompt.py +157 -0
- package/dist/template/.opencode/skill/react-best-practices/AGENTS.md +2410 -0
- package/dist/template/.opencode/skill/react-best-practices/README.md +123 -0
- package/dist/template/.opencode/skill/react-best-practices/SKILL.md +133 -0
- package/dist/template/.opencode/skill/react-best-practices/metadata.json +15 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/_sections.md +46 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/_template.md +28 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/advanced-event-handler-refs.md +55 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/advanced-use-latest.md +49 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/async-api-routes.md +38 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/async-defer-await.md +80 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/async-dependencies.md +36 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/async-parallel.md +28 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/async-suspense-boundaries.md +99 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/bundle-barrel-imports.md +59 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/bundle-conditional.md +31 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/bundle-defer-third-party.md +49 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/bundle-dynamic-imports.md +35 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/bundle-preload.md +50 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/client-event-listeners.md +74 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/client-localstorage-schema.md +71 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/client-passive-event-listeners.md +48 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/client-swr-dedup.md +56 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/js-batch-dom-css.md +82 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/js-cache-function-results.md +80 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/js-cache-property-access.md +28 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/js-cache-storage.md +70 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/js-combine-iterations.md +32 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/js-early-exit.md +50 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/js-hoist-regexp.md +45 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/js-index-maps.md +37 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/js-length-check-first.md +49 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/js-min-max-loop.md +82 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/js-set-map-lookups.md +24 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/js-tosorted-immutable.md +57 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/rendering-activity.md +26 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/rendering-animate-svg-wrapper.md +47 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/rendering-conditional-render.md +40 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/rendering-content-visibility.md +38 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/rendering-hoist-jsx.md +46 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/rendering-hydration-no-flicker.md +82 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/rendering-svg-precision.md +28 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/rerender-defer-reads.md +39 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/rerender-dependencies.md +45 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/rerender-derived-state.md +29 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/rerender-functional-setstate.md +74 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/rerender-lazy-state-init.md +58 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/rerender-memo.md +44 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/rerender-transitions.md +40 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/server-after-nonblocking.md +73 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/server-cache-lru.md +41 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/server-cache-react.md +76 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/server-parallel-fetching.md +83 -0
- package/dist/template/.opencode/skill/react-best-practices/rules/server-serialization.md +38 -0
- package/dist/template/.opencode/skill/receiving-code-review/SKILL.md +263 -0
- package/dist/template/.opencode/skill/reconcile/SKILL.md +183 -0
- package/dist/template/.opencode/skill/redesign-existing-projects/SKILL.md +191 -0
- package/dist/template/.opencode/skill/reflection-checkpoints/SKILL.md +183 -0
- package/dist/template/.opencode/skill/requesting-code-review/SKILL.md +443 -0
- package/dist/template/.opencode/skill/requesting-code-review/references/specialist-profiles.md +108 -0
- package/dist/template/.opencode/skill/requesting-code-review/review.md +160 -0
- package/dist/template/.opencode/skill/resend/SKILL.md +177 -0
- package/dist/template/.opencode/skill/resend/references/react-email.md +287 -0
- package/dist/template/.opencode/skill/resend/references/receive-email.md +248 -0
- package/dist/template/.opencode/skill/resend/references/send-email.md +318 -0
- package/dist/template/.opencode/skill/root-cause-tracing/SKILL.md +192 -0
- package/dist/template/.opencode/skill/root-cause-tracing/find-polluter.sh +63 -0
- package/dist/template/.opencode/skill/rtk-command-compression/SKILL.md +134 -0
- package/dist/template/.opencode/skill/screenshot/SKILL.md +48 -0
- package/dist/template/.opencode/skill/screenshot/scripts/ensure_macos_permissions.sh +54 -0
- package/dist/template/.opencode/skill/screenshot/scripts/macos_display_info.swift +22 -0
- package/dist/template/.opencode/skill/screenshot/scripts/macos_permissions.swift +40 -0
- package/dist/template/.opencode/skill/screenshot/scripts/macos_window_info.swift +126 -0
- package/dist/template/.opencode/skill/screenshot/scripts/take_screenshot.ps1 +163 -0
- package/dist/template/.opencode/skill/screenshot/scripts/take_screenshot.py +585 -0
- package/dist/template/.opencode/skill/security-and-hardening/SKILL.md +296 -0
- package/dist/template/.opencode/skill/security-threat-model/SKILL.md +36 -0
- package/dist/template/.opencode/skill/security-threat-model/references/prompt-template.md +255 -0
- package/dist/template/.opencode/skill/security-threat-model/references/security-controls-and-assets.md +32 -0
- package/dist/template/.opencode/skill/sharing-skills/SKILL.md +214 -0
- package/dist/template/.opencode/skill/skill-creator/SKILL.md +181 -0
- package/dist/template/.opencode/skill/skill-installer/SKILL.md +58 -0
- package/dist/template/.opencode/skill/skill-installer/scripts/github_utils.py +21 -0
- package/dist/template/.opencode/skill/skill-installer/scripts/install-skill-from-github.py +313 -0
- package/dist/template/.opencode/skill/skill-installer/scripts/list-skills.py +106 -0
- package/dist/template/.opencode/skill/structured-edit/SKILL.md +191 -0
- package/dist/template/.opencode/skill/subagent-driven-development/SKILL.md +237 -0
- package/dist/template/.opencode/skill/supabase/SKILL.md +130 -0
- package/dist/template/.opencode/skill/supabase/mcp.json +27 -0
- package/dist/template/.opencode/skill/supabase-postgres-best-practices/AGENTS.md +1490 -0
- package/dist/template/.opencode/skill/supabase-postgres-best-practices/SKILL.md +65 -0
- package/dist/template/.opencode/skill/supabase-postgres-best-practices/rules/advanced-full-text-search.md +55 -0
- package/dist/template/.opencode/skill/supabase-postgres-best-practices/rules/advanced-jsonb-indexing.md +49 -0
- package/dist/template/.opencode/skill/supabase-postgres-best-practices/rules/conn-idle-timeout.md +46 -0
- package/dist/template/.opencode/skill/supabase-postgres-best-practices/rules/conn-limits.md +44 -0
- package/dist/template/.opencode/skill/supabase-postgres-best-practices/rules/conn-pooling.md +41 -0
- package/dist/template/.opencode/skill/supabase-postgres-best-practices/rules/conn-prepared-statements.md +46 -0
- package/dist/template/.opencode/skill/supabase-postgres-best-practices/rules/data-batch-inserts.md +54 -0
- package/dist/template/.opencode/skill/supabase-postgres-best-practices/rules/data-n-plus-one.md +53 -0
- package/dist/template/.opencode/skill/supabase-postgres-best-practices/rules/data-pagination.md +50 -0
- package/dist/template/.opencode/skill/supabase-postgres-best-practices/rules/data-upsert.md +50 -0
- package/dist/template/.opencode/skill/supabase-postgres-best-practices/rules/lock-advisory.md +56 -0
- package/dist/template/.opencode/skill/supabase-postgres-best-practices/rules/lock-deadlock-prevention.md +68 -0
- package/dist/template/.opencode/skill/supabase-postgres-best-practices/rules/lock-short-transactions.md +50 -0
- package/dist/template/.opencode/skill/supabase-postgres-best-practices/rules/lock-skip-locked.md +54 -0
- package/dist/template/.opencode/skill/supabase-postgres-best-practices/rules/monitor-explain-analyze.md +45 -0
- package/dist/template/.opencode/skill/supabase-postgres-best-practices/rules/monitor-pg-stat-statements.md +55 -0
- package/dist/template/.opencode/skill/supabase-postgres-best-practices/rules/monitor-vacuum-analyze.md +55 -0
- package/dist/template/.opencode/skill/supabase-postgres-best-practices/rules/query-composite-indexes.md +44 -0
- package/dist/template/.opencode/skill/supabase-postgres-best-practices/rules/query-covering-indexes.md +40 -0
- package/dist/template/.opencode/skill/supabase-postgres-best-practices/rules/query-index-types.md +45 -0
- package/dist/template/.opencode/skill/supabase-postgres-best-practices/rules/query-missing-indexes.md +43 -0
- package/dist/template/.opencode/skill/supabase-postgres-best-practices/rules/query-partial-indexes.md +45 -0
- package/dist/template/.opencode/skill/supabase-postgres-best-practices/rules/schema-data-types.md +46 -0
- package/dist/template/.opencode/skill/supabase-postgres-best-practices/rules/schema-foreign-key-indexes.md +59 -0
- package/dist/template/.opencode/skill/supabase-postgres-best-practices/rules/schema-lowercase-identifiers.md +55 -0
- package/dist/template/.opencode/skill/supabase-postgres-best-practices/rules/schema-partitioning.md +55 -0
- package/dist/template/.opencode/skill/supabase-postgres-best-practices/rules/schema-primary-keys.md +61 -0
- package/dist/template/.opencode/skill/supabase-postgres-best-practices/rules/security-privileges.md +54 -0
- package/dist/template/.opencode/skill/supabase-postgres-best-practices/rules/security-rls-basics.md +50 -0
- package/dist/template/.opencode/skill/supabase-postgres-best-practices/rules/security-rls-performance.md +57 -0
- package/dist/template/.opencode/skill/swarm-coordination/SKILL.md +244 -0
- package/dist/template/.opencode/skill/swarm-coordination/references/architecture.md +39 -0
- package/dist/template/.opencode/skill/swarm-coordination/references/delegation-worker-protocol.md +145 -0
- package/dist/template/.opencode/skill/swarm-coordination/references/dependency-graph.md +50 -0
- package/dist/template/.opencode/skill/swarm-coordination/references/drift-check.md +90 -0
- package/dist/template/.opencode/skill/swarm-coordination/references/integration-beads.md +20 -0
- package/dist/template/.opencode/skill/swarm-coordination/references/launch-flow.md +186 -0
- package/dist/template/.opencode/skill/swarm-coordination/references/reconciler.md +172 -0
- package/dist/template/.opencode/skill/swarm-coordination/references/tier-enforcement.md +78 -0
- package/dist/template/.opencode/skill/swarm-coordination/references/tmux-integration.md +134 -0
- package/dist/template/.opencode/skill/swift-concurrency/SKILL.md +266 -0
- package/dist/template/.opencode/skill/swift-concurrency/references/actors.md +640 -0
- package/dist/template/.opencode/skill/swift-concurrency/references/async-algorithms.md +822 -0
- package/dist/template/.opencode/skill/swift-concurrency/references/async-await-basics.md +249 -0
- package/dist/template/.opencode/skill/swift-concurrency/references/async-sequences.md +670 -0
- package/dist/template/.opencode/skill/swift-concurrency/references/core-data.md +533 -0
- package/dist/template/.opencode/skill/swift-concurrency/references/glossary.md +128 -0
- package/dist/template/.opencode/skill/swift-concurrency/references/linting.md +142 -0
- package/dist/template/.opencode/skill/swift-concurrency/references/memory-management.md +542 -0
- package/dist/template/.opencode/skill/swift-concurrency/references/migration.md +1076 -0
- package/dist/template/.opencode/skill/swift-concurrency/references/performance.md +574 -0
- package/dist/template/.opencode/skill/swift-concurrency/references/sendable.md +578 -0
- package/dist/template/.opencode/skill/swift-concurrency/references/tasks.md +604 -0
- package/dist/template/.opencode/skill/swift-concurrency/references/testing.md +565 -0
- package/dist/template/.opencode/skill/swift-concurrency/references/threading.md +452 -0
- package/dist/template/.opencode/skill/swiftui-expert-skill/SKILL.md +329 -0
- package/dist/template/.opencode/skill/swiftui-expert-skill/references/animation-advanced.md +351 -0
- package/dist/template/.opencode/skill/swiftui-expert-skill/references/animation-basics.md +284 -0
- package/dist/template/.opencode/skill/swiftui-expert-skill/references/animation-transitions.md +326 -0
- package/dist/template/.opencode/skill/swiftui-expert-skill/references/image-optimization.md +286 -0
- package/dist/template/.opencode/skill/swiftui-expert-skill/references/layout-best-practices.md +312 -0
- package/dist/template/.opencode/skill/swiftui-expert-skill/references/liquid-glass.md +377 -0
- package/dist/template/.opencode/skill/swiftui-expert-skill/references/list-patterns.md +153 -0
- package/dist/template/.opencode/skill/swiftui-expert-skill/references/modern-apis.md +400 -0
- package/dist/template/.opencode/skill/swiftui-expert-skill/references/performance-patterns.md +377 -0
- package/dist/template/.opencode/skill/swiftui-expert-skill/references/scroll-patterns.md +305 -0
- package/dist/template/.opencode/skill/swiftui-expert-skill/references/sheet-navigation-patterns.md +292 -0
- package/dist/template/.opencode/skill/swiftui-expert-skill/references/state-management.md +447 -0
- package/dist/template/.opencode/skill/swiftui-expert-skill/references/text-formatting.md +285 -0
- package/dist/template/.opencode/skill/swiftui-expert-skill/references/view-structure.md +276 -0
- package/dist/template/.opencode/skill/systematic-debugging/SKILL.md +402 -0
- package/dist/template/.opencode/skill/terse-output-mode/SKILL.md +95 -0
- package/dist/template/.opencode/skill/test-driven-development/SKILL.md +403 -0
- package/dist/template/.opencode/skill/testing-anti-patterns/SKILL.md +333 -0
- package/dist/template/.opencode/skill/think-in-code/SKILL.md +136 -0
- package/dist/template/.opencode/skill/using-git-worktrees/SKILL.md +259 -0
- package/dist/template/.opencode/skill/ux-quality-gates/SKILL.md +137 -0
- package/dist/template/.opencode/skill/v0/SKILL.md +158 -0
- package/dist/template/.opencode/skill/v1-run/SKILL.md +175 -0
- package/dist/template/.opencode/skill/v1-run/mcp.json +6 -0
- package/dist/template/.opencode/skill/vercel-deploy-claimable/SKILL.md +124 -0
- package/dist/template/.opencode/skill/vercel-deploy-claimable/scripts/deploy.sh +249 -0
- package/dist/template/.opencode/skill/verification-before-completion/SKILL.md +357 -0
- package/dist/template/.opencode/skill/verification-before-completion/references/VERIFICATION_PROTOCOL.md +171 -0
- package/dist/template/.opencode/skill/verification-gates/SKILL.md +63 -0
- package/dist/template/.opencode/skill/visual-analysis/SKILL.md +154 -0
- package/dist/template/.opencode/skill/web-design-guidelines/SKILL.md +46 -0
- package/dist/template/.opencode/skill/webclaw/SKILL.md +155 -0
- package/dist/template/.opencode/skill/workspace-setup/SKILL.md +76 -0
- package/dist/template/.opencode/skill/writing-plans/SKILL.md +320 -0
- package/dist/template/.opencode/skill/writing-skills/SKILL.md +324 -0
- package/dist/template/.opencode/skill/writing-skills/anthropic-best-practices.md +1173 -0
- package/dist/template/.opencode/skill/writing-skills/graphviz-conventions.dot +172 -0
- package/dist/template/.opencode/skill/writing-skills/persuasion-principles.md +220 -0
- package/dist/template/.opencode/skill/writing-skills/references/anti-patterns.md +25 -0
- package/dist/template/.opencode/skill/writing-skills/references/claude-search-optimization.md +140 -0
- package/dist/template/.opencode/skill/writing-skills/references/discovery-workflow.md +11 -0
- package/dist/template/.opencode/skill/writing-skills/references/file-organization.md +32 -0
- package/dist/template/.opencode/skill/writing-skills/references/flowcharts-and-examples.md +57 -0
- package/dist/template/.opencode/skill/writing-skills/references/rationalization-hardening.md +75 -0
- package/dist/template/.opencode/skill/writing-skills/references/testing-methodology.md +397 -0
- package/dist/template/.opencode/skill/writing-skills/references/testing-skill-types.md +52 -0
- package/dist/template/.opencode/tool/context7.ts +191 -0
- package/dist/template/.opencode/tool/grepsearch.ts +143 -0
- package/dist/template/.opencode/tsconfig.json +21 -0
- package/dist/template/.opencode/tui.json +15 -0
- package/package.json +78 -0
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: accessibility-audit
|
|
3
|
+
description: Use when auditing UI components or pages for accessibility compliance, checking WCAG conformance, identifying keyboard navigation issues, color contrast problems, and pre-launch accessibility verification
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
tags: [ui, code-quality]
|
|
6
|
+
dependencies: []
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# Accessibility Audit Skill
|
|
10
|
+
|
|
11
|
+
## When to Use
|
|
12
|
+
|
|
13
|
+
- Reviewing UI components for accessibility compliance
|
|
14
|
+
- Auditing pages for WCAG conformance
|
|
15
|
+
- Identifying keyboard navigation issues
|
|
16
|
+
- Checking color contrast
|
|
17
|
+
- Pre-launch accessibility verification
|
|
18
|
+
|
|
19
|
+
## When NOT to Use
|
|
20
|
+
|
|
21
|
+
- Non-UI work where accessibility isn't applicable.
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
## Core Workflow
|
|
25
|
+
|
|
26
|
+
### Phase 1: Visual Accessibility Analysis
|
|
27
|
+
|
|
28
|
+
```
|
|
29
|
+
Perform a comprehensive accessibility audit:
|
|
30
|
+
|
|
31
|
+
1. COLOR CONTRAST
|
|
32
|
+
- Check text/background contrast ratios
|
|
33
|
+
- WCAG AA: 4.5:1 normal text, 3:1 large text
|
|
34
|
+
- Identify failing elements
|
|
35
|
+
|
|
36
|
+
2. VISUAL HIERARCHY
|
|
37
|
+
- Heading structure (logical H1-H6)
|
|
38
|
+
- Visual grouping of related elements
|
|
39
|
+
- Touch targets (44x44px minimum)
|
|
40
|
+
|
|
41
|
+
3. CONTENT ACCESSIBILITY
|
|
42
|
+
- Images needing alt text
|
|
43
|
+
- Icons without text labels
|
|
44
|
+
- Color-only information
|
|
45
|
+
|
|
46
|
+
4. INTERACTIVE ELEMENTS
|
|
47
|
+
- Buttons/links with unclear purpose
|
|
48
|
+
- Form fields without labels
|
|
49
|
+
- Missing error states
|
|
50
|
+
|
|
51
|
+
5. MOTION
|
|
52
|
+
- Auto-playing content
|
|
53
|
+
- Potential vestibular triggers
|
|
54
|
+
|
|
55
|
+
Provide WCAG criterion references for each issue.
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
### Phase 2: Component Checklist
|
|
59
|
+
|
|
60
|
+
For each interactive component:
|
|
61
|
+
|
|
62
|
+
```markdown
|
|
63
|
+
## Component: [Name]
|
|
64
|
+
|
|
65
|
+
### Keyboard Navigation
|
|
66
|
+
|
|
67
|
+
- [ ] Focusable with Tab
|
|
68
|
+
- [ ] Visible focus indicator
|
|
69
|
+
- [ ] Operable with Enter/Space
|
|
70
|
+
- [ ] Escape closes modals
|
|
71
|
+
- [ ] Arrow keys for menus
|
|
72
|
+
|
|
73
|
+
### Screen Reader
|
|
74
|
+
|
|
75
|
+
- [ ] Meaningful accessible name
|
|
76
|
+
- [ ] Role announced correctly
|
|
77
|
+
- [ ] State changes announced
|
|
78
|
+
- [ ] Errors associated with inputs
|
|
79
|
+
|
|
80
|
+
### Visual
|
|
81
|
+
|
|
82
|
+
- [ ] 4.5:1 contrast ratio (text)
|
|
83
|
+
- [ ] 3:1 contrast ratio (UI)
|
|
84
|
+
- [ ] 44x44px touch targets
|
|
85
|
+
- [ ] No color-only information
|
|
86
|
+
|
|
87
|
+
### Motion
|
|
88
|
+
|
|
89
|
+
- [ ] Respects prefers-reduced-motion
|
|
90
|
+
- [ ] No auto-play >5 seconds
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
## WCAG Quick Reference
|
|
94
|
+
|
|
95
|
+
### Level A (Minimum)
|
|
96
|
+
|
|
97
|
+
| Criterion | Description | Fix |
|
|
98
|
+
| --------- | ---------------------- | ----------------- |
|
|
99
|
+
| 1.1.1 | Non-text Content | Add alt text |
|
|
100
|
+
| 1.3.1 | Info and Relationships | Use semantic HTML |
|
|
101
|
+
| 2.1.1 | Keyboard | All via keyboard |
|
|
102
|
+
| 2.4.1 | Bypass Blocks | Skip links |
|
|
103
|
+
| 4.1.2 | Name, Role, Value | ARIA labels |
|
|
104
|
+
|
|
105
|
+
### Level AA (Recommended)
|
|
106
|
+
|
|
107
|
+
| Criterion | Description | Fix |
|
|
108
|
+
| --------- | ------------- | ---------------------- |
|
|
109
|
+
| 1.4.3 | Contrast | 4.5:1 text, 3:1 UI |
|
|
110
|
+
| 1.4.4 | Resize Text | Support 200% zoom |
|
|
111
|
+
| 2.4.6 | Headings | Descriptive headings |
|
|
112
|
+
| 2.4.7 | Focus Visible | Clear focus indicators |
|
|
113
|
+
|
|
114
|
+
## Common Fixes
|
|
115
|
+
|
|
116
|
+
### Accessible Button
|
|
117
|
+
|
|
118
|
+
```tsx
|
|
119
|
+
// Bad
|
|
120
|
+
<div onClick={handleClick}>Click me</div>
|
|
121
|
+
|
|
122
|
+
// Good
|
|
123
|
+
<button type="button" onClick={handleClick}>
|
|
124
|
+
Click me
|
|
125
|
+
</button>
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
### Accessible Icon Button
|
|
129
|
+
|
|
130
|
+
```tsx
|
|
131
|
+
// Bad
|
|
132
|
+
<button><Icon /></button>
|
|
133
|
+
|
|
134
|
+
// Good
|
|
135
|
+
<button aria-label="Close dialog">
|
|
136
|
+
<Icon aria-hidden="true" />
|
|
137
|
+
</button>
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
### Form with Error
|
|
141
|
+
|
|
142
|
+
```tsx
|
|
143
|
+
<label htmlFor="email">Email</label>
|
|
144
|
+
<input
|
|
145
|
+
id="email"
|
|
146
|
+
aria-describedby="email-error"
|
|
147
|
+
aria-invalid={hasError}
|
|
148
|
+
/>
|
|
149
|
+
{hasError && (
|
|
150
|
+
<span id="email-error" role="alert">
|
|
151
|
+
Please enter a valid email
|
|
152
|
+
</span>
|
|
153
|
+
)}
|
|
154
|
+
```
|
|
155
|
+
|
|
156
|
+
## Report Template
|
|
157
|
+
|
|
158
|
+
```markdown
|
|
159
|
+
# Accessibility Audit Report
|
|
160
|
+
|
|
161
|
+
**Date:** [Date]
|
|
162
|
+
**Page:** [Name]
|
|
163
|
+
**WCAG Level:** AA
|
|
164
|
+
|
|
165
|
+
## Summary
|
|
166
|
+
|
|
167
|
+
- Critical Issues: X
|
|
168
|
+
- Major Issues: X
|
|
169
|
+
- Minor Issues: X
|
|
170
|
+
|
|
171
|
+
## Issues
|
|
172
|
+
|
|
173
|
+
### [Issue Title]
|
|
174
|
+
|
|
175
|
+
- **Severity:** Critical/Major/Minor
|
|
176
|
+
- **WCAG:** [X.X.X]
|
|
177
|
+
- **Element:** [selector]
|
|
178
|
+
- **Issue:** [Description]
|
|
179
|
+
- **Fix:** [Recommendation]
|
|
180
|
+
```
|
|
181
|
+
|
|
182
|
+
## Storage
|
|
183
|
+
|
|
184
|
+
Save audit reports to `.opencode/memory/design/accessibility/`
|
|
185
|
+
|
|
186
|
+
## Related Skills
|
|
187
|
+
|
|
188
|
+
| Need | Skill |
|
|
189
|
+
| -------------- | ----------------- |
|
|
190
|
+
| Design quality | `frontend-design` |
|
|
191
|
+
| UI research | `ui-ux-research` |
|
|
@@ -0,0 +1,208 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: agent-evals
|
|
3
|
+
description: Use when adding/changing a skill, command, or agent prompt and you want evidence it actually helps — not just intuition. Defines bounded-task evals, no-skill baselines, deterministic verifiers, JSONL trace logs, and when to skip eval. Adapted from OpenAI eval guide, OpenHands "evaluating agent skills", Anthropic "demystifying evals".
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Agent Evals
|
|
7
|
+
|
|
8
|
+
> Without evals, every skill ships on vibes. The harness-engineering literature is unanimous: **measured changes beat believed-changes**. This skill gives you the smallest workable eval loop.
|
|
9
|
+
|
|
10
|
+
## When to Use
|
|
11
|
+
|
|
12
|
+
Run an eval when:
|
|
13
|
+
|
|
14
|
+
- Adding a new skill that claims to improve outcomes (`anti-ai-slop`, `prompt-leverage`, `condition-based-waiting`)
|
|
15
|
+
- Changing a prompt or instruction in an agent (`build`, `plan`, `review`)
|
|
16
|
+
- Comparing two approaches and you don't know which is better
|
|
17
|
+
- A skill is suspected of being inert ("does this even do anything?")
|
|
18
|
+
|
|
19
|
+
**Skip eval when:**
|
|
20
|
+
|
|
21
|
+
- The change is mechanical (rename, refactor, lint fix)
|
|
22
|
+
- The change is a one-shot fix with obvious verification (test passes / build green)
|
|
23
|
+
- The skill is purely procedural with deterministic output (workspace setup)
|
|
24
|
+
|
|
25
|
+
## Core Principle: Bounded + Baseline + Verifier
|
|
26
|
+
|
|
27
|
+
Three ingredients. Skip any one and the eval is theatre.
|
|
28
|
+
|
|
29
|
+
1. **Bounded task** — a concrete prompt with a definite finish line, runnable in <5 minutes
|
|
30
|
+
2. **No-skill baseline** — the same task run **without** the skill loaded, for comparison
|
|
31
|
+
3. **Deterministic verifier** — a check that returns pass/fail without human judgment
|
|
32
|
+
|
|
33
|
+
If you cannot write the verifier, the skill's value is unmeasurable and you are guessing.
|
|
34
|
+
|
|
35
|
+
## Eval Loop (Minimum Viable)
|
|
36
|
+
|
|
37
|
+
### Step 1: Define the task
|
|
38
|
+
|
|
39
|
+
Pick a real failure mode the skill targets. One paragraph, copy-pastable as a prompt.
|
|
40
|
+
|
|
41
|
+
```markdown
|
|
42
|
+
## Task: anti-ai-slop / no-purple-gradient
|
|
43
|
+
|
|
44
|
+
**Prompt:** "Build a landing page hero for a coffee roastery brand. Single HTML file."
|
|
45
|
+
|
|
46
|
+
**Verifier (deterministic):**
|
|
47
|
+
|
|
48
|
+
- grep output for `linear-gradient.*purple|#[89a]\d[0-9a-f]\d{3}` → must return 0 matches
|
|
49
|
+
- grep output for `Inter|Roboto` in `font-family` → must return 0 matches
|
|
50
|
+
- File contains `<h1>` with content → must be true
|
|
51
|
+
|
|
52
|
+
**Pass criteria:** all 3 checks pass
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
### Step 2: Run baseline (no skill)
|
|
56
|
+
|
|
57
|
+
Fresh subagent, **don't load the skill**. Same prompt. Save output.
|
|
58
|
+
|
|
59
|
+
```typescript
|
|
60
|
+
task({
|
|
61
|
+
subagent_type: "general",
|
|
62
|
+
description: "Baseline: coffee landing page",
|
|
63
|
+
prompt:
|
|
64
|
+
"Build a landing page hero for a coffee roastery brand. Single HTML file. Output the full HTML only.",
|
|
65
|
+
});
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
Save result to `.beads/artifacts/<eval-id>/baseline.html`.
|
|
69
|
+
|
|
70
|
+
### Step 3: Run treatment (with skill)
|
|
71
|
+
|
|
72
|
+
Fresh subagent, **load the skill explicitly** in prompt. Same task.
|
|
73
|
+
|
|
74
|
+
```typescript
|
|
75
|
+
task({
|
|
76
|
+
subagent_type: "general",
|
|
77
|
+
description: "Treatment: coffee landing page",
|
|
78
|
+
prompt: `First load the anti-ai-slop skill. Then: Build a landing page hero for a coffee roastery brand. Single HTML file. Output the full HTML only.`,
|
|
79
|
+
});
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
Save result to `.beads/artifacts/<eval-id>/treatment.html`.
|
|
83
|
+
|
|
84
|
+
### Step 4: Run verifier on both
|
|
85
|
+
|
|
86
|
+
```bash
|
|
87
|
+
# Baseline
|
|
88
|
+
grep -cE "linear-gradient.*purple|#[89a][0-9a-f]" baseline.html
|
|
89
|
+
grep -cE "(Inter|Roboto)" baseline.html
|
|
90
|
+
|
|
91
|
+
# Treatment
|
|
92
|
+
grep -cE "linear-gradient.*purple|#[89a][0-9a-f]" treatment.html
|
|
93
|
+
grep -cE "(Inter|Roboto)" treatment.html
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
### Step 5: Record result
|
|
97
|
+
|
|
98
|
+
Append one JSONL line to `.opencode/evals/log.jsonl`:
|
|
99
|
+
|
|
100
|
+
```json
|
|
101
|
+
{
|
|
102
|
+
"eval_id": "anti-slop-001",
|
|
103
|
+
"skill": "anti-ai-slop",
|
|
104
|
+
"date": "2026-04-21",
|
|
105
|
+
"baseline_pass": false,
|
|
106
|
+
"treatment_pass": true,
|
|
107
|
+
"delta": "+1",
|
|
108
|
+
"notes": "baseline used purple gradient + Inter; treatment used warm browns + Source Serif"
|
|
109
|
+
}
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
## Multi-Run for Confidence
|
|
113
|
+
|
|
114
|
+
A single run can be lucky. For a skill you're seriously evaluating:
|
|
115
|
+
|
|
116
|
+
- Run baseline **3 times**, treatment **3 times** (different seeds via different prompts framings)
|
|
117
|
+
- Report pass-rate not single result: `baseline 1/3, treatment 3/3`
|
|
118
|
+
- If treatment ≤ baseline, the skill is **inert or harmful** — fix or delete
|
|
119
|
+
|
|
120
|
+
## Verifier Patterns That Work
|
|
121
|
+
|
|
122
|
+
| Skill type | Verifier |
|
|
123
|
+
| ---------------------- | ----------------------------------------------------------------- |
|
|
124
|
+
| Anti-pattern avoidance | `grep` for the banned pattern → expect 0 |
|
|
125
|
+
| Required output shape | JSON schema validation, presence of required sections |
|
|
126
|
+
| Code correctness | run the code, run its tests, check exit code |
|
|
127
|
+
| Behavior change | call site count via `tilth_search`, file existence, line counts |
|
|
128
|
+
| UI / visual | Playwright screenshot + pixel diff against expected, or DOM query |
|
|
129
|
+
| Refusal / safety | grep for forbidden phrases or correct refusal pattern |
|
|
130
|
+
|
|
131
|
+
## Verifier Anti-Patterns (Don't Use)
|
|
132
|
+
|
|
133
|
+
- "Ask another LLM if this is good" — non-deterministic, expensive, judgment-laden
|
|
134
|
+
- "Check if it looks right" — not a verifier, that's a vibe
|
|
135
|
+
- "Pass if no errors thrown" — too weak, baseline also passes
|
|
136
|
+
- "Manually inspect" — fine for one-off, useless for regression
|
|
137
|
+
|
|
138
|
+
## Trace Logging Format
|
|
139
|
+
|
|
140
|
+
For multi-step evals (agent ran 5 tool calls, made 3 edits), log the trace:
|
|
141
|
+
|
|
142
|
+
```json
|
|
143
|
+
{
|
|
144
|
+
"eval_id": "ship-flow-002",
|
|
145
|
+
"steps": [
|
|
146
|
+
{ "tool": "task", "args": { "subagent_type": "explore" }, "ok": true },
|
|
147
|
+
{ "tool": "edit", "args": { "path": "src/auth.ts" }, "ok": true },
|
|
148
|
+
{ "tool": "bash", "args": { "command": "npm test" }, "ok": false, "exit_code": 1 }
|
|
149
|
+
],
|
|
150
|
+
"outcome": "failed_at_step_3",
|
|
151
|
+
"verifier_pass": false
|
|
152
|
+
}
|
|
153
|
+
```
|
|
154
|
+
|
|
155
|
+
This lets you find **which step** failed across many runs — surfaces flaky points in a workflow.
|
|
156
|
+
|
|
157
|
+
## When Eval Disagrees with Intuition
|
|
158
|
+
|
|
159
|
+
The skill **feels** great but the eval says baseline ≥ treatment. Trust the eval. Common causes:
|
|
160
|
+
|
|
161
|
+
1. The skill is too long — the agent ignored it
|
|
162
|
+
2. The skill targets a problem the model already handles
|
|
163
|
+
3. The verifier doesn't measure what the skill actually changes (re-read your verifier)
|
|
164
|
+
4. The baseline prompt was too easy (try a harder task)
|
|
165
|
+
|
|
166
|
+
Fix in this order: verifier → task difficulty → skill content. Delete the skill if all three fail.
|
|
167
|
+
|
|
168
|
+
## Eval Storage Convention
|
|
169
|
+
|
|
170
|
+
```
|
|
171
|
+
.opencode/evals/
|
|
172
|
+
├── log.jsonl # append-only, one line per run
|
|
173
|
+
├── tasks/ # task definitions
|
|
174
|
+
│ ├── anti-slop-001.md
|
|
175
|
+
│ └── ship-flow-002.md
|
|
176
|
+
└── artifacts/ # baseline.* and treatment.* outputs
|
|
177
|
+
└── <eval_id>/
|
|
178
|
+
```
|
|
179
|
+
|
|
180
|
+
Keep evals in-repo. They're documentation that the skill works.
|
|
181
|
+
|
|
182
|
+
## Integration with `/health` and `/curate`
|
|
183
|
+
|
|
184
|
+
- `/health` should flag skills with **zero eval coverage** as IMPORTANT (not CRITICAL — many skills are simple enough not to need it)
|
|
185
|
+
- `/curate` should surface eval results when proposing skill consolidation: "skill X has 0/5 passes over last 3 months, propose deletion"
|
|
186
|
+
|
|
187
|
+
## Cost Discipline
|
|
188
|
+
|
|
189
|
+
- Each eval run = 1 subagent call. 6 runs (3 baseline + 3 treatment) = 6 calls.
|
|
190
|
+
- Don't eval every skill. Eval the ones whose **value is contested** or whose **failure would be expensive**.
|
|
191
|
+
- Cache baseline runs — re-run only when the underlying model changes.
|
|
192
|
+
|
|
193
|
+
## Output
|
|
194
|
+
|
|
195
|
+
After running an eval, return:
|
|
196
|
+
|
|
197
|
+
```markdown
|
|
198
|
+
## Eval: <skill-name>
|
|
199
|
+
|
|
200
|
+
- **Task:** [one line]
|
|
201
|
+
- **Baseline:** N/M passes
|
|
202
|
+
- **Treatment:** N/M passes
|
|
203
|
+
- **Delta:** [+/-N]
|
|
204
|
+
- **Verdict:** keep | iterate | delete
|
|
205
|
+
- **Trace:** `.opencode/evals/log.jsonl` line <N>
|
|
206
|
+
```
|
|
207
|
+
|
|
208
|
+
Brief. Evidence-based. No padding.
|
|
@@ -0,0 +1,268 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: agent-teams
|
|
3
|
+
description: >
|
|
4
|
+
Use when working with Claude Code-style agent teams for parallel research, review, competing hypotheses,
|
|
5
|
+
or any task that benefits from multiple agents working simultaneously under a lead coordinator.
|
|
6
|
+
Covers team configuration, task distribution, coordination patterns, and best practices.
|
|
7
|
+
version: "1.0.0"
|
|
8
|
+
license: MIT
|
|
9
|
+
tags: [agent-coordination, workflow]
|
|
10
|
+
dependencies: []
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# Agent Teams - Multi-Agent Team Coordination
|
|
14
|
+
|
|
15
|
+
> **Replaces** single-agent sequential work when tasks benefit from parallel research, review, or competing hypotheses
|
|
16
|
+
|
|
17
|
+
## When to Use
|
|
18
|
+
|
|
19
|
+
- Parallel research, review, or competing approaches that need coordination
|
|
20
|
+
- Tasks benefit from shared findings and a lead coordinating teammates
|
|
21
|
+
|
|
22
|
+
## When NOT to Use
|
|
23
|
+
|
|
24
|
+
- Single-agent tasks or tightly coupled edits where coordination overhead is wasteful
|
|
25
|
+
- Simple parallel work that can use fire-and-forget subagents instead
|
|
26
|
+
|
|
27
|
+
## Overview
|
|
28
|
+
|
|
29
|
+
**Agent Teams = Lead + Teammates + Shared Task List + Messaging**
|
|
30
|
+
|
|
31
|
+
- **Lead agent**: Coordinates the team - distributes tasks, monitors progress, synthesizes results
|
|
32
|
+
- **Teammates**: Execute tasks independently but can message each other and the lead
|
|
33
|
+
- **Task list**: Shared work queue that the lead manages
|
|
34
|
+
- **Messaging**: Bidirectional communication between lead and teammates
|
|
35
|
+
|
|
36
|
+
## When to Use Agent Teams vs Subagents
|
|
37
|
+
|
|
38
|
+
| Criteria | Agent Teams | Subagents (Task tool) |
|
|
39
|
+
| --------------------- | -------------------------------------- | ----------------------------------- |
|
|
40
|
+
| **Coordination** | Lead coordinates, teammates message | Fire-and-forget, results return |
|
|
41
|
+
| **Communication** | Bidirectional messaging | One-way (result only) |
|
|
42
|
+
| **Task reassignment** | Dynamic - lead can reassign | Fixed - each subagent does its task |
|
|
43
|
+
| **Context sharing** | Shared through lead | Independent contexts |
|
|
44
|
+
| **Best for** | Research, review, competing approaches | Independent implementation tasks |
|
|
45
|
+
| **Overhead** | Higher - coordination cost | Lower - no coordination |
|
|
46
|
+
|
|
47
|
+
### Decision Matrix
|
|
48
|
+
|
|
49
|
+
```
|
|
50
|
+
Need coordination between workers? → Agent Teams
|
|
51
|
+
Workers are fully independent? → Subagents (Task tool)
|
|
52
|
+
Need competing hypotheses? → Agent Teams
|
|
53
|
+
Need shared findings? → Agent Teams
|
|
54
|
+
Simple parallel execution? → Subagents (Task tool)
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
### Parallel Skill Selection
|
|
58
|
+
|
|
59
|
+
| Scenario | Use This Skill |
|
|
60
|
+
| ------------------------------------------- | --------------------------- |
|
|
61
|
+
| 3+ independent bug investigations | dispatching-parallel-agents |
|
|
62
|
+
| Coordinated team (research + review + impl) | agent-teams |
|
|
63
|
+
| Large plan with dependency graph | swarm-coordination |
|
|
64
|
+
| 2 independent tasks | Just use 2 Task() calls |
|
|
65
|
+
|
|
66
|
+
## When to Use
|
|
67
|
+
|
|
68
|
+
- **Parallel research**: Multiple agents researching different aspects of a problem
|
|
69
|
+
- **Code review**: Multiple reviewers examining different files/concerns
|
|
70
|
+
- **Competing hypotheses**: Agents try different approaches, best one wins
|
|
71
|
+
- **Large refactors**: Agents handle different subsystems with coordination
|
|
72
|
+
- **Architecture exploration**: Agents explore different design options simultaneously
|
|
73
|
+
|
|
74
|
+
## When NOT to Use
|
|
75
|
+
|
|
76
|
+
- Single-agent tasks (overhead not worth it)
|
|
77
|
+
- Tightly coupled work where agents would constantly block each other
|
|
78
|
+
- Tasks under 3 independent units of work
|
|
79
|
+
- Simple file edits with no research needed
|
|
80
|
+
|
|
81
|
+
## Team Configuration Patterns
|
|
82
|
+
|
|
83
|
+
### Pattern 1: Research Team
|
|
84
|
+
|
|
85
|
+
```
|
|
86
|
+
Lead: build agent
|
|
87
|
+
├── Teammate 1 (explore): Search codebase for existing patterns
|
|
88
|
+
├── Teammate 2 (scout): Research external docs and best practices
|
|
89
|
+
└── Teammate 3 (review): Analyze current implementation for issues
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
**Use when**: Entering unfamiliar territory, evaluating new libraries, understanding complex systems.
|
|
93
|
+
|
|
94
|
+
### Pattern 2: Review Team
|
|
95
|
+
|
|
96
|
+
```
|
|
97
|
+
Lead: build agent
|
|
98
|
+
├── Teammate 1 (review): Security audit
|
|
99
|
+
├── Teammate 2 (review): Performance review
|
|
100
|
+
└── Teammate 3 (review): Architecture review
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
**Use when**: Pre-merge review of significant features, security-sensitive changes.
|
|
104
|
+
|
|
105
|
+
### Pattern 3: Competing Approaches
|
|
106
|
+
|
|
107
|
+
```
|
|
108
|
+
Lead: build agent
|
|
109
|
+
├── Teammate 1 (general): Implement approach A
|
|
110
|
+
├── Teammate 2 (general): Implement approach B
|
|
111
|
+
└── Teammate 3 (general): Implement approach C
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
**Use when**: Multiple valid solutions exist and you need to compare empirically.
|
|
115
|
+
|
|
116
|
+
### Pattern 4: Subsystem Team
|
|
117
|
+
|
|
118
|
+
```
|
|
119
|
+
Lead: build agent
|
|
120
|
+
├── Teammate 1 (general): Handle frontend changes
|
|
121
|
+
├── Teammate 2 (general): Handle backend changes
|
|
122
|
+
└── Teammate 3 (general): Handle database migrations
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
**Use when**: Large features spanning multiple subsystems with clear boundaries.
|
|
126
|
+
|
|
127
|
+
## Best Practices
|
|
128
|
+
|
|
129
|
+
### Task Distribution
|
|
130
|
+
|
|
131
|
+
1. **5-6 tasks per teammate maximum** - More than this degrades quality
|
|
132
|
+
2. **Clear boundaries** - Each teammate should own distinct files/modules
|
|
133
|
+
3. **Avoid file conflicts** - Never assign the same file to multiple teammates
|
|
134
|
+
4. **Include verification** - Each task should include its own verification step
|
|
135
|
+
|
|
136
|
+
### Coordination
|
|
137
|
+
|
|
138
|
+
1. **Lead synthesizes** - Don't let teammates make final decisions; lead integrates
|
|
139
|
+
2. **Regular check-ins** - Lead should review intermediate results, not just final
|
|
140
|
+
3. **Fail fast** - If a teammate hits a blocker, escalate to lead immediately
|
|
141
|
+
4. **Shared conventions** - Establish naming, formatting, and style before dispatching
|
|
142
|
+
|
|
143
|
+
### Communication
|
|
144
|
+
|
|
145
|
+
1. **Task descriptions should be self-contained** - Teammate shouldn't need to ask clarifying questions
|
|
146
|
+
2. **Include context** - What files to read, what patterns to follow, what constraints exist
|
|
147
|
+
3. **Specify output format** - What should the teammate report back?
|
|
148
|
+
4. **Include acceptance criteria** - How does the lead know the task is done?
|
|
149
|
+
|
|
150
|
+
## Implementation with OpenCode
|
|
151
|
+
|
|
152
|
+
### Using the Task Tool (Current)
|
|
153
|
+
|
|
154
|
+
```typescript
|
|
155
|
+
// Spawn research team
|
|
156
|
+
const codebaseAnalysis = Task({
|
|
157
|
+
subagent_type: "explore",
|
|
158
|
+
description: "Analyze auth patterns",
|
|
159
|
+
prompt: `Research authentication patterns in this codebase:
|
|
160
|
+
1. Find all auth-related files
|
|
161
|
+
2. Map the auth flow
|
|
162
|
+
3. Identify potential security issues
|
|
163
|
+
Report back: file list, flow diagram, issues found`,
|
|
164
|
+
});
|
|
165
|
+
|
|
166
|
+
const externalResearch = Task({
|
|
167
|
+
subagent_type: "scout",
|
|
168
|
+
description: "Research JWT best practices",
|
|
169
|
+
prompt: `Research current JWT best practices:
|
|
170
|
+
1. Token rotation patterns
|
|
171
|
+
2. Refresh token security
|
|
172
|
+
3. Common vulnerabilities
|
|
173
|
+
Report back: recommended patterns with code examples`,
|
|
174
|
+
});
|
|
175
|
+
|
|
176
|
+
const codeReview = Task({
|
|
177
|
+
subagent_type: "review",
|
|
178
|
+
description: "Review auth security",
|
|
179
|
+
prompt: `Security review of auth implementation:
|
|
180
|
+
1. Check token storage
|
|
181
|
+
2. Verify CSRF protection
|
|
182
|
+
3. Audit session management
|
|
183
|
+
Report back: vulnerabilities found with severity ratings`,
|
|
184
|
+
});
|
|
185
|
+
|
|
186
|
+
// Lead synthesizes all results into unified recommendation
|
|
187
|
+
```
|
|
188
|
+
|
|
189
|
+
### Using Swarm Coordination (Advanced)
|
|
190
|
+
|
|
191
|
+
For more structured parallel work, combine with the `swarm-coordination` skill:
|
|
192
|
+
|
|
193
|
+
```typescript
|
|
194
|
+
// Load swarm for structured coordination
|
|
195
|
+
skill({ name: "swarm-coordination" });
|
|
196
|
+
|
|
197
|
+
// Analyze and plan
|
|
198
|
+
swarm({ op: "plan", task: "Implement auth overhaul across 3 subsystems" });
|
|
199
|
+
|
|
200
|
+
// Create delegation packets
|
|
201
|
+
swarm({
|
|
202
|
+
op: "delegate",
|
|
203
|
+
bead_id: "auth-frontend",
|
|
204
|
+
title: "Frontend auth components",
|
|
205
|
+
outcome: "All auth forms and guards updated",
|
|
206
|
+
must_do: "Follow existing component patterns, run component tests",
|
|
207
|
+
must_not: "Don't modify API contracts, don't add new dependencies",
|
|
208
|
+
});
|
|
209
|
+
```
|
|
210
|
+
|
|
211
|
+
## Anti-Patterns
|
|
212
|
+
|
|
213
|
+
### ❌ Too Many Teammates
|
|
214
|
+
|
|
215
|
+
```
|
|
216
|
+
Lead
|
|
217
|
+
├── T1: Button component ← Too granular
|
|
218
|
+
├── T2: Input component ← Too granular
|
|
219
|
+
├── T3: Form component ← Too granular
|
|
220
|
+
├── T4: Modal component ← Too granular
|
|
221
|
+
├── T5: Toast component ← Too granular
|
|
222
|
+
├── T6: Dialog component ← Too granular
|
|
223
|
+
├── T7: Dropdown component ← Too granular
|
|
224
|
+
└── T8: Tabs component ← Too granular
|
|
225
|
+
```
|
|
226
|
+
|
|
227
|
+
**Fix**: Group related work. 2-3 teammates handling related components each.
|
|
228
|
+
|
|
229
|
+
### ❌ Overlapping File Ownership
|
|
230
|
+
|
|
231
|
+
```
|
|
232
|
+
T1: Refactor auth service ← Both touch auth.ts!
|
|
233
|
+
T2: Add new auth endpoint ← Both touch auth.ts!
|
|
234
|
+
```
|
|
235
|
+
|
|
236
|
+
**Fix**: One teammate owns auth.ts changes. The other waits or works on different files.
|
|
237
|
+
|
|
238
|
+
### ❌ Missing Context
|
|
239
|
+
|
|
240
|
+
```
|
|
241
|
+
Task({ prompt: "Fix the auth bug" }) ← Which bug? What file? What behavior?
|
|
242
|
+
```
|
|
243
|
+
|
|
244
|
+
**Fix**: Include file paths, error messages, expected vs actual behavior, and reproduction steps.
|
|
245
|
+
|
|
246
|
+
### ❌ No Verification
|
|
247
|
+
|
|
248
|
+
```
|
|
249
|
+
Task({ prompt: "Implement feature X" }) ← No way to verify success
|
|
250
|
+
```
|
|
251
|
+
|
|
252
|
+
**Fix**: Include acceptance criteria: "Run `npm test auth`, ensure all pass. Run `npm run typecheck`."
|
|
253
|
+
|
|
254
|
+
## Checklist
|
|
255
|
+
|
|
256
|
+
Before dispatching a team:
|
|
257
|
+
|
|
258
|
+
- [ ] Identified 3+ independent tasks (otherwise use single agent)
|
|
259
|
+
- [ ] Each task has clear file ownership (no overlaps)
|
|
260
|
+
- [ ] Each task has self-contained context (files, patterns, constraints)
|
|
261
|
+
- [ ] Each task has acceptance criteria (verification commands)
|
|
262
|
+
- [ ] Lead has a synthesis plan (how to integrate results)
|
|
263
|
+
- [ ] Tasks are sized appropriately (5-6 per teammate max)
|
|
264
|
+
|
|
265
|
+
## See Also
|
|
266
|
+
|
|
267
|
+
- `dispatching-parallel-agents` — for independent debugging-focused parallel investigations
|
|
268
|
+
- `swarm-coordination` — for dependency-aware large-plan execution
|