@bcelep/capint 0.4.2 → 0.7.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/AGENT.md +11 -1
- package/CHANGELOG.md +124 -0
- package/README.md +38 -10
- package/bin/capint.js +22 -1
- package/docs/PRD-capint.md +94 -0
- package/docs/PRD-v0.5-agent-capability-activation.md +439 -0
- package/docs/architecture-decisions.md +2 -0
- package/docs/capint-rehber.md +439 -0
- package/docs/capint-stack.md +118 -0
- package/docs/community.md +19 -0
- package/docs/conventions/cli-scripting.md +60 -0
- package/docs/conventions/daily-use.md +146 -0
- package/docs/conventions/task-to-capability-cheatsheet.md +29 -0
- package/docs/eval/beginner-test-protocol.md +39 -0
- package/docs/eval/survey-template.md +16 -0
- package/docs/execution-intent-contract.md +31 -3
- package/docs/generated/README.md +6 -0
- package/docs/generated/execution-intent.v1.md +211 -0
- package/docs/generated/explanation.v1.md +127 -0
- package/docs/generated/explanation.v2.md +142 -0
- package/docs/generated/ui-api.v1.md +178 -0
- package/docs/kullanim-kilavuzu.md +374 -0
- package/docs/maintainer-dogfood.md +91 -0
- package/docs/recipes/memory-graph-pairing.md +200 -0
- package/docs/skill-audit-runbook.md +32 -0
- package/locales/en.json +27 -0
- package/locales/tr.json +27 -0
- package/package.json +14 -3
- package/projections/session-start.md +26 -6
- package/registry.json +117 -4
- package/schemas/execution-intent.v1.json +69 -0
- package/schemas/explanation.v1.json +48 -0
- package/schemas/explanation.v2.json +51 -0
- package/schemas/ui-api.v1.json +85 -0
- package/scripts/capint-task.ps1 +38 -0
- package/scripts/capint-task.sh +40 -0
- package/scripts/generate-schema-docs.mjs +104 -0
- package/scripts/release-check.mjs +24 -1
- package/scripts/validate-registry.mjs +44 -0
- package/skill-routing-matrix.json +50 -4
- package/skills/agent-browser/LICENSE +201 -0
- package/skills/agent-browser/SKILL.md +522 -0
- package/skills/agent-browser/agents/verdent.yaml +7 -0
- package/skills/agent-browser/assets/icon-dark.png +0 -0
- package/skills/agent-browser/assets/icon-light.png +0 -0
- package/skills/agent-browser/references/authentication.md +202 -0
- package/skills/agent-browser/references/commands.md +263 -0
- package/skills/agent-browser/references/profiling.md +120 -0
- package/skills/agent-browser/references/proxy-support.md +194 -0
- package/skills/agent-browser/references/session-management.md +193 -0
- package/skills/agent-browser/references/snapshot-refs.md +194 -0
- package/skills/agent-browser/references/video-recording.md +173 -0
- package/skills/agent-browser/templates/authenticated-session.sh +105 -0
- package/skills/agent-browser/templates/capture-workflow.sh +69 -0
- package/skills/agent-browser/templates/form-automation.sh +62 -0
- package/skills/algorithmic-art/LICENSE.txt +202 -0
- package/skills/algorithmic-art/SKILL.md +410 -0
- package/skills/algorithmic-art/agents/verdent.yaml +11 -0
- package/skills/algorithmic-art/assets/icon-dark.png +0 -0
- package/skills/algorithmic-art/assets/icon-light.png +0 -0
- package/skills/algorithmic-art/templates/generator_template.js +223 -0
- package/skills/algorithmic-art/templates/viewer.html +599 -0
- package/skills/api-and-interface-design/SKILL.md +294 -0
- package/skills/aspnet-core/LICENSE.txt +202 -0
- package/skills/aspnet-core/SKILL.md +67 -0
- package/skills/aspnet-core/agents/verdent.yaml +11 -0
- package/skills/aspnet-core/assets/dotnet-logo.png +0 -0
- package/skills/aspnet-core/assets/icon-dark.png +0 -0
- package/skills/aspnet-core/assets/icon-light.png +0 -0
- package/skills/aspnet-core/references/_sections.md +40 -0
- package/skills/aspnet-core/references/apis-minimal-and-controllers.md +81 -0
- package/skills/aspnet-core/references/data-state-and-services.md +69 -0
- package/skills/aspnet-core/references/program-and-pipeline.md +103 -0
- package/skills/aspnet-core/references/realtime-grpc-and-background-work.md +58 -0
- package/skills/aspnet-core/references/security-and-identity.md +75 -0
- package/skills/aspnet-core/references/source-map.md +43 -0
- package/skills/aspnet-core/references/stack-selection.md +63 -0
- package/skills/aspnet-core/references/testing-performance-and-operations.md +92 -0
- package/skills/aspnet-core/references/ui-blazor.md +53 -0
- package/skills/aspnet-core/references/ui-mvc.md +56 -0
- package/skills/aspnet-core/references/ui-razor-pages.md +55 -0
- package/skills/aspnet-core/references/versioning-and-upgrades.md +51 -0
- package/skills/auth-patterns/SKILL.md +549 -0
- package/skills/best-practices/SKILL.md +641 -0
- package/skills/better-auth-best-practices/SKILL.md +180 -0
- package/skills/better-auth-best-practices/agents/verdent.yaml +11 -0
- package/skills/better-auth-best-practices/assets/icon-dark.png +0 -0
- package/skills/better-auth-best-practices/assets/icon-light.png +0 -0
- package/skills/brainstorming/SKILL.md +164 -0
- package/skills/brainstorming/spec-document-reviewer-prompt.md +49 -0
- package/skills/brainstorming/visual-companion.md +287 -0
- package/skills/canvas-design/LICENSE.txt +202 -0
- package/skills/canvas-design/SKILL.md +135 -0
- package/skills/canvas-design/agents/verdent.yaml +11 -0
- package/skills/canvas-design/assets/icon-dark.png +0 -0
- package/skills/canvas-design/assets/icon-light.png +0 -0
- package/skills/canvas-design/canvas-fonts/ArsenalSC-OFL.txt +93 -0
- package/skills/canvas-design/canvas-fonts/ArsenalSC-Regular.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/BigShoulders-Bold.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/BigShoulders-OFL.txt +93 -0
- package/skills/canvas-design/canvas-fonts/BigShoulders-Regular.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/Boldonse-OFL.txt +93 -0
- package/skills/canvas-design/canvas-fonts/Boldonse-Regular.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/BricolageGrotesque-Bold.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/BricolageGrotesque-OFL.txt +93 -0
- package/skills/canvas-design/canvas-fonts/BricolageGrotesque-Regular.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/CrimsonPro-Bold.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/CrimsonPro-Italic.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/CrimsonPro-OFL.txt +93 -0
- package/skills/canvas-design/canvas-fonts/CrimsonPro-Regular.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/DMMono-OFL.txt +93 -0
- package/skills/canvas-design/canvas-fonts/DMMono-Regular.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/EricaOne-OFL.txt +94 -0
- package/skills/canvas-design/canvas-fonts/EricaOne-Regular.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/GeistMono-Bold.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/GeistMono-OFL.txt +93 -0
- package/skills/canvas-design/canvas-fonts/GeistMono-Regular.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/Gloock-OFL.txt +93 -0
- package/skills/canvas-design/canvas-fonts/Gloock-Regular.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/IBMPlexMono-Bold.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/IBMPlexMono-OFL.txt +93 -0
- package/skills/canvas-design/canvas-fonts/IBMPlexMono-Regular.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/IBMPlexSerif-Bold.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/IBMPlexSerif-BoldItalic.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/IBMPlexSerif-Italic.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/IBMPlexSerif-Regular.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/InstrumentSans-Bold.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/InstrumentSans-BoldItalic.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/InstrumentSans-Italic.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/InstrumentSans-OFL.txt +93 -0
- package/skills/canvas-design/canvas-fonts/InstrumentSans-Regular.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/InstrumentSerif-Italic.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/InstrumentSerif-Regular.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/Italiana-OFL.txt +93 -0
- package/skills/canvas-design/canvas-fonts/Italiana-Regular.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/JetBrainsMono-Bold.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/JetBrainsMono-OFL.txt +93 -0
- package/skills/canvas-design/canvas-fonts/JetBrainsMono-Regular.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/Jura-Light.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/Jura-Medium.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/Jura-OFL.txt +93 -0
- package/skills/canvas-design/canvas-fonts/LibreBaskerville-OFL.txt +93 -0
- package/skills/canvas-design/canvas-fonts/LibreBaskerville-Regular.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/Lora-Bold.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/Lora-BoldItalic.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/Lora-Italic.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/Lora-OFL.txt +93 -0
- package/skills/canvas-design/canvas-fonts/Lora-Regular.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/NationalPark-Bold.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/NationalPark-OFL.txt +93 -0
- package/skills/canvas-design/canvas-fonts/NationalPark-Regular.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/NothingYouCouldDo-OFL.txt +93 -0
- package/skills/canvas-design/canvas-fonts/NothingYouCouldDo-Regular.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/Outfit-Bold.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/Outfit-OFL.txt +93 -0
- package/skills/canvas-design/canvas-fonts/Outfit-Regular.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/PixelifySans-Medium.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/PixelifySans-OFL.txt +93 -0
- package/skills/canvas-design/canvas-fonts/PoiretOne-OFL.txt +93 -0
- package/skills/canvas-design/canvas-fonts/PoiretOne-Regular.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/RedHatMono-Bold.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/RedHatMono-OFL.txt +93 -0
- package/skills/canvas-design/canvas-fonts/RedHatMono-Regular.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/Silkscreen-OFL.txt +93 -0
- package/skills/canvas-design/canvas-fonts/Silkscreen-Regular.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/SmoochSans-Medium.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/SmoochSans-OFL.txt +93 -0
- package/skills/canvas-design/canvas-fonts/Tektur-Medium.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/Tektur-OFL.txt +93 -0
- package/skills/canvas-design/canvas-fonts/Tektur-Regular.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/WorkSans-Bold.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/WorkSans-BoldItalic.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/WorkSans-Italic.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/WorkSans-OFL.txt +93 -0
- package/skills/canvas-design/canvas-fonts/WorkSans-Regular.ttf +0 -0
- package/skills/canvas-design/canvas-fonts/YoungSerif-OFL.txt +93 -0
- package/skills/canvas-design/canvas-fonts/YoungSerif-Regular.ttf +0 -0
- package/skills/ci-cd-and-automation/SKILL.md +390 -0
- package/skills/cloudflare/SKILL.md +233 -0
- package/skills/cloudflare/agents/verdent.yaml +12 -0
- package/skills/cloudflare/assets/icon-dark.png +0 -0
- package/skills/cloudflare/assets/icon-light.png +0 -0
- package/skills/cloudflare/references/agents-sdk/README.md +89 -0
- package/skills/cloudflare/references/agents-sdk/api.md +190 -0
- package/skills/cloudflare/references/agents-sdk/configuration.md +182 -0
- package/skills/cloudflare/references/agents-sdk/gotchas.md +158 -0
- package/skills/cloudflare/references/agents-sdk/patterns.md +192 -0
- package/skills/cloudflare/references/ai-gateway/README.md +175 -0
- package/skills/cloudflare/references/ai-gateway/configuration.md +111 -0
- package/skills/cloudflare/references/ai-gateway/dynamic-routing.md +82 -0
- package/skills/cloudflare/references/ai-gateway/features.md +96 -0
- package/skills/cloudflare/references/ai-gateway/sdk-integration.md +114 -0
- package/skills/cloudflare/references/ai-gateway/troubleshooting.md +88 -0
- package/skills/cloudflare/references/ai-search/README.md +138 -0
- package/skills/cloudflare/references/ai-search/api.md +87 -0
- package/skills/cloudflare/references/ai-search/configuration.md +88 -0
- package/skills/cloudflare/references/ai-search/gotchas.md +81 -0
- package/skills/cloudflare/references/ai-search/patterns.md +85 -0
- package/skills/cloudflare/references/analytics-engine/README.md +94 -0
- package/skills/cloudflare/references/analytics-engine/api.md +112 -0
- package/skills/cloudflare/references/analytics-engine/configuration.md +112 -0
- package/skills/cloudflare/references/analytics-engine/gotchas.md +85 -0
- package/skills/cloudflare/references/analytics-engine/patterns.md +83 -0
- package/skills/cloudflare/references/api/README.md +66 -0
- package/skills/cloudflare/references/api/api.md +204 -0
- package/skills/cloudflare/references/api/configuration.md +160 -0
- package/skills/cloudflare/references/api/gotchas.md +225 -0
- package/skills/cloudflare/references/api/patterns.md +204 -0
- package/skills/cloudflare/references/api-shield/README.md +44 -0
- package/skills/cloudflare/references/api-shield/api.md +141 -0
- package/skills/cloudflare/references/api-shield/configuration.md +192 -0
- package/skills/cloudflare/references/api-shield/gotchas.md +125 -0
- package/skills/cloudflare/references/api-shield/patterns.md +180 -0
- package/skills/cloudflare/references/argo-smart-routing/README.md +90 -0
- package/skills/cloudflare/references/argo-smart-routing/api.md +240 -0
- package/skills/cloudflare/references/argo-smart-routing/configuration.md +197 -0
- package/skills/cloudflare/references/argo-smart-routing/gotchas.md +111 -0
- package/skills/cloudflare/references/argo-smart-routing/patterns.md +104 -0
- package/skills/cloudflare/references/bindings/README.md +122 -0
- package/skills/cloudflare/references/bindings/api.md +203 -0
- package/skills/cloudflare/references/bindings/configuration.md +188 -0
- package/skills/cloudflare/references/bindings/gotchas.md +208 -0
- package/skills/cloudflare/references/bindings/patterns.md +200 -0
- package/skills/cloudflare/references/bot-management/README.md +94 -0
- package/skills/cloudflare/references/bot-management/api.md +169 -0
- package/skills/cloudflare/references/bot-management/configuration.md +163 -0
- package/skills/cloudflare/references/bot-management/gotchas.md +114 -0
- package/skills/cloudflare/references/bot-management/patterns.md +182 -0
- package/skills/cloudflare/references/browser-rendering/README.md +78 -0
- package/skills/cloudflare/references/browser-rendering/api.md +108 -0
- package/skills/cloudflare/references/browser-rendering/configuration.md +78 -0
- package/skills/cloudflare/references/browser-rendering/gotchas.md +88 -0
- package/skills/cloudflare/references/browser-rendering/patterns.md +91 -0
- package/skills/cloudflare/references/c3/README.md +111 -0
- package/skills/cloudflare/references/c3/api.md +71 -0
- package/skills/cloudflare/references/c3/configuration.md +81 -0
- package/skills/cloudflare/references/c3/gotchas.md +92 -0
- package/skills/cloudflare/references/c3/patterns.md +82 -0
- package/skills/cloudflare/references/cache-reserve/README.md +147 -0
- package/skills/cloudflare/references/cache-reserve/api.md +194 -0
- package/skills/cloudflare/references/cache-reserve/configuration.md +169 -0
- package/skills/cloudflare/references/cache-reserve/gotchas.md +132 -0
- package/skills/cloudflare/references/cache-reserve/patterns.md +197 -0
- package/skills/cloudflare/references/containers/README.md +85 -0
- package/skills/cloudflare/references/containers/api.md +187 -0
- package/skills/cloudflare/references/containers/configuration.md +188 -0
- package/skills/cloudflare/references/containers/gotchas.md +178 -0
- package/skills/cloudflare/references/containers/patterns.md +202 -0
- package/skills/cloudflare/references/cron-triggers/README.md +99 -0
- package/skills/cloudflare/references/cron-triggers/api.md +196 -0
- package/skills/cloudflare/references/cron-triggers/configuration.md +180 -0
- package/skills/cloudflare/references/cron-triggers/gotchas.md +199 -0
- package/skills/cloudflare/references/cron-triggers/patterns.md +190 -0
- package/skills/cloudflare/references/d1/README.md +133 -0
- package/skills/cloudflare/references/d1/api.md +196 -0
- package/skills/cloudflare/references/d1/configuration.md +188 -0
- package/skills/cloudflare/references/d1/gotchas.md +98 -0
- package/skills/cloudflare/references/d1/patterns.md +189 -0
- package/skills/cloudflare/references/ddos/README.md +41 -0
- package/skills/cloudflare/references/ddos/api.md +164 -0
- package/skills/cloudflare/references/ddos/configuration.md +93 -0
- package/skills/cloudflare/references/ddos/gotchas.md +107 -0
- package/skills/cloudflare/references/ddos/patterns.md +174 -0
- package/skills/cloudflare/references/do-storage/README.md +75 -0
- package/skills/cloudflare/references/do-storage/api.md +102 -0
- package/skills/cloudflare/references/do-storage/configuration.md +112 -0
- package/skills/cloudflare/references/do-storage/gotchas.md +150 -0
- package/skills/cloudflare/references/do-storage/patterns.md +194 -0
- package/skills/cloudflare/references/do-storage/testing.md +183 -0
- package/skills/cloudflare/references/durable-objects/README.md +185 -0
- package/skills/cloudflare/references/durable-objects/api.md +187 -0
- package/skills/cloudflare/references/durable-objects/configuration.md +160 -0
- package/skills/cloudflare/references/durable-objects/gotchas.md +197 -0
- package/skills/cloudflare/references/durable-objects/patterns.md +201 -0
- package/skills/cloudflare/references/email-routing/README.md +89 -0
- package/skills/cloudflare/references/email-routing/api.md +195 -0
- package/skills/cloudflare/references/email-routing/configuration.md +186 -0
- package/skills/cloudflare/references/email-routing/gotchas.md +196 -0
- package/skills/cloudflare/references/email-routing/patterns.md +229 -0
- package/skills/cloudflare/references/email-workers/README.md +151 -0
- package/skills/cloudflare/references/email-workers/api.md +237 -0
- package/skills/cloudflare/references/email-workers/configuration.md +112 -0
- package/skills/cloudflare/references/email-workers/gotchas.md +125 -0
- package/skills/cloudflare/references/email-workers/patterns.md +102 -0
- package/skills/cloudflare/references/graphql-api/README.md +147 -0
- package/skills/cloudflare/references/graphql-api/api.md +175 -0
- package/skills/cloudflare/references/graphql-api/configuration.md +118 -0
- package/skills/cloudflare/references/graphql-api/gotchas.md +110 -0
- package/skills/cloudflare/references/graphql-api/patterns.md +225 -0
- package/skills/cloudflare/references/hyperdrive/README.md +82 -0
- package/skills/cloudflare/references/hyperdrive/api.md +143 -0
- package/skills/cloudflare/references/hyperdrive/configuration.md +159 -0
- package/skills/cloudflare/references/hyperdrive/gotchas.md +77 -0
- package/skills/cloudflare/references/hyperdrive/patterns.md +190 -0
- package/skills/cloudflare/references/images/README.md +61 -0
- package/skills/cloudflare/references/images/api.md +96 -0
- package/skills/cloudflare/references/images/configuration.md +211 -0
- package/skills/cloudflare/references/images/gotchas.md +99 -0
- package/skills/cloudflare/references/images/patterns.md +115 -0
- package/skills/cloudflare/references/kv/README.md +89 -0
- package/skills/cloudflare/references/kv/api.md +160 -0
- package/skills/cloudflare/references/kv/configuration.md +144 -0
- package/skills/cloudflare/references/kv/gotchas.md +131 -0
- package/skills/cloudflare/references/kv/patterns.md +196 -0
- package/skills/cloudflare/references/miniflare/README.md +105 -0
- package/skills/cloudflare/references/miniflare/api.md +187 -0
- package/skills/cloudflare/references/miniflare/configuration.md +173 -0
- package/skills/cloudflare/references/miniflare/gotchas.md +160 -0
- package/skills/cloudflare/references/miniflare/patterns.md +181 -0
- package/skills/cloudflare/references/network-interconnect/README.md +99 -0
- package/skills/cloudflare/references/network-interconnect/api.md +199 -0
- package/skills/cloudflare/references/network-interconnect/configuration.md +114 -0
- package/skills/cloudflare/references/network-interconnect/gotchas.md +165 -0
- package/skills/cloudflare/references/network-interconnect/patterns.md +166 -0
- package/skills/cloudflare/references/observability/README.md +88 -0
- package/skills/cloudflare/references/observability/api.md +164 -0
- package/skills/cloudflare/references/observability/configuration.md +169 -0
- package/skills/cloudflare/references/observability/gotchas.md +115 -0
- package/skills/cloudflare/references/observability/patterns.md +105 -0
- package/skills/cloudflare/references/pages/README.md +88 -0
- package/skills/cloudflare/references/pages/api.md +204 -0
- package/skills/cloudflare/references/pages/configuration.md +201 -0
- package/skills/cloudflare/references/pages/gotchas.md +203 -0
- package/skills/cloudflare/references/pages/patterns.md +204 -0
- package/skills/cloudflare/references/pages-functions/README.md +98 -0
- package/skills/cloudflare/references/pages-functions/api.md +143 -0
- package/skills/cloudflare/references/pages-functions/configuration.md +122 -0
- package/skills/cloudflare/references/pages-functions/gotchas.md +94 -0
- package/skills/cloudflare/references/pages-functions/patterns.md +137 -0
- package/skills/cloudflare/references/pipelines/README.md +105 -0
- package/skills/cloudflare/references/pipelines/api.md +208 -0
- package/skills/cloudflare/references/pipelines/configuration.md +98 -0
- package/skills/cloudflare/references/pipelines/gotchas.md +80 -0
- package/skills/cloudflare/references/pipelines/patterns.md +87 -0
- package/skills/cloudflare/references/pulumi/README.md +100 -0
- package/skills/cloudflare/references/pulumi/api.md +200 -0
- package/skills/cloudflare/references/pulumi/configuration.md +198 -0
- package/skills/cloudflare/references/pulumi/gotchas.md +181 -0
- package/skills/cloudflare/references/pulumi/patterns.md +191 -0
- package/skills/cloudflare/references/queues/README.md +96 -0
- package/skills/cloudflare/references/queues/api.md +206 -0
- package/skills/cloudflare/references/queues/configuration.md +144 -0
- package/skills/cloudflare/references/queues/gotchas.md +206 -0
- package/skills/cloudflare/references/queues/patterns.md +220 -0
- package/skills/cloudflare/references/r2/README.md +95 -0
- package/skills/cloudflare/references/r2/api.md +200 -0
- package/skills/cloudflare/references/r2/configuration.md +165 -0
- package/skills/cloudflare/references/r2/gotchas.md +190 -0
- package/skills/cloudflare/references/r2/patterns.md +193 -0
- package/skills/cloudflare/references/r2-data-catalog/README.md +149 -0
- package/skills/cloudflare/references/r2-data-catalog/api.md +199 -0
- package/skills/cloudflare/references/r2-data-catalog/configuration.md +198 -0
- package/skills/cloudflare/references/r2-data-catalog/gotchas.md +170 -0
- package/skills/cloudflare/references/r2-data-catalog/patterns.md +191 -0
- package/skills/cloudflare/references/r2-sql/README.md +128 -0
- package/skills/cloudflare/references/r2-sql/SKILL.md.backup +512 -0
- package/skills/cloudflare/references/r2-sql/api.md +158 -0
- package/skills/cloudflare/references/r2-sql/configuration.md +147 -0
- package/skills/cloudflare/references/r2-sql/gotchas.md +212 -0
- package/skills/cloudflare/references/r2-sql/patterns.md +222 -0
- package/skills/cloudflare/references/realtime-sfu/README.md +65 -0
- package/skills/cloudflare/references/realtime-sfu/api.md +158 -0
- package/skills/cloudflare/references/realtime-sfu/configuration.md +137 -0
- package/skills/cloudflare/references/realtime-sfu/gotchas.md +133 -0
- package/skills/cloudflare/references/realtime-sfu/patterns.md +174 -0
- package/skills/cloudflare/references/realtimekit/README.md +113 -0
- package/skills/cloudflare/references/realtimekit/api.md +212 -0
- package/skills/cloudflare/references/realtimekit/configuration.md +203 -0
- package/skills/cloudflare/references/realtimekit/gotchas.md +169 -0
- package/skills/cloudflare/references/realtimekit/patterns.md +223 -0
- package/skills/cloudflare/references/sandbox/README.md +96 -0
- package/skills/cloudflare/references/sandbox/api.md +198 -0
- package/skills/cloudflare/references/sandbox/configuration.md +143 -0
- package/skills/cloudflare/references/sandbox/gotchas.md +194 -0
- package/skills/cloudflare/references/sandbox/patterns.md +201 -0
- package/skills/cloudflare/references/secrets-store/README.md +74 -0
- package/skills/cloudflare/references/secrets-store/api.md +200 -0
- package/skills/cloudflare/references/secrets-store/configuration.md +185 -0
- package/skills/cloudflare/references/secrets-store/gotchas.md +97 -0
- package/skills/cloudflare/references/secrets-store/patterns.md +207 -0
- package/skills/cloudflare/references/smart-placement/README.md +138 -0
- package/skills/cloudflare/references/smart-placement/api.md +183 -0
- package/skills/cloudflare/references/smart-placement/configuration.md +196 -0
- package/skills/cloudflare/references/smart-placement/gotchas.md +174 -0
- package/skills/cloudflare/references/smart-placement/patterns.md +183 -0
- package/skills/cloudflare/references/snippets/README.md +68 -0
- package/skills/cloudflare/references/snippets/api.md +198 -0
- package/skills/cloudflare/references/snippets/configuration.md +227 -0
- package/skills/cloudflare/references/snippets/gotchas.md +86 -0
- package/skills/cloudflare/references/snippets/patterns.md +135 -0
- package/skills/cloudflare/references/spectrum/README.md +52 -0
- package/skills/cloudflare/references/spectrum/api.md +181 -0
- package/skills/cloudflare/references/spectrum/configuration.md +194 -0
- package/skills/cloudflare/references/spectrum/gotchas.md +145 -0
- package/skills/cloudflare/references/spectrum/patterns.md +196 -0
- package/skills/cloudflare/references/static-assets/README.md +65 -0
- package/skills/cloudflare/references/static-assets/api.md +199 -0
- package/skills/cloudflare/references/static-assets/configuration.md +186 -0
- package/skills/cloudflare/references/static-assets/gotchas.md +162 -0
- package/skills/cloudflare/references/static-assets/patterns.md +189 -0
- package/skills/cloudflare/references/stream/README.md +114 -0
- package/skills/cloudflare/references/stream/api-live.md +195 -0
- package/skills/cloudflare/references/stream/api.md +199 -0
- package/skills/cloudflare/references/stream/configuration.md +141 -0
- package/skills/cloudflare/references/stream/gotchas.md +130 -0
- package/skills/cloudflare/references/stream/patterns.md +184 -0
- package/skills/cloudflare/references/tail-workers/README.md +89 -0
- package/skills/cloudflare/references/tail-workers/api.md +200 -0
- package/skills/cloudflare/references/tail-workers/configuration.md +176 -0
- package/skills/cloudflare/references/tail-workers/gotchas.md +192 -0
- package/skills/cloudflare/references/tail-workers/patterns.md +180 -0
- package/skills/cloudflare/references/terraform/README.md +102 -0
- package/skills/cloudflare/references/terraform/api.md +178 -0
- package/skills/cloudflare/references/terraform/configuration.md +197 -0
- package/skills/cloudflare/references/terraform/gotchas.md +150 -0
- package/skills/cloudflare/references/terraform/patterns.md +174 -0
- package/skills/cloudflare/references/tunnel/README.md +129 -0
- package/skills/cloudflare/references/tunnel/api.md +193 -0
- package/skills/cloudflare/references/tunnel/configuration.md +157 -0
- package/skills/cloudflare/references/tunnel/gotchas.md +147 -0
- package/skills/cloudflare/references/tunnel/networking.md +168 -0
- package/skills/cloudflare/references/tunnel/patterns.md +192 -0
- package/skills/cloudflare/references/turn/README.md +82 -0
- package/skills/cloudflare/references/turn/api.md +239 -0
- package/skills/cloudflare/references/turn/configuration.md +179 -0
- package/skills/cloudflare/references/turn/gotchas.md +231 -0
- package/skills/cloudflare/references/turn/patterns.md +213 -0
- package/skills/cloudflare/references/turnstile/README.md +99 -0
- package/skills/cloudflare/references/turnstile/api.md +240 -0
- package/skills/cloudflare/references/turnstile/configuration.md +222 -0
- package/skills/cloudflare/references/turnstile/gotchas.md +218 -0
- package/skills/cloudflare/references/turnstile/patterns.md +193 -0
- package/skills/cloudflare/references/vectorize/README.md +133 -0
- package/skills/cloudflare/references/vectorize/api.md +88 -0
- package/skills/cloudflare/references/vectorize/configuration.md +88 -0
- package/skills/cloudflare/references/vectorize/gotchas.md +76 -0
- package/skills/cloudflare/references/vectorize/patterns.md +90 -0
- package/skills/cloudflare/references/waf/README.md +113 -0
- package/skills/cloudflare/references/waf/api.md +202 -0
- package/skills/cloudflare/references/waf/configuration.md +203 -0
- package/skills/cloudflare/references/waf/gotchas.md +204 -0
- package/skills/cloudflare/references/waf/patterns.md +197 -0
- package/skills/cloudflare/references/web-analytics/README.md +141 -0
- package/skills/cloudflare/references/web-analytics/configuration.md +76 -0
- package/skills/cloudflare/references/web-analytics/gotchas.md +82 -0
- package/skills/cloudflare/references/web-analytics/integration.md +60 -0
- package/skills/cloudflare/references/web-analytics/patterns.md +91 -0
- package/skills/cloudflare/references/workerd/README.md +78 -0
- package/skills/cloudflare/references/workerd/api.md +185 -0
- package/skills/cloudflare/references/workerd/configuration.md +183 -0
- package/skills/cloudflare/references/workerd/gotchas.md +139 -0
- package/skills/cloudflare/references/workerd/patterns.md +192 -0
- package/skills/cloudflare/references/workers/README.md +108 -0
- package/skills/cloudflare/references/workers/api.md +195 -0
- package/skills/cloudflare/references/workers/configuration.md +185 -0
- package/skills/cloudflare/references/workers/frameworks.md +197 -0
- package/skills/cloudflare/references/workers/gotchas.md +136 -0
- package/skills/cloudflare/references/workers/patterns.md +198 -0
- package/skills/cloudflare/references/workers-ai/README.md +197 -0
- package/skills/cloudflare/references/workers-ai/api.md +112 -0
- package/skills/cloudflare/references/workers-ai/configuration.md +97 -0
- package/skills/cloudflare/references/workers-ai/gotchas.md +114 -0
- package/skills/cloudflare/references/workers-ai/patterns.md +120 -0
- package/skills/cloudflare/references/workers-for-platforms/README.md +89 -0
- package/skills/cloudflare/references/workers-for-platforms/api.md +196 -0
- package/skills/cloudflare/references/workers-for-platforms/configuration.md +167 -0
- package/skills/cloudflare/references/workers-for-platforms/gotchas.md +134 -0
- package/skills/cloudflare/references/workers-for-platforms/patterns.md +188 -0
- package/skills/cloudflare/references/workers-playground/README.md +127 -0
- package/skills/cloudflare/references/workers-playground/api.md +101 -0
- package/skills/cloudflare/references/workers-playground/configuration.md +163 -0
- package/skills/cloudflare/references/workers-playground/gotchas.md +88 -0
- package/skills/cloudflare/references/workers-playground/patterns.md +132 -0
- package/skills/cloudflare/references/workers-vpc/README.md +127 -0
- package/skills/cloudflare/references/workers-vpc/api.md +202 -0
- package/skills/cloudflare/references/workers-vpc/configuration.md +147 -0
- package/skills/cloudflare/references/workers-vpc/gotchas.md +167 -0
- package/skills/cloudflare/references/workers-vpc/patterns.md +209 -0
- package/skills/cloudflare/references/workflows/README.md +69 -0
- package/skills/cloudflare/references/workflows/api.md +185 -0
- package/skills/cloudflare/references/workflows/configuration.md +151 -0
- package/skills/cloudflare/references/workflows/gotchas.md +97 -0
- package/skills/cloudflare/references/workflows/patterns.md +175 -0
- package/skills/cloudflare/references/wrangler/README.md +135 -0
- package/skills/cloudflare/references/wrangler/api.md +188 -0
- package/skills/cloudflare/references/wrangler/configuration.md +197 -0
- package/skills/cloudflare/references/wrangler/gotchas.md +197 -0
- package/skills/cloudflare/references/wrangler/patterns.md +209 -0
- package/skills/cloudflare/references/zaraz/IMPLEMENTATION_SUMMARY.md +121 -0
- package/skills/cloudflare/references/zaraz/README.md +111 -0
- package/skills/cloudflare/references/zaraz/api.md +112 -0
- package/skills/cloudflare/references/zaraz/configuration.md +90 -0
- package/skills/cloudflare/references/zaraz/gotchas.md +81 -0
- package/skills/cloudflare/references/zaraz/patterns.md +74 -0
- package/skills/code-reviewer/SKILL.md +347 -0
- package/skills/code-simplifier/SKILL.md +124 -0
- package/skills/code-simplifier/agents/verdent.yaml +11 -0
- package/skills/code-simplifier/assets/icon-dark.png +0 -0
- package/skills/code-simplifier/assets/icon-light.png +0 -0
- package/skills/concept-modeler/SKILL.md +178 -0
- package/skills/context-engineering/SKILL.md +289 -0
- package/skills/copywriting/SKILL.md +252 -0
- package/skills/copywriting/evals/evals.json +111 -0
- package/skills/copywriting/references/copy-frameworks.md +344 -0
- package/skills/copywriting/references/natural-transitions.md +272 -0
- package/skills/core-web-vitals/SKILL.md +483 -0
- package/skills/core-web-vitals/references/LCP.md +208 -0
- package/skills/craft-authoring/SKILL.md +123 -0
- package/skills/create-design-system-rules/SKILL.md +530 -0
- package/skills/create-design-system-rules/agents/verdent.yaml +11 -0
- package/skills/create-design-system-rules/assets/icon-dark.png +0 -0
- package/skills/create-design-system-rules/assets/icon-light.png +0 -0
- package/skills/database-and-data-modeling/SKILL.md +515 -0
- package/skills/database-blueprints/SKILL.md +60 -0
- package/skills/database-blueprints/agents/verdent.yaml +13 -0
- package/skills/database-blueprints/assets/icon-dark.png +0 -0
- package/skills/database-blueprints/assets/icon-light.png +0 -0
- package/skills/database-blueprints/references/core-schema.md +68 -0
- package/skills/database-blueprints/references/migration-safety.md +55 -0
- package/skills/database-blueprints/references/mysql.md +50 -0
- package/skills/database-blueprints/references/prisma.md +47 -0
- package/skills/database-blueprints/references/supabase-postgres.md +63 -0
- package/skills/delivery-acceptance/SKILL.md +60 -0
- package/skills/delivery-acceptance/agents/verdent.yaml +12 -0
- package/skills/delivery-acceptance/assets/icon-dark.png +0 -0
- package/skills/delivery-acceptance/assets/icon-light.png +0 -0
- package/skills/delivery-acceptance/references/acceptance-checklist.md +44 -0
- package/skills/delivery-acceptance/references/mobile-print-file.md +19 -0
- package/skills/delivery-acceptance/references/playwright-smoke.md +35 -0
- package/skills/dependency-audit/SKILL.md +97 -0
- package/skills/deprecation-and-migration/SKILL.md +206 -0
- package/skills/design-reviewer/SKILL.md +189 -0
- package/skills/develop-web-game/LICENSE.txt +201 -0
- package/skills/develop-web-game/SKILL.md +154 -0
- package/skills/develop-web-game/agents/verdent.yaml +12 -0
- package/skills/develop-web-game/assets/game-small.svg +4 -0
- package/skills/develop-web-game/assets/game.png +0 -0
- package/skills/develop-web-game/assets/icon-dark.png +0 -0
- package/skills/develop-web-game/assets/icon-light.png +0 -0
- package/skills/develop-web-game/references/action_payloads.json +7 -0
- package/skills/develop-web-game/scripts/web_game_playwright_client.js +356 -0
- package/skills/dignified-python/SKILL.md +175 -0
- package/skills/dignified-python/agents/verdent.yaml +11 -0
- package/skills/dignified-python/assets/icon-dark.png +0 -0
- package/skills/dignified-python/assets/icon-light.png +0 -0
- package/skills/dignified-python/cli-patterns.md +156 -0
- package/skills/dignified-python/dignified-python-core.md +345 -0
- package/skills/dignified-python/references/README.md +319 -0
- package/skills/dignified-python/references/advanced/api-design.md +230 -0
- package/skills/dignified-python/references/advanced/exception-handling.md +185 -0
- package/skills/dignified-python/references/advanced/interfaces.md +183 -0
- package/skills/dignified-python/references/advanced/typing-advanced.md +158 -0
- package/skills/dignified-python/references/checklists.md +134 -0
- package/skills/dignified-python/references/module-design.md +214 -0
- package/skills/dignified-python/subprocess.md +99 -0
- package/skills/dignified-python/versions/python-3.10.md +520 -0
- package/skills/dignified-python/versions/python-3.11.md +538 -0
- package/skills/dignified-python/versions/python-3.12.md +664 -0
- package/skills/dignified-python/versions/python-3.13.md +657 -0
- package/skills/dispatching-parallel-agents/SKILL.md +182 -0
- package/skills/documentation-and-adrs/SKILL.md +278 -0
- package/skills/documentation-sync/SKILL.md +76 -0
- package/skills/documentation-writer/SKILL.md +50 -0
- package/skills/documentation-writer/agents/verdent.yaml +10 -0
- package/skills/documentation-writer/assets/icon-dark.png +0 -0
- package/skills/documentation-writer/assets/icon-light.png +0 -0
- package/skills/docx/SKILL.md +186 -0
- package/skills/docx/agents/verdent.yaml +9 -0
- package/skills/docx/assets/docx.png +0 -0
- package/skills/docx/assets/icon-dark.png +0 -0
- package/skills/docx/assets/icon-light.png +0 -0
- package/skills/docx/references/creation-guide.md +309 -0
- package/skills/docx/references/xml-editing-guide.md +237 -0
- package/skills/docx/scripts/docx_tool.py +164 -0
- package/skills/docx/scripts/fixtures/comments.xml +3 -0
- package/skills/docx/scripts/fixtures/commentsExtended.xml +3 -0
- package/skills/docx/scripts/fixtures/commentsExtensible.xml +3 -0
- package/skills/docx/scripts/fixtures/commentsIds.xml +3 -0
- package/skills/docx/scripts/fixtures/people.xml +3 -0
- package/skills/docx/scripts/internals/__init__.py +0 -0
- package/skills/docx/scripts/internals/content.py +307 -0
- package/skills/docx/scripts/internals/integrity/__init__.py +0 -0
- package/skills/docx/scripts/internals/integrity/foundation.py +559 -0
- package/skills/docx/scripts/internals/integrity/orchestrator.py +66 -0
- package/skills/docx/scripts/internals/integrity/revision_checker.py +181 -0
- package/skills/docx/scripts/internals/integrity/schema_checker.py +294 -0
- package/skills/docx/scripts/internals/packaging.py +193 -0
- package/skills/docx/scripts/internals/preprocessing/__init__.py +0 -0
- package/skills/docx/scripts/internals/preprocessing/revision_merger.py +193 -0
- package/skills/docx/scripts/internals/preprocessing/run_consolidator.py +179 -0
- package/skills/docx/scripts/internals/runtime/__init__.py +0 -0
- package/skills/docx/scripts/internals/runtime/converter.py +184 -0
- package/skills/docx/scripts/internals/runtime/renderer.py +60 -0
- package/skills/docx/scripts/internals/runtime/revision_acceptor.py +122 -0
- package/skills/docx/scripts/render_docx.py +296 -0
- package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
- package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
- package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
- package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
- package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
- package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
- package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
- package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
- package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
- package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
- package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
- package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
- package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
- package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
- package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
- package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
- package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
- package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
- package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
- package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
- package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
- package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
- package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
- package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
- package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
- package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
- package/skills/docx/scripts/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
- package/skills/docx/scripts/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
- package/skills/docx/scripts/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
- package/skills/docx/scripts/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
- package/skills/docx/scripts/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
- package/skills/docx/scripts/schemas/mce/mc.xsd +75 -0
- package/skills/docx/scripts/schemas/microsoft/wml-2010.xsd +560 -0
- package/skills/docx/scripts/schemas/microsoft/wml-2012.xsd +67 -0
- package/skills/docx/scripts/schemas/microsoft/wml-2018.xsd +14 -0
- package/skills/docx/scripts/schemas/microsoft/wml-cex-2018.xsd +20 -0
- package/skills/docx/scripts/schemas/microsoft/wml-cid-2016.xsd +13 -0
- package/skills/docx/scripts/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
- package/skills/docx/scripts/schemas/microsoft/wml-symex-2015.xsd +8 -0
- package/skills/doubt-driven-development/SKILL.md +243 -0
- package/skills/e2e-testing-guide/SKILL.md +204 -0
- package/skills/emil-design-eng/SKILL.md +679 -0
- package/skills/environment-and-config/SKILL.md +849 -0
- package/skills/error-handling/SKILL.md +757 -0
- package/skills/excalidraw-diagram-generator/SKILL.md +618 -0
- package/skills/excalidraw-diagram-generator/agents/verdent.yaml +11 -0
- package/skills/excalidraw-diagram-generator/assets/icon-dark.png +0 -0
- package/skills/excalidraw-diagram-generator/assets/icon-light.png +0 -0
- package/skills/excalidraw-diagram-generator/references/element-types.md +497 -0
- package/skills/excalidraw-diagram-generator/references/excalidraw-schema.md +350 -0
- package/skills/excalidraw-diagram-generator/scripts/README.md +193 -0
- package/skills/excalidraw-diagram-generator/scripts/add-arrow.py +312 -0
- package/skills/excalidraw-diagram-generator/scripts/add-icon-to-diagram.py +404 -0
- package/skills/excalidraw-diagram-generator/scripts/split-excalidraw-library.py +183 -0
- package/skills/excalidraw-diagram-generator/templates/business-flow-swimlane-template.excalidraw +334 -0
- package/skills/excalidraw-diagram-generator/templates/class-diagram-template.excalidraw +558 -0
- package/skills/excalidraw-diagram-generator/templates/data-flow-diagram-template.excalidraw +279 -0
- package/skills/excalidraw-diagram-generator/templates/er-diagram-template.excalidraw +662 -0
- package/skills/excalidraw-diagram-generator/templates/flowchart-template.excalidraw +179 -0
- package/skills/excalidraw-diagram-generator/templates/mindmap-template.excalidraw +244 -0
- package/skills/excalidraw-diagram-generator/templates/relationship-template.excalidraw +145 -0
- package/skills/excalidraw-diagram-generator/templates/sequence-diagram-template.excalidraw +509 -0
- package/skills/executing-plans/SKILL.md +245 -0
- package/skills/figma/LICENSE.txt +202 -0
- package/skills/figma/SKILL.md +53 -0
- package/skills/figma/agents/verdent.yaml +7 -0
- package/skills/figma/assets/figma.png +0 -0
- package/skills/figma/assets/icon-dark.png +0 -0
- package/skills/figma/assets/icon-light.png +0 -0
- package/skills/figma/assets/icon.svg +28 -0
- package/skills/figma/references/figma-mcp-config.md +49 -0
- package/skills/figma/references/figma-tools-and-prompts.md +39 -0
- package/skills/figma-implement-design/LICENSE.txt +202 -0
- package/skills/figma-implement-design/SKILL.md +265 -0
- package/skills/figma-implement-design/agents/verdent.yaml +7 -0
- package/skills/figma-implement-design/assets/figma.png +0 -0
- package/skills/figma-implement-design/assets/icon-dark.png +0 -0
- package/skills/figma-implement-design/assets/icon-light.png +0 -0
- package/skills/figma-implement-design/assets/icon.svg +28 -0
- package/skills/find-docs/SKILL.md +164 -0
- package/skills/find-docs/agents/verdent.yaml +11 -0
- package/skills/find-docs/assets/icon-dark.png +0 -0
- package/skills/find-docs/assets/icon-light.png +0 -0
- package/skills/find-skills/SKILL.md +142 -0
- package/skills/firecrawl/SKILL.md +131 -0
- package/skills/firecrawl/agents/verdent.yaml +11 -0
- package/skills/firecrawl/assets/icon-dark.png +0 -0
- package/skills/firecrawl/assets/icon-light.png +0 -0
- package/skills/firecrawl/rules/install.md +63 -0
- package/skills/firecrawl/rules/security.md +26 -0
- package/skills/flutter-architecting-apps/SKILL.md +164 -0
- package/skills/flutter-architecting-apps/agents/verdent.yaml +11 -0
- package/skills/flutter-architecting-apps/assets/icon-dark.png +0 -0
- package/skills/flutter-architecting-apps/assets/icon-light.png +0 -0
- package/skills/frontend-design-pro/SKILL.md +328 -0
- package/skills/frontend-slides/LICENSE +21 -0
- package/skills/frontend-slides/SKILL.md +1169 -0
- package/skills/frontend-slides/STYLE_PRESETS.md +561 -0
- package/skills/frontend-slides/agents/verdent.yaml +7 -0
- package/skills/frontend-slides/assets/icon-dark.png +0 -0
- package/skills/frontend-slides/assets/icon-light.png +0 -0
- package/skills/gh-cli/SKILL.md +2192 -0
- package/skills/gh-cli/agents/verdent.yaml +12 -0
- package/skills/gh-cli/assets/icon-dark.png +0 -0
- package/skills/gh-cli/assets/icon-light.png +0 -0
- package/skills/git-commit/SKILL.md +129 -0
- package/skills/git-commit/agents/verdent.yaml +11 -0
- package/skills/git-commit/assets/icon-dark.png +0 -0
- package/skills/git-commit/assets/icon-light.png +0 -0
- package/skills/git-workflow-and-versioning/SKILL.md +300 -0
- package/skills/graphql-operations/SKILL.md +247 -0
- package/skills/graphql-operations/agents/verdent.yaml +11 -0
- package/skills/graphql-operations/assets/icon-dark.png +0 -0
- package/skills/graphql-operations/assets/icon-light.png +0 -0
- package/skills/graphql-operations/references/fragments.md +536 -0
- package/skills/graphql-operations/references/mutations.md +435 -0
- package/skills/graphql-operations/references/queries.md +504 -0
- package/skills/graphql-operations/references/tooling.md +404 -0
- package/skills/graphql-operations/references/variables.md +440 -0
- package/skills/graphql-schema/SKILL.md +175 -0
- package/skills/graphql-schema/agents/verdent.yaml +11 -0
- package/skills/graphql-schema/assets/icon-dark.png +0 -0
- package/skills/graphql-schema/assets/icon-light.png +0 -0
- package/skills/graphql-schema/references/errors.md +388 -0
- package/skills/graphql-schema/references/naming.md +400 -0
- package/skills/graphql-schema/references/pagination.md +396 -0
- package/skills/graphql-schema/references/security.md +484 -0
- package/skills/graphql-schema/references/types.md +445 -0
- package/skills/hugging-face-model-trainer/SKILL.md +722 -0
- package/skills/hugging-face-model-trainer/agents/verdent.yaml +12 -0
- package/skills/hugging-face-model-trainer/assets/icon-dark.png +0 -0
- package/skills/hugging-face-model-trainer/assets/icon-light.png +0 -0
- package/skills/hugging-face-model-trainer/references/gguf_conversion.md +296 -0
- package/skills/hugging-face-model-trainer/references/hardware_guide.md +283 -0
- package/skills/hugging-face-model-trainer/references/hub_saving.md +364 -0
- package/skills/hugging-face-model-trainer/references/local_training_macos.md +231 -0
- package/skills/hugging-face-model-trainer/references/reliability_principles.md +371 -0
- package/skills/hugging-face-model-trainer/references/trackio_guide.md +189 -0
- package/skills/hugging-face-model-trainer/references/training_methods.md +150 -0
- package/skills/hugging-face-model-trainer/references/training_patterns.md +203 -0
- package/skills/hugging-face-model-trainer/references/troubleshooting.md +282 -0
- package/skills/hugging-face-model-trainer/references/unsloth.md +313 -0
- package/skills/hugging-face-model-trainer/scripts/convert_to_gguf.py +424 -0
- package/skills/hugging-face-model-trainer/scripts/dataset_inspector.py +417 -0
- package/skills/hugging-face-model-trainer/scripts/estimate_cost.py +150 -0
- package/skills/hugging-face-model-trainer/scripts/train_dpo_example.py +106 -0
- package/skills/hugging-face-model-trainer/scripts/train_grpo_example.py +89 -0
- package/skills/hugging-face-model-trainer/scripts/train_sft_example.py +122 -0
- package/skills/hugging-face-model-trainer/scripts/unsloth_sft_example.py +512 -0
- package/skills/imagegen/LICENSE.txt +201 -0
- package/skills/imagegen/SKILL.md +180 -0
- package/skills/imagegen/agents/verdent.yaml +11 -0
- package/skills/imagegen/assets/icon-dark.png +0 -0
- package/skills/imagegen/assets/icon-light.png +0 -0
- package/skills/imagegen/assets/imagegen-small.svg +5 -0
- package/skills/imagegen/assets/imagegen.png +0 -0
- package/skills/imagegen/references/cli.md +132 -0
- package/skills/imagegen/references/image-api.md +36 -0
- package/skills/imagegen/references/network-notes.md +28 -0
- package/skills/imagegen/references/prompting.md +81 -0
- package/skills/imagegen/references/sample-prompts.md +384 -0
- package/skills/imagegen/scripts/image_gen.py +876 -0
- package/skills/impeccable/SKILL.md +450 -0
- package/skills/impeccable/reference/adapt.md +190 -0
- package/skills/impeccable/reference/animate.md +175 -0
- package/skills/impeccable/reference/audit.md +133 -0
- package/skills/impeccable/reference/bolder.md +113 -0
- package/skills/impeccable/reference/brand.md +114 -0
- package/skills/impeccable/reference/clarify.md +174 -0
- package/skills/impeccable/reference/cognitive-load.md +106 -0
- package/skills/impeccable/reference/color-and-contrast.md +105 -0
- package/skills/impeccable/reference/colorize.md +154 -0
- package/skills/impeccable/reference/craft.md +193 -0
- package/skills/impeccable/reference/critique.md +213 -0
- package/skills/impeccable/reference/delight.md +302 -0
- package/skills/impeccable/reference/distill.md +111 -0
- package/skills/impeccable/reference/document.md +427 -0
- package/skills/impeccable/reference/extract.md +69 -0
- package/skills/impeccable/reference/harden.md +347 -0
- package/skills/impeccable/reference/heuristics-scoring.md +234 -0
- package/skills/impeccable/reference/interaction-design.md +195 -0
- package/skills/impeccable/reference/layout.md +141 -0
- package/skills/impeccable/reference/live.md +622 -0
- package/skills/impeccable/reference/motion-design.md +109 -0
- package/skills/impeccable/reference/onboard.md +234 -0
- package/skills/impeccable/reference/optimize.md +258 -0
- package/skills/impeccable/reference/overdrive.md +130 -0
- package/skills/impeccable/reference/personas.md +179 -0
- package/skills/impeccable/reference/polish.md +233 -0
- package/skills/impeccable/reference/product.md +62 -0
- package/skills/impeccable/reference/quieter.md +99 -0
- package/skills/impeccable/reference/responsive-design.md +114 -0
- package/skills/impeccable/reference/shape.md +151 -0
- package/skills/impeccable/reference/spatial-design.md +100 -0
- package/skills/impeccable/reference/teach.md +156 -0
- package/skills/impeccable/reference/typeset.md +124 -0
- package/skills/impeccable/reference/typography.md +159 -0
- package/skills/impeccable/reference/ux-writing.md +107 -0
- package/skills/impeccable/references/A11Y-PATTERNS.md +233 -0
- package/skills/impeccable/references/WCAG.md +191 -0
- package/skills/impeccable/scripts/cleanup-deprecated.mjs +284 -0
- package/skills/impeccable/scripts/command-metadata.json +94 -0
- package/skills/impeccable/scripts/design-parser.mjs +820 -0
- package/skills/impeccable/scripts/detect-csp.mjs +198 -0
- package/skills/impeccable/scripts/impeccable-paths.mjs +105 -0
- package/skills/impeccable/scripts/is-generated.mjs +69 -0
- package/skills/impeccable/scripts/live-accept.mjs +595 -0
- package/skills/impeccable/scripts/live-browser-session.js +123 -0
- package/skills/impeccable/scripts/live-browser.js +4860 -0
- package/skills/impeccable/scripts/live-complete.mjs +75 -0
- package/skills/impeccable/scripts/live-completion.mjs +18 -0
- package/skills/impeccable/scripts/live-inject.mjs +446 -0
- package/skills/impeccable/scripts/live-poll.mjs +200 -0
- package/skills/impeccable/scripts/live-resume.mjs +48 -0
- package/skills/impeccable/scripts/live-server.mjs +836 -0
- package/skills/impeccable/scripts/live-session-store.mjs +254 -0
- package/skills/impeccable/scripts/live-status.mjs +47 -0
- package/skills/impeccable/scripts/live-wrap.mjs +632 -0
- package/skills/impeccable/scripts/live.mjs +247 -0
- package/skills/impeccable/scripts/load-context.mjs +141 -0
- package/skills/impeccable/scripts/modern-screenshot.umd.js +14 -0
- package/skills/impeccable/scripts/pin.mjs +214 -0
- package/skills/improve-codebase-architecture/DEEPENING.md +37 -0
- package/skills/improve-codebase-architecture/INTERFACE-DESIGN.md +44 -0
- package/skills/improve-codebase-architecture/LANGUAGE.md +53 -0
- package/skills/improve-codebase-architecture/SKILL.md +331 -0
- package/skills/incident-response/SKILL.md +97 -0
- package/skills/interview-me/SKILL.md +221 -0
- package/skills/knowledge-base-update/SKILL.md +90 -0
- package/skills/langchain-rag/SKILL.md +522 -0
- package/skills/langchain-rag/agents/verdent.yaml +12 -0
- package/skills/langchain-rag/assets/icon-dark.png +0 -0
- package/skills/langchain-rag/assets/icon-light.png +0 -0
- package/skills/linear/LICENSE.txt +202 -0
- package/skills/linear/SKILL.md +102 -0
- package/skills/linear/agents/verdent.yaml +7 -0
- package/skills/linear/assets/icon-dark.png +0 -0
- package/skills/linear/assets/icon-light.png +0 -0
- package/skills/linear/assets/linear.png +0 -0
- package/skills/localization-hub/ai-batch.md +23 -0
- package/skills/localization-hub/key-naming.md +15 -0
- package/skills/localization-hub/route-slugs.md +14 -0
- package/skills/mcp-builder/LICENSE.txt +202 -0
- package/skills/mcp-builder/SKILL.md +260 -0
- package/skills/mcp-builder/agents/verdent.yaml +7 -0
- package/skills/mcp-builder/assets/icon-dark.png +0 -0
- package/skills/mcp-builder/assets/icon-light.png +0 -0
- package/skills/mcp-builder/reference/mcp_best_practices.md +269 -0
- package/skills/mcp-builder/reference/node_mcp_server.md +980 -0
- package/skills/mcp-builder/reference/python_mcp_server.md +737 -0
- package/skills/mcp-builder/scripts/connections.py +151 -0
- package/skills/netlify-deploy/LICENSE.txt +201 -0
- package/skills/netlify-deploy/SKILL.md +261 -0
- package/skills/netlify-deploy/agents/verdent.yaml +7 -0
- package/skills/netlify-deploy/assets/icon-dark.png +0 -0
- package/skills/netlify-deploy/assets/icon-light.png +0 -0
- package/skills/netlify-deploy/assets/netlify.png +0 -0
- package/skills/netlify-deploy/references/cli-commands.md +162 -0
- package/skills/netlify-deploy/references/deployment-patterns.md +319 -0
- package/skills/netlify-deploy/references/netlify-toml.md +259 -0
- package/skills/nexus-mapper/SKILL.md +314 -0
- package/skills/nexus-mapper/references/language-customization.md +164 -0
- package/skills/nexus-mapper/references/output-schema.md +298 -0
- package/skills/nexus-mapper/references/probe-protocol.md +246 -0
- package/skills/nexus-mapper/scripts/extract_ast.py +705 -0
- package/skills/nexus-mapper/scripts/git_detective.py +194 -0
- package/skills/nexus-mapper/scripts/languages.json +127 -0
- package/skills/nexus-mapper/scripts/query_graph.py +556 -0
- package/skills/nexus-mapper/scripts/requirements.txt +6 -0
- package/skills/notion-spec-to-implementation/LICENSE.txt +7 -0
- package/skills/notion-spec-to-implementation/SKILL.md +67 -0
- package/skills/notion-spec-to-implementation/agents/verdent.yaml +7 -0
- package/skills/notion-spec-to-implementation/assets/icon-dark.png +0 -0
- package/skills/notion-spec-to-implementation/assets/icon-light.png +0 -0
- package/skills/notion-spec-to-implementation/assets/notion.png +0 -0
- package/skills/notion-spec-to-implementation/evaluations/README.md +130 -0
- package/skills/notion-spec-to-implementation/evaluations/basic-spec-implementation.json +31 -0
- package/skills/notion-spec-to-implementation/evaluations/spec-to-tasks.json +34 -0
- package/skills/notion-spec-to-implementation/examples/api-feature.md +511 -0
- package/skills/notion-spec-to-implementation/examples/database-migration.md +89 -0
- package/skills/notion-spec-to-implementation/examples/ui-component.md +78 -0
- package/skills/notion-spec-to-implementation/reference/milestone-summary-template.md +31 -0
- package/skills/notion-spec-to-implementation/reference/progress-tracking.md +507 -0
- package/skills/notion-spec-to-implementation/reference/progress-update-template.md +29 -0
- package/skills/notion-spec-to-implementation/reference/quick-implementation-plan.md +30 -0
- package/skills/notion-spec-to-implementation/reference/spec-parsing.md +406 -0
- package/skills/notion-spec-to-implementation/reference/standard-implementation-plan.md +170 -0
- package/skills/notion-spec-to-implementation/reference/task-creation-template.md +40 -0
- package/skills/notion-spec-to-implementation/reference/task-creation.md +467 -0
- package/skills/pdf/LICENSE.txt +201 -0
- package/skills/pdf/SKILL.md +715 -0
- package/skills/pdf/agents/verdent.yaml +9 -0
- package/skills/pdf/assets/icon-dark.png +0 -0
- package/skills/pdf/assets/icon-light.png +0 -0
- package/skills/pdf/assets/pdf.png +0 -0
- package/skills/pdf/reference.md +221 -0
- package/skills/performance/SKILL.md +400 -0
- package/skills/playwright/LICENSE.txt +201 -0
- package/skills/playwright/NOTICE.txt +14 -0
- package/skills/playwright/SKILL.md +151 -0
- package/skills/playwright/agents/verdent.yaml +7 -0
- package/skills/playwright/assets/icon-dark.png +0 -0
- package/skills/playwright/assets/icon-light.png +0 -0
- package/skills/playwright/assets/playwright.png +0 -0
- package/skills/playwright/references/cli.md +116 -0
- package/skills/playwright/references/workflows.md +95 -0
- package/skills/playwright/scripts/playwright_cli.sh +25 -0
- package/skills/playwriter/SKILL.md +69 -0
- package/skills/playwriter/agents/verdent.yaml +7 -0
- package/skills/playwriter/assets/icon-dark.png +0 -0
- package/skills/playwriter/assets/icon-light.png +0 -0
- package/skills/pptx/SKILL.md +302 -0
- package/skills/pptx/agents/verdent.yaml +9 -0
- package/skills/pptx/assets/icon-dark.png +0 -0
- package/skills/pptx/assets/icon-light.png +0 -0
- package/skills/pptx/references/generate-with-js.md +412 -0
- package/skills/pptx/references/modify-workflow.md +157 -0
- package/skills/pptx/references/python-charts.md +91 -0
- package/skills/pptx/scripts/check_env.py +207 -0
- package/skills/pptx/scripts/deck.py +161 -0
- package/skills/pptx/scripts/internals/__init__.py +0 -0
- package/skills/pptx/scripts/internals/cleanup.py +194 -0
- package/skills/pptx/scripts/internals/content.py +62 -0
- package/skills/pptx/scripts/internals/create.py +122 -0
- package/skills/pptx/scripts/internals/gridshot.py +181 -0
- package/skills/pptx/scripts/internals/imaging.py +77 -0
- package/skills/pptx/scripts/internals/integrity/__init__.py +0 -0
- package/skills/pptx/scripts/internals/integrity/checks.py +318 -0
- package/skills/pptx/scripts/internals/packaging.py +127 -0
- package/skills/pptx/scripts/internals/runtime/__init__.py +0 -0
- package/skills/pptx/scripts/internals/runtime/converter.py +154 -0
- package/skills/pptx/scripts/internals/structure.py +162 -0
- package/skills/pr-creator/SKILL.md +98 -0
- package/skills/pr-creator/agents/verdent.yaml +11 -0
- package/skills/pr-creator/assets/icon-dark.png +0 -0
- package/skills/pr-creator/assets/icon-light.png +0 -0
- package/skills/prd/SKILL.md +148 -0
- package/skills/prd/agents/verdent.yaml +11 -0
- package/skills/prd/assets/icon-dark.png +0 -0
- package/skills/prd/assets/icon-light.png +0 -0
- package/skills/prismx-skill-gateway/SKILL.md +186 -0
- package/skills/prismx-skill-gateway/references/installed-skills.md +38 -0
- package/skills/prismx-skills-catalog/SKILL.md +51 -0
- package/skills/prismx-skills-catalog/references/inventory.json +1092 -0
- package/skills/prompt-enhancer/SKILL.md +90 -0
- package/skills/react-native-best-practices/SKILL.md +241 -0
- package/skills/react-native-best-practices/agents/verdent.yaml +11 -0
- package/skills/react-native-best-practices/assets/icon-dark.png +0 -0
- package/skills/react-native-best-practices/assets/icon-light.png +0 -0
- package/skills/react-native-best-practices/references/bundle-analyze-app.md +211 -0
- package/skills/react-native-best-practices/references/bundle-analyze-js.md +262 -0
- package/skills/react-native-best-practices/references/bundle-barrel-exports.md +248 -0
- package/skills/react-native-best-practices/references/bundle-code-splitting.md +224 -0
- package/skills/react-native-best-practices/references/bundle-hermes-mmap.md +167 -0
- package/skills/react-native-best-practices/references/bundle-library-size.md +177 -0
- package/skills/react-native-best-practices/references/bundle-native-assets.md +214 -0
- package/skills/react-native-best-practices/references/bundle-r8-android.md +225 -0
- package/skills/react-native-best-practices/references/bundle-tree-shaking.md +214 -0
- package/skills/react-native-best-practices/references/images/bundle-treemap-source-map-explorer.png +0 -0
- package/skills/react-native-best-practices/references/images/controlled-textinput-pingpong.png +0 -0
- package/skills/react-native-best-practices/references/images/devtools-flamegraph.png +0 -0
- package/skills/react-native-best-practices/references/images/emerge-xray-ios.png +0 -0
- package/skills/react-native-best-practices/references/images/expo-atlas-treemap.png +0 -0
- package/skills/react-native-best-practices/references/images/flashlight-flatlist-vs-flashlist.png +0 -0
- package/skills/react-native-best-practices/references/images/fps-drop-graph.png +0 -0
- package/skills/react-native-best-practices/references/images/memory-heap-snapshot.png +0 -0
- package/skills/react-native-best-practices/references/images/tti-warm-start-diagram.png +0 -0
- package/skills/react-native-best-practices/references/images/view-hierarchy-flattening.png +0 -0
- package/skills/react-native-best-practices/references/images/xcode-instruments-templates.png +0 -0
- package/skills/react-native-best-practices/references/images/xcode-thread-view.png +0 -0
- package/skills/react-native-best-practices/references/js-animations-reanimated.md +254 -0
- package/skills/react-native-best-practices/references/js-atomic-state.md +245 -0
- package/skills/react-native-best-practices/references/js-concurrent-react.md +236 -0
- package/skills/react-native-best-practices/references/js-lists-flatlist-flashlist.md +236 -0
- package/skills/react-native-best-practices/references/js-measure-fps.md +180 -0
- package/skills/react-native-best-practices/references/js-memory-leaks.md +205 -0
- package/skills/react-native-best-practices/references/js-profile-react.md +161 -0
- package/skills/react-native-best-practices/references/js-react-compiler.md +368 -0
- package/skills/react-native-best-practices/references/js-uncontrolled-components.md +216 -0
- package/skills/react-native-best-practices/references/native-android-16kb-alignment.md +113 -0
- package/skills/react-native-best-practices/references/native-measure-tti.md +262 -0
- package/skills/react-native-best-practices/references/native-memory-leaks.md +240 -0
- package/skills/react-native-best-practices/references/native-memory-patterns.md +274 -0
- package/skills/react-native-best-practices/references/native-platform-setup.md +110 -0
- package/skills/react-native-best-practices/references/native-profiling.md +176 -0
- package/skills/react-native-best-practices/references/native-sdks-over-polyfills.md +183 -0
- package/skills/react-native-best-practices/references/native-threading-model.md +234 -0
- package/skills/react-native-best-practices/references/native-turbo-modules.md +292 -0
- package/skills/react-native-best-practices/references/native-view-flattening.md +201 -0
- package/skills/redis-development/FULL_GUIDE.md +2216 -0
- package/skills/redis-development/SKILL.md +124 -0
- package/skills/redis-development/agents/verdent.yaml +12 -0
- package/skills/redis-development/assets/icon-dark.png +0 -0
- package/skills/redis-development/assets/icon-light.png +0 -0
- package/skills/redis-development/assets/logo.png +0 -0
- package/skills/redis-development/rules/_contributing.md +97 -0
- package/skills/redis-development/rules/_sections.md +50 -0
- package/skills/redis-development/rules/_template.md +52 -0
- package/skills/redis-development/rules/cluster-hash-tags.md +78 -0
- package/skills/redis-development/rules/cluster-read-replicas.md +55 -0
- package/skills/redis-development/rules/conn-blocking.md +75 -0
- package/skills/redis-development/rules/conn-client-cache.md +70 -0
- package/skills/redis-development/rules/conn-pipelining.md +58 -0
- package/skills/redis-development/rules/conn-pooling.md +71 -0
- package/skills/redis-development/rules/conn-timeouts.md +41 -0
- package/skills/redis-development/rules/data-choose-structure.md +76 -0
- package/skills/redis-development/rules/data-hash-field-expiry.md +62 -0
- package/skills/redis-development/rules/data-incr.md +76 -0
- package/skills/redis-development/rules/data-key-naming.md +62 -0
- package/skills/redis-development/rules/data-transactions.md +74 -0
- package/skills/redis-development/rules/json-partial-updates.md +49 -0
- package/skills/redis-development/rules/json-vs-hash.md +105 -0
- package/skills/redis-development/rules/observe-commands.md +53 -0
- package/skills/redis-development/rules/observe-metrics.md +39 -0
- package/skills/redis-development/rules/ram-limits.md +42 -0
- package/skills/redis-development/rules/ram-ttl.md +55 -0
- package/skills/redis-development/rules/rqe-dialect.md +47 -0
- package/skills/redis-development/rules/rqe-field-types.md +81 -0
- package/skills/redis-development/rules/rqe-index-creation.md +73 -0
- package/skills/redis-development/rules/rqe-index-management.md +49 -0
- package/skills/redis-development/rules/rqe-query-optimization.md +49 -0
- package/skills/redis-development/rules/rqe-skip-initial-scan.md +82 -0
- package/skills/redis-development/rules/security-acls.md +41 -0
- package/skills/redis-development/rules/security-auth.md +78 -0
- package/skills/redis-development/rules/security-network.md +52 -0
- package/skills/redis-development/rules/semantic-cache-best-practices.md +72 -0
- package/skills/redis-development/rules/semantic-cache-langcache-usage.md +86 -0
- package/skills/redis-development/rules/stream-choosing-pattern.md +44 -0
- package/skills/redis-development/rules/vector-algorithm-choice.md +60 -0
- package/skills/redis-development/rules/vector-hybrid-search.md +49 -0
- package/skills/redis-development/rules/vector-index-creation.md +83 -0
- package/skills/redis-development/rules/vector-rag-pattern.md +51 -0
- package/skills/refactor/agents/verdent.yaml +11 -0
- package/skills/refactor/assets/icon-dark.png +0 -0
- package/skills/refactor/assets/icon-light.png +0 -0
- package/skills/runtime-inspector/SKILL.md +99 -0
- package/skills/schema-markup/SKILL.md +179 -0
- package/skills/schema-markup/evals/evals.json +87 -0
- package/skills/schema-markup/references/schema-examples.md +398 -0
- package/skills/screenshot/LICENSE.txt +201 -0
- package/skills/screenshot/SKILL.md +271 -0
- package/skills/screenshot/agents/verdent.yaml +7 -0
- package/skills/screenshot/assets/icon-dark.png +0 -0
- package/skills/screenshot/assets/icon-light.png +0 -0
- package/skills/screenshot/assets/screenshot.png +0 -0
- package/skills/screenshot/scripts/ensure_macos_permissions.sh +54 -0
- package/skills/screenshot/scripts/macos_display_info.swift +22 -0
- package/skills/screenshot/scripts/macos_permissions.swift +40 -0
- package/skills/screenshot/scripts/macos_window_info.swift +126 -0
- package/skills/screenshot/scripts/take_screenshot.ps1 +163 -0
- package/skills/screenshot/scripts/take_screenshot.py +585 -0
- package/skills/security-and-hardening/SKILL.md +349 -0
- package/skills/security-best-practices/LICENSE.txt +201 -0
- package/skills/security-best-practices/SKILL.md +91 -0
- package/skills/security-best-practices/agents/verdent.yaml +7 -0
- package/skills/security-best-practices/assets/icon-dark.png +0 -0
- package/skills/security-best-practices/assets/icon-light.png +0 -0
- package/skills/security-best-practices/references/golang-general-backend-security.md +988 -0
- package/skills/security-best-practices/references/javascript-express-web-server-security.md +1151 -0
- package/skills/security-best-practices/references/javascript-general-web-frontend-security.md +725 -0
- package/skills/security-best-practices/references/javascript-jquery-web-frontend-security.md +672 -0
- package/skills/security-best-practices/references/javascript-typescript-nextjs-web-server-security.md +1138 -0
- package/skills/security-best-practices/references/javascript-typescript-react-web-frontend-security.md +975 -0
- package/skills/security-best-practices/references/javascript-typescript-vue-web-frontend-security.md +789 -0
- package/skills/security-best-practices/references/python-django-web-server-security.md +880 -0
- package/skills/security-best-practices/references/python-fastapi-web-server-security.md +1030 -0
- package/skills/security-best-practices/references/python-flask-web-server-security.md +835 -0
- package/skills/security-ownership-map/LICENSE.txt +201 -0
- package/skills/security-ownership-map/SKILL.md +212 -0
- package/skills/security-ownership-map/agents/verdent.yaml +12 -0
- package/skills/security-ownership-map/assets/icon-dark.png +0 -0
- package/skills/security-ownership-map/assets/icon-light.png +0 -0
- package/skills/security-ownership-map/references/neo4j-import.md +60 -0
- package/skills/security-ownership-map/scripts/build_ownership_map.py +956 -0
- package/skills/security-ownership-map/scripts/community_maintainers.py +544 -0
- package/skills/security-ownership-map/scripts/query_ownership.py +483 -0
- package/skills/security-ownership-map/scripts/run_ownership_map.py +200 -0
- package/skills/security-threat-model/LICENSE.txt +201 -0
- package/skills/security-threat-model/SKILL.md +94 -0
- package/skills/security-threat-model/agents/verdent.yaml +7 -0
- package/skills/security-threat-model/assets/icon-dark.png +0 -0
- package/skills/security-threat-model/assets/icon-light.png +0 -0
- package/skills/security-threat-model/references/prompt-template.md +254 -0
- package/skills/security-threat-model/references/security-controls-and-assets.md +35 -0
- package/skills/seo-audit/SKILL.md +527 -0
- package/skills/seo-audit/evals/evals.json +136 -0
- package/skills/seo-audit/references/ai-writing-detection.md +200 -0
- package/skills/seo-audit/references/international-seo.md +230 -0
- package/skills/sequential-thinking/SKILL.md +224 -0
- package/skills/session-context-primer/SKILL.md +69 -0
- package/skills/shipping-and-launch/SKILL.md +309 -0
- package/skills/source-driven-development/SKILL.md +194 -0
- package/skills/spec-writer/SKILL.md +200 -0
- package/skills/speech/LICENSE.txt +201 -0
- package/skills/speech/SKILL.md +150 -0
- package/skills/speech/agents/verdent.yaml +12 -0
- package/skills/speech/assets/icon-dark.png +0 -0
- package/skills/speech/assets/icon-light.png +0 -0
- package/skills/speech/assets/speech-small.svg +3 -0
- package/skills/speech/assets/speech.png +0 -0
- package/skills/speech/references/accessibility.md +32 -0
- package/skills/speech/references/audio-api.md +31 -0
- package/skills/speech/references/cli.md +99 -0
- package/skills/speech/references/ivr.md +32 -0
- package/skills/speech/references/narration.md +31 -0
- package/skills/speech/references/network-notes.md +28 -0
- package/skills/speech/references/prompting.md +38 -0
- package/skills/speech/references/sample-prompts.md +44 -0
- package/skills/speech/references/voice-directions.md +80 -0
- package/skills/speech/references/voiceover.md +31 -0
- package/skills/speech/scripts/text_to_speech.py +528 -0
- package/skills/system-architect/SKILL.md +677 -0
- package/skills/system-designer/SKILL.md +601 -0
- package/skills/systematic-debugging/CREATION-LOG.md +119 -0
- package/skills/systematic-debugging/condition-based-waiting-example.ts +158 -0
- package/skills/systematic-debugging/condition-based-waiting.md +115 -0
- package/skills/systematic-debugging/defense-in-depth.md +122 -0
- package/skills/systematic-debugging/find-polluter.sh +63 -0
- package/skills/systematic-debugging/root-cause-tracing.md +169 -0
- package/skills/systematic-debugging/test-academic.md +14 -0
- package/skills/systematic-debugging/test-pressure-1.md +58 -0
- package/skills/systematic-debugging/test-pressure-2.md +68 -0
- package/skills/systematic-debugging/test-pressure-3.md +69 -0
- package/skills/task-planner/SKILL.md +699 -0
- package/skills/task-reviewer/SKILL.md +387 -0
- package/skills/task-skill-router/SKILL.md +105 -0
- package/skills/tech-evaluator/SKILL.md +181 -0
- package/skills/tech-evaluator/references/ADR_TEMPLATE.md +80 -0
- package/skills/tech-evaluator/scripts/evaluate_matrix.py +190 -0
- package/skills/test-driven-development/SKILL.md +383 -0
- package/skills/test-driven-development/testing-anti-patterns.md +299 -0
- package/skills/theme-factory/LICENSE.txt +202 -0
- package/skills/theme-factory/SKILL.md +64 -0
- package/skills/theme-factory/agents/verdent.yaml +11 -0
- package/skills/theme-factory/assets/icon-dark.png +0 -0
- package/skills/theme-factory/assets/icon-light.png +0 -0
- package/skills/theme-factory/theme-showcase.pdf +0 -0
- package/skills/theme-factory/themes/arctic-frost.md +19 -0
- package/skills/theme-factory/themes/botanical-garden.md +19 -0
- package/skills/theme-factory/themes/desert-rose.md +19 -0
- package/skills/theme-factory/themes/forest-canopy.md +19 -0
- package/skills/theme-factory/themes/golden-hour.md +19 -0
- package/skills/theme-factory/themes/midnight-galaxy.md +19 -0
- package/skills/theme-factory/themes/modern-minimalist.md +19 -0
- package/skills/theme-factory/themes/ocean-depths.md +19 -0
- package/skills/theme-factory/themes/sunset-boulevard.md +19 -0
- package/skills/theme-factory/themes/tech-innovation.md +19 -0
- package/skills/transcribe/LICENSE.txt +201 -0
- package/skills/transcribe/SKILL.md +86 -0
- package/skills/transcribe/agents/verdent.yaml +12 -0
- package/skills/transcribe/assets/icon-dark.png +0 -0
- package/skills/transcribe/assets/icon-light.png +0 -0
- package/skills/transcribe/assets/transcribe-small.svg +3 -0
- package/skills/transcribe/assets/transcribe.png +0 -0
- package/skills/transcribe/references/api.md +8 -0
- package/skills/transcribe/scripts/transcribe_diarize.py +276 -0
- package/skills/vercel-composition-patterns/FULL_GUIDE.md +946 -0
- package/skills/vercel-composition-patterns/SKILL.md +92 -0
- package/skills/vercel-composition-patterns/agents/verdent.yaml +12 -0
- package/skills/vercel-composition-patterns/assets/icon-dark.png +0 -0
- package/skills/vercel-composition-patterns/assets/icon-light.png +0 -0
- package/skills/vercel-composition-patterns/rules/_sections.md +29 -0
- package/skills/vercel-composition-patterns/rules/_template.md +24 -0
- package/skills/vercel-composition-patterns/rules/architecture-avoid-boolean-props.md +100 -0
- package/skills/vercel-composition-patterns/rules/architecture-compound-components.md +112 -0
- package/skills/vercel-composition-patterns/rules/patterns-children-over-render-props.md +87 -0
- package/skills/vercel-composition-patterns/rules/patterns-explicit-variants.md +100 -0
- package/skills/vercel-composition-patterns/rules/react19-no-forwardref.md +42 -0
- package/skills/vercel-composition-patterns/rules/state-context-interface.md +191 -0
- package/skills/vercel-composition-patterns/rules/state-decouple-implementation.md +113 -0
- package/skills/vercel-composition-patterns/rules/state-lift-state.md +125 -0
- package/skills/vercel-deploy/LICENSE.txt +21 -0
- package/skills/vercel-deploy/SKILL.md +75 -0
- package/skills/vercel-deploy/agents/verdent.yaml +7 -0
- package/skills/vercel-deploy/assets/icon-dark.png +0 -0
- package/skills/vercel-deploy/assets/icon-light.png +0 -0
- package/skills/vercel-deploy/assets/vercel.png +0 -0
- package/skills/vercel-deploy/scripts/deploy.sh +301 -0
- package/skills/vercel-react-best-practices/FULL_GUIDE.md +3254 -0
- package/skills/vercel-react-best-practices/SKILL.md +144 -0
- package/skills/vercel-react-best-practices/agents/verdent.yaml +12 -0
- package/skills/vercel-react-best-practices/assets/icon-dark.png +0 -0
- package/skills/vercel-react-best-practices/assets/icon-light.png +0 -0
- package/skills/vercel-react-best-practices/rules/_sections.md +46 -0
- package/skills/vercel-react-best-practices/rules/_template.md +28 -0
- package/skills/vercel-react-best-practices/rules/advanced-event-handler-refs.md +55 -0
- package/skills/vercel-react-best-practices/rules/advanced-init-once.md +42 -0
- package/skills/vercel-react-best-practices/rules/advanced-use-latest.md +39 -0
- package/skills/vercel-react-best-practices/rules/async-api-routes.md +38 -0
- package/skills/vercel-react-best-practices/rules/async-defer-await.md +80 -0
- package/skills/vercel-react-best-practices/rules/async-dependencies.md +51 -0
- package/skills/vercel-react-best-practices/rules/async-parallel.md +28 -0
- package/skills/vercel-react-best-practices/rules/async-suspense-boundaries.md +99 -0
- package/skills/vercel-react-best-practices/rules/bundle-barrel-imports.md +59 -0
- package/skills/vercel-react-best-practices/rules/bundle-conditional.md +31 -0
- package/skills/vercel-react-best-practices/rules/bundle-defer-third-party.md +49 -0
- package/skills/vercel-react-best-practices/rules/bundle-dynamic-imports.md +35 -0
- package/skills/vercel-react-best-practices/rules/bundle-preload.md +50 -0
- package/skills/vercel-react-best-practices/rules/client-event-listeners.md +74 -0
- package/skills/vercel-react-best-practices/rules/client-localstorage-schema.md +71 -0
- package/skills/vercel-react-best-practices/rules/client-passive-event-listeners.md +48 -0
- package/skills/vercel-react-best-practices/rules/client-swr-dedup.md +56 -0
- package/skills/vercel-react-best-practices/rules/js-batch-dom-css.md +107 -0
- package/skills/vercel-react-best-practices/rules/js-cache-function-results.md +80 -0
- package/skills/vercel-react-best-practices/rules/js-cache-property-access.md +28 -0
- package/skills/vercel-react-best-practices/rules/js-cache-storage.md +70 -0
- package/skills/vercel-react-best-practices/rules/js-combine-iterations.md +32 -0
- package/skills/vercel-react-best-practices/rules/js-early-exit.md +50 -0
- package/skills/vercel-react-best-practices/rules/js-flatmap-filter.md +60 -0
- package/skills/vercel-react-best-practices/rules/js-hoist-regexp.md +45 -0
- package/skills/vercel-react-best-practices/rules/js-index-maps.md +37 -0
- package/skills/vercel-react-best-practices/rules/js-length-check-first.md +49 -0
- package/skills/vercel-react-best-practices/rules/js-min-max-loop.md +82 -0
- package/skills/vercel-react-best-practices/rules/js-set-map-lookups.md +24 -0
- package/skills/vercel-react-best-practices/rules/js-tosorted-immutable.md +57 -0
- package/skills/vercel-react-best-practices/rules/rendering-activity.md +26 -0
- package/skills/vercel-react-best-practices/rules/rendering-animate-svg-wrapper.md +47 -0
- package/skills/vercel-react-best-practices/rules/rendering-conditional-render.md +40 -0
- package/skills/vercel-react-best-practices/rules/rendering-content-visibility.md +38 -0
- package/skills/vercel-react-best-practices/rules/rendering-hoist-jsx.md +46 -0
- package/skills/vercel-react-best-practices/rules/rendering-hydration-no-flicker.md +82 -0
- package/skills/vercel-react-best-practices/rules/rendering-hydration-suppress-warning.md +30 -0
- package/skills/vercel-react-best-practices/rules/rendering-resource-hints.md +85 -0
- package/skills/vercel-react-best-practices/rules/rendering-script-defer-async.md +68 -0
- package/skills/vercel-react-best-practices/rules/rendering-svg-precision.md +28 -0
- package/skills/vercel-react-best-practices/rules/rendering-usetransition-loading.md +75 -0
- package/skills/vercel-react-best-practices/rules/rerender-defer-reads.md +39 -0
- package/skills/vercel-react-best-practices/rules/rerender-dependencies.md +45 -0
- package/skills/vercel-react-best-practices/rules/rerender-derived-state-no-effect.md +40 -0
- package/skills/vercel-react-best-practices/rules/rerender-derived-state.md +29 -0
- package/skills/vercel-react-best-practices/rules/rerender-functional-setstate.md +74 -0
- package/skills/vercel-react-best-practices/rules/rerender-lazy-state-init.md +58 -0
- package/skills/vercel-react-best-practices/rules/rerender-memo-with-default-value.md +38 -0
- package/skills/vercel-react-best-practices/rules/rerender-memo.md +44 -0
- package/skills/vercel-react-best-practices/rules/rerender-move-effect-to-event.md +45 -0
- package/skills/vercel-react-best-practices/rules/rerender-no-inline-components.md +82 -0
- package/skills/vercel-react-best-practices/rules/rerender-simple-expression-in-memo.md +35 -0
- package/skills/vercel-react-best-practices/rules/rerender-transitions.md +40 -0
- package/skills/vercel-react-best-practices/rules/rerender-use-ref-transient-values.md +73 -0
- package/skills/vercel-react-best-practices/rules/server-after-nonblocking.md +73 -0
- package/skills/vercel-react-best-practices/rules/server-auth-actions.md +96 -0
- package/skills/vercel-react-best-practices/rules/server-cache-lru.md +41 -0
- package/skills/vercel-react-best-practices/rules/server-cache-react.md +76 -0
- package/skills/vercel-react-best-practices/rules/server-dedup-props.md +65 -0
- package/skills/vercel-react-best-practices/rules/server-hoist-static-io.md +142 -0
- package/skills/vercel-react-best-practices/rules/server-parallel-fetching.md +83 -0
- package/skills/vercel-react-best-practices/rules/server-serialization.md +38 -0
- package/skills/verdent-image-cli/SKILL.md +218 -0
- package/skills/verdent-image-cli/agents/verdent.yaml +11 -0
- package/skills/verdent-image-cli/assets/icon-dark.png +0 -0
- package/skills/verdent-image-cli/assets/icon-light.png +0 -0
- package/skills/verdent-skills-catalog/SKILL.md +72 -0
- package/skills/verdent-skills-catalog/references/categories.json +158 -0
- package/skills/verdent-skills-catalog/references/inventory.json +493 -0
- package/skills/verification-before-completion/SKILL.md +139 -0
- package/skills/web-quality-audit/SKILL.md +172 -0
- package/skills/web-quality-audit/scripts/analyze.sh +113 -0
- package/skills/webapp-testing/LICENSE.txt +202 -0
- package/skills/webapp-testing/SKILL.md +302 -0
- package/skills/webapp-testing/examples/console_logging.py +35 -0
- package/skills/webapp-testing/examples/element_discovery.py +40 -0
- package/skills/webapp-testing/examples/static_html_automation.py +33 -0
- package/skills/webapp-testing/scripts/with_server.py +110 -0
- package/skills/workers-best-practices/SKILL.md +132 -0
- package/skills/workers-best-practices/agents/verdent.yaml +11 -0
- package/skills/workers-best-practices/assets/icon-dark.png +0 -0
- package/skills/workers-best-practices/assets/icon-light.png +0 -0
- package/skills/workers-best-practices/references/review.md +174 -0
- package/skills/workers-best-practices/references/rules.md +463 -0
- package/skills/xlsx/SKILL.md +318 -0
- package/skills/xlsx/agents/verdent.yaml +9 -0
- package/skills/xlsx/assets/icon-dark.png +0 -0
- package/skills/xlsx/assets/icon-light.png +0 -0
- package/skills/xlsx/assets/spreadsheet.png +0 -0
- package/skills/xlsx/references/advanced-analysis.md +272 -0
- package/skills/xlsx/references/examples/openpyxl/create_basic_spreadsheet.py +51 -0
- package/skills/xlsx/references/examples/openpyxl/create_spreadsheet_with_styling.py +96 -0
- package/skills/xlsx/references/examples/openpyxl/read_existing_spreadsheet.py +59 -0
- package/skills/xlsx/references/examples/openpyxl/styling_spreadsheet.py +79 -0
- package/skills/xlsx/scripts/formula_engine.py +219 -0
- package/skills/xlsx/scripts/profile.py +62 -0
- package/src/commands/doctor.js +9 -0
- package/src/commands/feedback.js +29 -0
- package/src/commands/init.js +39 -3
- package/src/commands/pipeline.js +31 -0
- package/src/commands/providers.js +54 -0
- package/src/commands/recover.js +62 -0
- package/src/commands/route.js +7 -0
- package/src/commands/scaffold.js +7 -1
- package/src/commands/skill.js +141 -0
- package/src/commands/stack.js +97 -0
- package/src/commands/ui.js +50 -0
- package/src/commands/upgrade.js +2 -2
- package/src/lib/audit.js +9 -1
- package/src/lib/capability-router.js +4 -3
- package/src/lib/contract.js +58 -0
- package/src/lib/disabled-skills.js +86 -0
- package/src/lib/doctor.js +100 -3
- package/src/lib/env-flags.js +35 -0
- package/src/lib/execution-policy.js +80 -4
- package/src/lib/explanation-plain.js +72 -0
- package/src/lib/explanation.js +183 -0
- package/src/lib/feedback.js +65 -0
- package/src/lib/i18n.js +43 -0
- package/src/lib/ide-sync.js +4 -3
- package/src/lib/pipeline.js +68 -0
- package/src/lib/providers/doctor.js +205 -0
- package/src/lib/recover.js +93 -0
- package/src/lib/registry.js +79 -0
- package/src/lib/route-engine.js +21 -1
- package/src/lib/scaffold/index.js +24 -7
- package/src/lib/scaffold/presets.js +213 -24
- package/src/lib/skill-audit.js +141 -0
- package/src/lib/stack/index.js +259 -0
- package/src/lib/ui-server.js +226 -0
- package/src/lib/upgrade-matrix.js +16 -1
- package/src/lib/workspace-boundary.js +60 -0
- package/templates/minimal/AGENT.md +10 -1
- package/templates/minimal/DONE.md +10 -0
- package/templates/minimal/GUNLUK.md +26 -0
- package/templates/minimal/docs/conventions/daily-use.md +132 -0
- package/templates/minimal/docs/conventions/task-to-capability-cheatsheet.md +29 -0
- package/templates/minimal/docs/kullanim-kilavuzu.md +374 -0
- package/ui/app.js +257 -0
- package/ui/index.html +96 -0
- package/ui/styles.css +227 -0
- package/workflows/audit.md +143 -0
- package/workflows/blueprint.md +374 -0
- package/workflows/challenge.md +322 -0
- package/workflows/change.md +162 -0
- package/workflows/craft.md +135 -0
- package/workflows/design-system.md +248 -0
- package/workflows/explore.md +226 -0
- package/workflows/forge.md +570 -34
- package/workflows/genesis.md +307 -0
- package/workflows/ingest.md +145 -0
- package/workflows/init.md +216 -0
- package/workflows/probe.md +181 -0
- package/workflows/query-to-page.md +134 -0
- package/workflows/quickstart.md +111 -0
- package/workflows/retro.md +78 -0
- package/workflows/upgrade.md +146 -0
- package/workflows/wiki-lint.md +159 -0
- package/templates/bundle/skills/capability-router/SKILL.md +0 -12
- package/templates/bundle/skills/context-memory-bridge/SKILL.md +0 -17
- package/templates/bundle/skills/localization-hub/SKILL.md +0 -17
- package/templates/bundle/skills/refactor/SKILL.md +0 -17
- package/templates/bundle/skills/systematic-debugging/SKILL.md +0 -19
- package/templates/bundle/workflows/forge.md +0 -51
|
@@ -0,0 +1,287 @@
|
|
|
1
|
+
# Visual Companion Guide
|
|
2
|
+
|
|
3
|
+
Browser-based visual brainstorming companion for showing mockups, diagrams, and options.
|
|
4
|
+
|
|
5
|
+
## When to Use
|
|
6
|
+
|
|
7
|
+
Decide per-question, not per-session. The test: **would the user understand this better by seeing it than reading it?**
|
|
8
|
+
|
|
9
|
+
**Use the browser** when the content itself is visual:
|
|
10
|
+
|
|
11
|
+
- **UI mockups** — wireframes, layouts, navigation structures, component designs
|
|
12
|
+
- **Architecture diagrams** — system components, data flow, relationship maps
|
|
13
|
+
- **Side-by-side visual comparisons** — comparing two layouts, two color schemes, two design directions
|
|
14
|
+
- **Design polish** — when the question is about look and feel, spacing, visual hierarchy
|
|
15
|
+
- **Spatial relationships** — state machines, flowcharts, entity relationships rendered as diagrams
|
|
16
|
+
|
|
17
|
+
**Use the terminal** when the content is text or tabular:
|
|
18
|
+
|
|
19
|
+
- **Requirements and scope questions** — "what does X mean?", "which features are in scope?"
|
|
20
|
+
- **Conceptual A/B/C choices** — picking between approaches described in words
|
|
21
|
+
- **Tradeoff lists** — pros/cons, comparison tables
|
|
22
|
+
- **Technical decisions** — API design, data modeling, architectural approach selection
|
|
23
|
+
- **Clarifying questions** — anything where the answer is words, not a visual preference
|
|
24
|
+
|
|
25
|
+
A question *about* a UI topic is not automatically a visual question. "What kind of wizard do you want?" is conceptual — use the terminal. "Which of these wizard layouts feels right?" is visual — use the browser.
|
|
26
|
+
|
|
27
|
+
## How It Works
|
|
28
|
+
|
|
29
|
+
The server watches a directory for HTML files and serves the newest one to the browser. You write HTML content to `screen_dir`, the user sees it in their browser and can click to select options. Selections are recorded to `state_dir/events` that you read on your next turn.
|
|
30
|
+
|
|
31
|
+
**Content fragments vs full documents:** If your HTML file starts with `<!DOCTYPE` or `<html`, the server serves it as-is (just injects the helper script). Otherwise, the server automatically wraps your content in the frame template — adding the header, CSS theme, selection indicator, and all interactive infrastructure. **Write content fragments by default.** Only write full documents when you need complete control over the page.
|
|
32
|
+
|
|
33
|
+
## Starting a Session
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
# Start server with persistence (mockups saved to project)
|
|
37
|
+
scripts/start-server.sh --project-dir /path/to/project
|
|
38
|
+
|
|
39
|
+
# Returns: {"type":"server-started","port":52341,"url":"http://localhost:52341",
|
|
40
|
+
# "screen_dir":"/path/to/project/.superpowers/brainstorm/12345-1706000000/content",
|
|
41
|
+
# "state_dir":"/path/to/project/.superpowers/brainstorm/12345-1706000000/state"}
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
Save `screen_dir` and `state_dir` from the response. Tell user to open the URL.
|
|
45
|
+
|
|
46
|
+
**Finding connection info:** The server writes its startup JSON to `$STATE_DIR/server-info`. If you launched the server in the background and didn't capture stdout, read that file to get the URL and port. When using `--project-dir`, check `<project>/.superpowers/brainstorm/` for the session directory.
|
|
47
|
+
|
|
48
|
+
**Note:** Pass the project root as `--project-dir` so mockups persist in `.superpowers/brainstorm/` and survive server restarts. Without it, files go to `/tmp` and get cleaned up. Remind the user to add `.superpowers/` to `.gitignore` if it's not already there.
|
|
49
|
+
|
|
50
|
+
**Launching the server by platform:**
|
|
51
|
+
|
|
52
|
+
**Claude Code (macOS / Linux):**
|
|
53
|
+
```bash
|
|
54
|
+
# Default mode works — the script backgrounds the server itself
|
|
55
|
+
scripts/start-server.sh --project-dir /path/to/project
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
**Claude Code (Windows):**
|
|
59
|
+
```bash
|
|
60
|
+
# Windows auto-detects and uses foreground mode, which blocks the tool call.
|
|
61
|
+
# Use run_in_background: true on the Bash tool call so the server survives
|
|
62
|
+
# across conversation turns.
|
|
63
|
+
scripts/start-server.sh --project-dir /path/to/project
|
|
64
|
+
```
|
|
65
|
+
When calling this via the Bash tool, set `run_in_background: true`. Then read `$STATE_DIR/server-info` on the next turn to get the URL and port.
|
|
66
|
+
|
|
67
|
+
**Codex:**
|
|
68
|
+
```bash
|
|
69
|
+
# Codex reaps background processes. The script auto-detects CODEX_CI and
|
|
70
|
+
# switches to foreground mode. Run it normally — no extra flags needed.
|
|
71
|
+
scripts/start-server.sh --project-dir /path/to/project
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
**Gemini CLI:**
|
|
75
|
+
```bash
|
|
76
|
+
# Use --foreground and set is_background: true on your shell tool call
|
|
77
|
+
# so the process survives across turns
|
|
78
|
+
scripts/start-server.sh --project-dir /path/to/project --foreground
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
**Other environments:** The server must keep running in the background across conversation turns. If your environment reaps detached processes, use `--foreground` and launch the command with your platform's background execution mechanism.
|
|
82
|
+
|
|
83
|
+
If the URL is unreachable from your browser (common in remote/containerized setups), bind a non-loopback host:
|
|
84
|
+
|
|
85
|
+
```bash
|
|
86
|
+
scripts/start-server.sh \
|
|
87
|
+
--project-dir /path/to/project \
|
|
88
|
+
--host 0.0.0.0 \
|
|
89
|
+
--url-host localhost
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
Use `--url-host` to control what hostname is printed in the returned URL JSON.
|
|
93
|
+
|
|
94
|
+
## The Loop
|
|
95
|
+
|
|
96
|
+
1. **Check server is alive**, then **write HTML** to a new file in `screen_dir`:
|
|
97
|
+
- Before each write, check that `$STATE_DIR/server-info` exists. If it doesn't (or `$STATE_DIR/server-stopped` exists), the server has shut down — restart it with `start-server.sh` before continuing. The server auto-exits after 30 minutes of inactivity.
|
|
98
|
+
- Use semantic filenames: `platform.html`, `visual-style.html`, `layout.html`
|
|
99
|
+
- **Never reuse filenames** — each screen gets a fresh file
|
|
100
|
+
- Use Write tool — **never use cat/heredoc** (dumps noise into terminal)
|
|
101
|
+
- Server automatically serves the newest file
|
|
102
|
+
|
|
103
|
+
2. **Tell user what to expect and end your turn:**
|
|
104
|
+
- Remind them of the URL (every step, not just first)
|
|
105
|
+
- Give a brief text summary of what's on screen (e.g., "Showing 3 layout options for the homepage")
|
|
106
|
+
- Ask them to respond in the terminal: "Take a look and let me know what you think. Click to select an option if you'd like."
|
|
107
|
+
|
|
108
|
+
3. **On your next turn** — after the user responds in the terminal:
|
|
109
|
+
- Read `$STATE_DIR/events` if it exists — this contains the user's browser interactions (clicks, selections) as JSON lines
|
|
110
|
+
- Merge with the user's terminal text to get the full picture
|
|
111
|
+
- The terminal message is the primary feedback; `state_dir/events` provides structured interaction data
|
|
112
|
+
|
|
113
|
+
4. **Iterate or advance** — if feedback changes current screen, write a new file (e.g., `layout-v2.html`). Only move to the next question when the current step is validated.
|
|
114
|
+
|
|
115
|
+
5. **Unload when returning to terminal** — when the next step doesn't need the browser (e.g., a clarifying question, a tradeoff discussion), push a waiting screen to clear the stale content:
|
|
116
|
+
|
|
117
|
+
```html
|
|
118
|
+
<!-- filename: waiting.html (or waiting-2.html, etc.) -->
|
|
119
|
+
<div style="display:flex;align-items:center;justify-content:center;min-height:60vh">
|
|
120
|
+
<p class="subtitle">Continuing in terminal...</p>
|
|
121
|
+
</div>
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
This prevents the user from staring at a resolved choice while the conversation has moved on. When the next visual question comes up, push a new content file as usual.
|
|
125
|
+
|
|
126
|
+
6. Repeat until done.
|
|
127
|
+
|
|
128
|
+
## Writing Content Fragments
|
|
129
|
+
|
|
130
|
+
Write just the content that goes inside the page. The server wraps it in the frame template automatically (header, theme CSS, selection indicator, and all interactive infrastructure).
|
|
131
|
+
|
|
132
|
+
**Minimal example:**
|
|
133
|
+
|
|
134
|
+
```html
|
|
135
|
+
<h2>Which layout works better?</h2>
|
|
136
|
+
<p class="subtitle">Consider readability and visual hierarchy</p>
|
|
137
|
+
|
|
138
|
+
<div class="options">
|
|
139
|
+
<div class="option" data-choice="a" onclick="toggleSelect(this)">
|
|
140
|
+
<div class="letter">A</div>
|
|
141
|
+
<div class="content">
|
|
142
|
+
<h3>Single Column</h3>
|
|
143
|
+
<p>Clean, focused reading experience</p>
|
|
144
|
+
</div>
|
|
145
|
+
</div>
|
|
146
|
+
<div class="option" data-choice="b" onclick="toggleSelect(this)">
|
|
147
|
+
<div class="letter">B</div>
|
|
148
|
+
<div class="content">
|
|
149
|
+
<h3>Two Column</h3>
|
|
150
|
+
<p>Sidebar navigation with main content</p>
|
|
151
|
+
</div>
|
|
152
|
+
</div>
|
|
153
|
+
</div>
|
|
154
|
+
```
|
|
155
|
+
|
|
156
|
+
That's it. No `<html>`, no CSS, no `<script>` tags needed. The server provides all of that.
|
|
157
|
+
|
|
158
|
+
## CSS Classes Available
|
|
159
|
+
|
|
160
|
+
The frame template provides these CSS classes for your content:
|
|
161
|
+
|
|
162
|
+
### Options (A/B/C choices)
|
|
163
|
+
|
|
164
|
+
```html
|
|
165
|
+
<div class="options">
|
|
166
|
+
<div class="option" data-choice="a" onclick="toggleSelect(this)">
|
|
167
|
+
<div class="letter">A</div>
|
|
168
|
+
<div class="content">
|
|
169
|
+
<h3>Title</h3>
|
|
170
|
+
<p>Description</p>
|
|
171
|
+
</div>
|
|
172
|
+
</div>
|
|
173
|
+
</div>
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
**Multi-select:** Add `data-multiselect` to the container to let users select multiple options. Each click toggles the item. The indicator bar shows the count.
|
|
177
|
+
|
|
178
|
+
```html
|
|
179
|
+
<div class="options" data-multiselect>
|
|
180
|
+
<!-- same option markup — users can select/deselect multiple -->
|
|
181
|
+
</div>
|
|
182
|
+
```
|
|
183
|
+
|
|
184
|
+
### Cards (visual designs)
|
|
185
|
+
|
|
186
|
+
```html
|
|
187
|
+
<div class="cards">
|
|
188
|
+
<div class="card" data-choice="design1" onclick="toggleSelect(this)">
|
|
189
|
+
<div class="card-image"><!-- mockup content --></div>
|
|
190
|
+
<div class="card-body">
|
|
191
|
+
<h3>Name</h3>
|
|
192
|
+
<p>Description</p>
|
|
193
|
+
</div>
|
|
194
|
+
</div>
|
|
195
|
+
</div>
|
|
196
|
+
```
|
|
197
|
+
|
|
198
|
+
### Mockup container
|
|
199
|
+
|
|
200
|
+
```html
|
|
201
|
+
<div class="mockup">
|
|
202
|
+
<div class="mockup-header">Preview: Dashboard Layout</div>
|
|
203
|
+
<div class="mockup-body"><!-- your mockup HTML --></div>
|
|
204
|
+
</div>
|
|
205
|
+
```
|
|
206
|
+
|
|
207
|
+
### Split view (side-by-side)
|
|
208
|
+
|
|
209
|
+
```html
|
|
210
|
+
<div class="split">
|
|
211
|
+
<div class="mockup"><!-- left --></div>
|
|
212
|
+
<div class="mockup"><!-- right --></div>
|
|
213
|
+
</div>
|
|
214
|
+
```
|
|
215
|
+
|
|
216
|
+
### Pros/Cons
|
|
217
|
+
|
|
218
|
+
```html
|
|
219
|
+
<div class="pros-cons">
|
|
220
|
+
<div class="pros"><h4>Pros</h4><ul><li>Benefit</li></ul></div>
|
|
221
|
+
<div class="cons"><h4>Cons</h4><ul><li>Drawback</li></ul></div>
|
|
222
|
+
</div>
|
|
223
|
+
```
|
|
224
|
+
|
|
225
|
+
### Mock elements (wireframe building blocks)
|
|
226
|
+
|
|
227
|
+
```html
|
|
228
|
+
<div class="mock-nav">Logo | Home | About | Contact</div>
|
|
229
|
+
<div style="display: flex;">
|
|
230
|
+
<div class="mock-sidebar">Navigation</div>
|
|
231
|
+
<div class="mock-content">Main content area</div>
|
|
232
|
+
</div>
|
|
233
|
+
<button class="mock-button">Action Button</button>
|
|
234
|
+
<input class="mock-input" placeholder="Input field">
|
|
235
|
+
<div class="placeholder">Placeholder area</div>
|
|
236
|
+
```
|
|
237
|
+
|
|
238
|
+
### Typography and sections
|
|
239
|
+
|
|
240
|
+
- `h2` — page title
|
|
241
|
+
- `h3` — section heading
|
|
242
|
+
- `.subtitle` — secondary text below title
|
|
243
|
+
- `.section` — content block with bottom margin
|
|
244
|
+
- `.label` — small uppercase label text
|
|
245
|
+
|
|
246
|
+
## Browser Events Format
|
|
247
|
+
|
|
248
|
+
When the user clicks options in the browser, their interactions are recorded to `$STATE_DIR/events` (one JSON object per line). The file is cleared automatically when you push a new screen.
|
|
249
|
+
|
|
250
|
+
```jsonl
|
|
251
|
+
{"type":"click","choice":"a","text":"Option A - Simple Layout","timestamp":1706000101}
|
|
252
|
+
{"type":"click","choice":"c","text":"Option C - Complex Grid","timestamp":1706000108}
|
|
253
|
+
{"type":"click","choice":"b","text":"Option B - Hybrid","timestamp":1706000115}
|
|
254
|
+
```
|
|
255
|
+
|
|
256
|
+
The full event stream shows the user's exploration path — they may click multiple options before settling. The last `choice` event is typically the final selection, but the pattern of clicks can reveal hesitation or preferences worth asking about.
|
|
257
|
+
|
|
258
|
+
If `$STATE_DIR/events` doesn't exist, the user didn't interact with the browser — use only their terminal text.
|
|
259
|
+
|
|
260
|
+
## Design Tips
|
|
261
|
+
|
|
262
|
+
- **Scale fidelity to the question** — wireframes for layout, polish for polish questions
|
|
263
|
+
- **Explain the question on each page** — "Which layout feels more professional?" not just "Pick one"
|
|
264
|
+
- **Iterate before advancing** — if feedback changes current screen, write a new version
|
|
265
|
+
- **2-4 options max** per screen
|
|
266
|
+
- **Use real content when it matters** — for a photography portfolio, use actual images (Unsplash). Placeholder content obscures design issues.
|
|
267
|
+
- **Keep mockups simple** — focus on layout and structure, not pixel-perfect design
|
|
268
|
+
|
|
269
|
+
## File Naming
|
|
270
|
+
|
|
271
|
+
- Use semantic names: `platform.html`, `visual-style.html`, `layout.html`
|
|
272
|
+
- Never reuse filenames — each screen must be a new file
|
|
273
|
+
- For iterations: append version suffix like `layout-v2.html`, `layout-v3.html`
|
|
274
|
+
- Server serves newest file by modification time
|
|
275
|
+
|
|
276
|
+
## Cleaning Up
|
|
277
|
+
|
|
278
|
+
```bash
|
|
279
|
+
scripts/stop-server.sh $SESSION_DIR
|
|
280
|
+
```
|
|
281
|
+
|
|
282
|
+
If the session used `--project-dir`, mockup files persist in `.superpowers/brainstorm/` for later reference. Only `/tmp` sessions get deleted on stop.
|
|
283
|
+
|
|
284
|
+
## Reference
|
|
285
|
+
|
|
286
|
+
- Frame template (CSS reference): `scripts/frame-template.html`
|
|
287
|
+
- Helper script (client-side): `scripts/helper.js`
|
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
|
178
|
+
|
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
180
|
+
|
|
181
|
+
To apply the Apache License to your work, attach the following
|
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
183
|
+
replaced with your own identifying information. (Don't include
|
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
185
|
+
comment syntax for the file format. We also recommend that a
|
|
186
|
+
file or class name and description of purpose be included on the
|
|
187
|
+
same "printed page" as the copyright notice for easier
|
|
188
|
+
identification within third-party archives.
|
|
189
|
+
|
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
|
191
|
+
|
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
193
|
+
you may not use this file except in compliance with the License.
|
|
194
|
+
You may obtain a copy of the License at
|
|
195
|
+
|
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
197
|
+
|
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
201
|
+
See the License for the specific language governing permissions and
|
|
202
|
+
limitations under the License.
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: canvas-design
|
|
3
|
+
description: Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.
|
|
4
|
+
license: Apache-2.0
|
|
5
|
+
metadata:
|
|
6
|
+
version: '1.0.1'
|
|
7
|
+
origin: verdent
|
|
8
|
+
prismx_bundle: verdent
|
|
9
|
+
prismx_imported_at: 2026-05-27
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
These are instructions for creating design philosophies - aesthetic movements that are then EXPRESSED VISUALLY. Output only .md files, .pdf files, and .png files.
|
|
13
|
+
|
|
14
|
+
Complete this in two steps:
|
|
15
|
+
1. Design Philosophy Creation (.md file)
|
|
16
|
+
2. Express by creating it on a canvas (.pdf file or .png file)
|
|
17
|
+
|
|
18
|
+
First, undertake this task:
|
|
19
|
+
|
|
20
|
+
## DESIGN PHILOSOPHY CREATION
|
|
21
|
+
|
|
22
|
+
To begin, create a VISUAL PHILOSOPHY (not layouts or templates) that will be interpreted through:
|
|
23
|
+
- Form, space, color, composition
|
|
24
|
+
- Images, graphics, shapes, patterns
|
|
25
|
+
- Minimal text as visual accent
|
|
26
|
+
|
|
27
|
+
### THE CRITICAL UNDERSTANDING
|
|
28
|
+
- What is received: Some subtle input or instructions by the user that should be taken into account, but used as a foundation; it should not constrain creative freedom.
|
|
29
|
+
- What is created: A design philosophy/aesthetic movement.
|
|
30
|
+
- What happens next: Then, the same version receives the philosophy and EXPRESSES IT VISUALLY - creating artifacts that are 90% visual design, 10% essential text.
|
|
31
|
+
|
|
32
|
+
Consider this approach:
|
|
33
|
+
- Write a manifesto for an art movement
|
|
34
|
+
- The next phase involves making the artwork
|
|
35
|
+
|
|
36
|
+
The philosophy must emphasize: Visual expression. Spatial communication. Artistic interpretation. Minimal words.
|
|
37
|
+
|
|
38
|
+
### HOW TO GENERATE A VISUAL PHILOSOPHY
|
|
39
|
+
|
|
40
|
+
**Name the movement** (1-2 words): "Brutalist Joy" / "Chromatic Silence" / "Metabolist Dreams"
|
|
41
|
+
|
|
42
|
+
**Articulate the philosophy** (4-6 paragraphs - concise but complete):
|
|
43
|
+
|
|
44
|
+
To capture the VISUAL essence, express how the philosophy manifests through:
|
|
45
|
+
- Space and form
|
|
46
|
+
- Color and material
|
|
47
|
+
- Scale and rhythm
|
|
48
|
+
- Composition and balance
|
|
49
|
+
- Visual hierarchy
|
|
50
|
+
|
|
51
|
+
**CRITICAL GUIDELINES:**
|
|
52
|
+
- **Avoid redundancy**: Each design aspect should be mentioned once. Avoid repeating points about color theory, spatial relationships, or typographic principles unless adding new depth.
|
|
53
|
+
- **Emphasize craftsmanship REPEATEDLY**: The philosophy MUST stress multiple times that the final work should appear as though it took countless hours to create, was labored over with care, and comes from someone at the absolute top of their field. This framing is essential - repeat phrases like "meticulously crafted," "the product of deep expertise," "painstaking attention," "master-level execution."
|
|
54
|
+
- **Leave creative space**: Remain specific about the aesthetic direction, but concise enough that the agent has room to make interpretive choices also at a extremely high level of craftmanship.
|
|
55
|
+
|
|
56
|
+
The philosophy must guide the next version to express ideas VISUALLY, not through text. Information lives in design, not paragraphs.
|
|
57
|
+
|
|
58
|
+
### PHILOSOPHY EXAMPLES
|
|
59
|
+
|
|
60
|
+
**"Concrete Poetry"**
|
|
61
|
+
Philosophy: Communication through monumental form and bold geometry.
|
|
62
|
+
Visual expression: Massive color blocks, sculptural typography (huge single words, tiny labels), Brutalist spatial divisions, Polish poster energy meets Le Corbusier. Ideas expressed through visual weight and spatial tension, not explanation. Text as rare, powerful gesture - never paragraphs, only essential words integrated into the visual architecture. Every element placed with the precision of a master craftsman.
|
|
63
|
+
|
|
64
|
+
**"Chromatic Language"**
|
|
65
|
+
Philosophy: Color as the primary information system.
|
|
66
|
+
Visual expression: Geometric precision where color zones create meaning. Typography minimal - small sans-serif labels letting chromatic fields communicate. Think Josef Albers' interaction meets data visualization. Information encoded spatially and chromatically. Words only to anchor what color already shows. The result of painstaking chromatic calibration.
|
|
67
|
+
|
|
68
|
+
**"Analog Meditation"**
|
|
69
|
+
Philosophy: Quiet visual contemplation through texture and breathing room.
|
|
70
|
+
Visual expression: Paper grain, ink bleeds, vast negative space. Photography and illustration dominate. Typography whispered (small, restrained, serving the visual). Japanese photobook aesthetic. Images breathe across pages. Text appears sparingly - short phrases, never explanatory blocks. Each composition balanced with the care of a meditation practice.
|
|
71
|
+
|
|
72
|
+
**"Organic Systems"**
|
|
73
|
+
Philosophy: Natural clustering and modular growth patterns.
|
|
74
|
+
Visual expression: Rounded forms, organic arrangements, color from nature through architecture. Information shown through visual diagrams, spatial relationships, iconography. Text only for key labels floating in space. The composition tells the story through expert spatial orchestration.
|
|
75
|
+
|
|
76
|
+
**"Geometric Silence"**
|
|
77
|
+
Philosophy: Pure order and restraint.
|
|
78
|
+
Visual expression: Grid-based precision, bold photography or stark graphics, dramatic negative space. Typography precise but minimal - small essential text, large quiet zones. Swiss formalism meets Brutalist material honesty. Structure communicates, not words. Every alignment the work of countless refinements.
|
|
79
|
+
|
|
80
|
+
*These are condensed examples. The actual design philosophy should be 4-6 substantial paragraphs.*
|
|
81
|
+
|
|
82
|
+
### ESSENTIAL PRINCIPLES
|
|
83
|
+
- **VISUAL PHILOSOPHY**: Create an aesthetic worldview to be expressed through design
|
|
84
|
+
- **MINIMAL TEXT**: Always emphasize that text is sparse, essential-only, integrated as visual element - never lengthy
|
|
85
|
+
- **SPATIAL EXPRESSION**: Ideas communicate through space, form, color, composition - not paragraphs
|
|
86
|
+
- **ARTISTIC FREEDOM**: The agent interprets the philosophy visually - provide creative room
|
|
87
|
+
- **PURE DESIGN**: This is about making ART OBJECTS, not documents with decoration
|
|
88
|
+
- **EXPERT CRAFTSMANSHIP**: Repeatedly emphasize the final work must look meticulously crafted, labored over with care, the product of countless hours by someone at the top of their field
|
|
89
|
+
|
|
90
|
+
**The design philosophy should be 4-6 paragraphs long.** Fill it with poetic design philosophy that brings together the core vision. Avoid repeating the same points. Keep the design philosophy generic without mentioning the intention of the art, as if it can be used wherever. Output the design philosophy as a .md file.
|
|
91
|
+
|
|
92
|
+
---
|
|
93
|
+
|
|
94
|
+
## DEDUCING THE SUBTLE REFERENCE
|
|
95
|
+
|
|
96
|
+
**CRITICAL STEP**: Before creating the canvas, identify the subtle conceptual thread from the original request.
|
|
97
|
+
|
|
98
|
+
**THE ESSENTIAL PRINCIPLE**:
|
|
99
|
+
The topic is a **subtle, niche reference embedded within the art itself** - not always literal, always sophisticated. Someone familiar with the subject should feel it intuitively, while others simply experience a masterful abstract composition. The design philosophy provides the aesthetic language. The deduced topic provides the soul - the quiet conceptual DNA woven invisibly into form, color, and composition.
|
|
100
|
+
|
|
101
|
+
This is **VERY IMPORTANT**: The reference must be refined so it enhances the work's depth without announcing itself. Think like a jazz musician quoting another song - only those who know will catch it, but everyone appreciates the music.
|
|
102
|
+
|
|
103
|
+
---
|
|
104
|
+
|
|
105
|
+
## CANVAS CREATION
|
|
106
|
+
|
|
107
|
+
With both the philosophy and the conceptual framework established, express it on a canvas. Take a moment to gather thoughts and clear the mind. Use the design philosophy created and the instructions below to craft a masterpiece, embodying all aspects of the philosophy with expert craftsmanship.
|
|
108
|
+
|
|
109
|
+
**IMPORTANT**: For any type of content, even if the user requests something for a movie/game/book, the approach should still be sophisticated. Never lose sight of the idea that this should be art, not something that's cartoony or amateur.
|
|
110
|
+
|
|
111
|
+
To create museum or magazine quality work, use the design philosophy as the foundation. Create one single page, highly visual, design-forward PDF or PNG output (unless asked for more pages). Generally use repeating patterns and perfect shapes. Treat the abstract philosophical design as if it were a scientific bible, borrowing the visual language of systematic observation—dense accumulation of marks, repeated elements, or layered patterns that build meaning through patient repetition and reward sustained viewing. Add sparse, clinical typography and systematic reference markers that suggest this could be a diagram from an imaginary discipline, treating the invisible subject with the same reverence typically reserved for documenting observable phenomena. Anchor the piece with simple phrase(s) or details positioned subtly, using a limited color palette that feels intentional and cohesive. Embrace the paradox of using analytical visual language to express ideas about human experience: the result should feel like an artifact that proves something ephemeral can be studied, mapped, and understood through careful attention. This is true art.
|
|
112
|
+
|
|
113
|
+
**Text as a contextual element**: Text is always minimal and visual-first, but let context guide whether that means whisper-quiet labels or bold typographic gestures. A punk venue poster might have larger, more aggressive type than a minimalist ceramics studio identity. Most of the time, font should be thin. All use of fonts must be design-forward and prioritize visual communication. Regardless of text scale, nothing falls off the page and nothing overlaps. Every element must be contained within the canvas boundaries with proper margins. Check carefully that all text, graphics, and visual elements have breathing room and clear separation. This is non-negotiable for professional execution. **IMPORTANT: Use different fonts if writing text. Search the `./canvas-fonts` directory. Regardless of approach, sophistication is non-negotiable.**
|
|
114
|
+
|
|
115
|
+
Download and use whatever fonts are needed to make this a reality. Get creative by making the typography actually part of the art itself -- if the art is abstract, bring the font onto the canvas, not typeset digitally.
|
|
116
|
+
|
|
117
|
+
To push boundaries, follow design instinct/intuition while using the philosophy as a guiding principle. Embrace ultimate design freedom and choice. Push aesthetics and design to the frontier.
|
|
118
|
+
|
|
119
|
+
**CRITICAL**: To achieve human-crafted quality (not AI-generated), create work that looks like it took countless hours. Make it appear as though someone at the absolute top of their field labored over every detail with painstaking care. Ensure the composition, spacing, color choices, typography - everything screams expert-level craftsmanship. Double-check that nothing overlaps, formatting is flawless, every detail perfect. Create something that could be shown to people to prove expertise and rank as undeniably impressive.
|
|
120
|
+
|
|
121
|
+
Output the final result as a single, downloadable .pdf or .png file, alongside the design philosophy used as a .md file.
|
|
122
|
+
|
|
123
|
+
---
|
|
124
|
+
|
|
125
|
+
## FINAL STEP
|
|
126
|
+
|
|
127
|
+
**IMPORTANT**: The user ALREADY said "It isn't perfect enough. It must be pristine, a masterpiece if craftsmanship, as if it were about to be displayed in a museum."
|
|
128
|
+
|
|
129
|
+
**CRITICAL**: To refine the work, avoid adding more graphics; instead refine what has been created and make it extremely crisp, respecting the design philosophy and the principles of minimalism entirely. Rather than adding a fun filter or refactoring a font, consider how to make the existing composition more cohesive with the art. If the instinct is to call a new function or draw a new shape, STOP and instead ask: "How can I make what's already here more of a piece of art?"
|
|
130
|
+
|
|
131
|
+
Take a second pass. Go back to the code and refine/polish further to make this a philosophically designed masterpiece.
|
|
132
|
+
|
|
133
|
+
## MULTI-PAGE OPTION
|
|
134
|
+
|
|
135
|
+
To create additional pages when requested, create more creative pages along the same lines as the design philosophy but distinctly different as well. Bundle those pages in the same .pdf or many .pngs. Treat the first page as just a single page in a whole coffee table book waiting to be filled. Make the next pages unique twists and memories of the original. Have them almost tell a story in a very tasteful way. Exercise full creative freedom.
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
category: Design
|
|
2
|
+
interface:
|
|
3
|
+
display_name: Canvas Design
|
|
4
|
+
short_description: Create posters, art, and visual designs as PNG/PDF
|
|
5
|
+
icon_dark: ./assets/icon-dark.png
|
|
6
|
+
icon_light: ./assets/icon-light.png
|
|
7
|
+
default_prompt: Create a visual design using code-driven canvas rendering.
|
|
8
|
+
label:
|
|
9
|
+
- creative
|
|
10
|
+
- design
|
|
11
|
+
- visual
|
|
Binary file
|
|
Binary file
|