@trieungoctam/vibekit 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +85 -0
- package/agents/debugger.md +158 -0
- package/agents/docs-manager.md +220 -0
- package/agents/planner.md +129 -0
- package/agents/researcher.md +58 -0
- package/agents/reviewer.md +152 -0
- package/agents/tester.md +126 -0
- package/bin/vibekit.js +18 -0
- package/hooks/lib/ck-config-utils.cjs +831 -0
- package/hooks/lib/colors.cjs +95 -0
- package/hooks/lib/config-counter.cjs +103 -0
- package/hooks/lib/context-builder.cjs +616 -0
- package/hooks/lib/git-info-cache.cjs +143 -0
- package/hooks/lib/hook-logger.cjs +92 -0
- package/hooks/lib/privacy-checker.cjs +297 -0
- package/hooks/lib/project-detector.cjs +474 -0
- package/hooks/lib/scout-checker.cjs +263 -0
- package/hooks/lib/transcript-parser.cjs +181 -0
- package/hooks/post-edit-simplify-reminder.cjs +156 -0
- package/hooks/privacy-block.cjs +166 -0
- package/hooks/scout-block.cjs +147 -0
- package/hooks/session-init.cjs +360 -0
- package/package.json +41 -0
- package/rules/development-rules.md +52 -0
- package/rules/documentation-management.md +121 -0
- package/rules/orchestration-protocol.md +43 -0
- package/rules/primary-workflow.md +57 -0
- package/rules/team-coordination-rules.md +90 -0
- package/skills/ai/agent-browser/SKILL.md +294 -0
- package/skills/ai/agent-browser/references/.gitkeep +0 -0
- package/skills/ai/agent-browser/references/agent-browser-vs-chrome-devtools.md +112 -0
- package/skills/ai/agent-browser/references/browserbase-cloud-setup.md +161 -0
- package/skills/ai/ai-artist/SKILL.md +122 -0
- package/skills/ai/ai-artist/data/awesome-prompts.csv +3592 -0
- package/skills/ai/ai-artist/data/lighting.csv +19 -0
- package/skills/ai/ai-artist/data/nano-banana-templates.csv +17 -0
- package/skills/ai/ai-artist/data/platforms.csv +11 -0
- package/skills/ai/ai-artist/data/styles.csv +26 -0
- package/skills/ai/ai-artist/data/techniques.csv +19 -0
- package/skills/ai/ai-artist/data/use-cases.csv +16 -0
- package/skills/ai/ai-artist/references/advanced-techniques.md +184 -0
- package/skills/ai/ai-artist/references/awesome-nano-banana-pro-prompts.md +8575 -0
- package/skills/ai/ai-artist/references/domain-code.md +66 -0
- package/skills/ai/ai-artist/references/domain-data.md +72 -0
- package/skills/ai/ai-artist/references/domain-marketing.md +66 -0
- package/skills/ai/ai-artist/references/domain-patterns.md +33 -0
- package/skills/ai/ai-artist/references/domain-writing.md +68 -0
- package/skills/ai/ai-artist/references/image-prompting.md +141 -0
- package/skills/ai/ai-artist/references/llm-prompting.md +165 -0
- package/skills/ai/ai-artist/references/nano-banana.md +136 -0
- package/skills/ai/ai-artist/references/reasoning-techniques.md +201 -0
- package/skills/ai/ai-artist/references/validation-workflow.md +117 -0
- package/skills/ai/ai-artist/scripts/core.py +197 -0
- package/skills/ai/ai-artist/scripts/extract_prompts.py +102 -0
- package/skills/ai/ai-artist/scripts/generate.py +370 -0
- package/skills/ai/ai-artist/scripts/search.py +147 -0
- package/skills/ai/ai-multimodal/.env.example +204 -0
- package/skills/ai/ai-multimodal/SKILL.md +110 -0
- package/skills/ai/ai-multimodal/references/audio-processing.md +387 -0
- package/skills/ai/ai-multimodal/references/image-generation.md +939 -0
- package/skills/ai/ai-multimodal/references/music-generation.md +311 -0
- package/skills/ai/ai-multimodal/references/video-analysis.md +515 -0
- package/skills/ai/ai-multimodal/references/video-generation.md +457 -0
- package/skills/ai/ai-multimodal/references/vision-understanding.md +492 -0
- package/skills/ai/ai-multimodal/scripts/.coverage +0 -0
- package/skills/ai/ai-multimodal/scripts/check_setup.py +315 -0
- package/skills/ai/ai-multimodal/scripts/document_converter.py +395 -0
- package/skills/ai/ai-multimodal/scripts/gemini_batch_process.py +1185 -0
- package/skills/ai/ai-multimodal/scripts/media_optimizer.py +506 -0
- package/skills/ai/ai-multimodal/scripts/requirements.txt +26 -0
- package/skills/ai/ai-multimodal/scripts/tests/.coverage +0 -0
- package/skills/ai/ai-multimodal/scripts/tests/requirements.txt +20 -0
- package/skills/ai/ai-multimodal/scripts/tests/test_document_converter.py +74 -0
- package/skills/ai/ai-multimodal/scripts/tests/test_gemini_batch_process.py +362 -0
- package/skills/ai/ai-multimodal/scripts/tests/test_media_optimizer.py +373 -0
- package/skills/ai/mcp-management/README.md +219 -0
- package/skills/ai/mcp-management/SKILL.md +210 -0
- package/skills/ai/mcp-management/assets/tools.json +3146 -0
- package/skills/ai/mcp-management/references/configuration.md +114 -0
- package/skills/ai/mcp-management/references/gemini-cli-integration.md +221 -0
- package/skills/ai/mcp-management/references/mcp-protocol.md +116 -0
- package/skills/ai/mcp-management/scripts/.env.example +10 -0
- package/skills/ai/mcp-management/scripts/cli.ts +195 -0
- package/skills/ai/mcp-management/scripts/dist/analyze-tools.js +70 -0
- package/skills/ai/mcp-management/scripts/dist/cli.js +160 -0
- package/skills/ai/mcp-management/scripts/dist/mcp-client.js +183 -0
- package/skills/ai/mcp-management/scripts/mcp-client.ts +230 -0
- package/skills/ai/mcp-management/scripts/package.json +20 -0
- package/skills/ai/mcp-management/scripts/tsconfig.json +15 -0
- package/skills/core/brainstorm/SKILL.md +164 -0
- package/skills/core/brainstorm/scripts/frame-template.html +214 -0
- package/skills/core/brainstorm/scripts/helper.js +88 -0
- package/skills/core/brainstorm/scripts/server.cjs +338 -0
- package/skills/core/brainstorm/scripts/start-server.sh +153 -0
- package/skills/core/brainstorm/scripts/stop-server.sh +55 -0
- package/skills/core/brainstorm/spec-document-reviewer-prompt.md +49 -0
- package/skills/core/brainstorm/visual-companion.md +286 -0
- package/skills/core/code-review/SKILL.md +147 -0
- package/skills/core/code-review/references/code-review-reception.md +113 -0
- package/skills/core/code-review/references/codebase-scan-workflow.md +29 -0
- package/skills/core/code-review/references/edge-case-scouting.md +119 -0
- package/skills/core/code-review/references/parallel-review-workflow.md +69 -0
- package/skills/core/code-review/references/requesting-code-review.md +116 -0
- package/skills/core/code-review/references/task-management-reviews.md +140 -0
- package/skills/core/code-review/references/verification-before-completion.md +139 -0
- package/skills/core/cook/README.md +86 -0
- package/skills/core/cook/SKILL.md +113 -0
- package/skills/core/cook/references/intent-detection.md +101 -0
- package/skills/core/cook/references/review-cycle.md +75 -0
- package/skills/core/cook/references/subagent-patterns.md +75 -0
- package/skills/core/cook/references/workflow-steps.md +172 -0
- package/skills/core/debug/SKILL.md +121 -0
- package/skills/core/debug/references/defense-in-depth.md +124 -0
- package/skills/core/debug/references/frontend-verification.md +103 -0
- package/skills/core/debug/references/investigation-methodology.md +101 -0
- package/skills/core/debug/references/log-and-ci-analysis.md +97 -0
- package/skills/core/debug/references/performance-diagnostics.md +113 -0
- package/skills/core/debug/references/reporting-standards.md +122 -0
- package/skills/core/debug/references/root-cause-tracing.md +122 -0
- package/skills/core/debug/references/systematic-debugging.md +102 -0
- package/skills/core/debug/references/task-management-debugging.md +155 -0
- package/skills/core/debug/references/verification.md +123 -0
- package/skills/core/debug/scripts/find-polluter.sh +63 -0
- package/skills/core/debug/scripts/find-polluter.test.md +102 -0
- package/skills/core/execute/SKILL.md +70 -0
- package/skills/core/fix/SKILL.md +111 -0
- package/skills/core/fix/references/complexity-assessment.md +72 -0
- package/skills/core/fix/references/mode-selection.md +46 -0
- package/skills/core/fix/references/parallel-exploration.md +100 -0
- package/skills/core/fix/references/review-cycle.md +77 -0
- package/skills/core/fix/references/skill-activation-matrix.md +78 -0
- package/skills/core/fix/references/task-orchestration.md +103 -0
- package/skills/core/fix/references/workflow-ci.md +28 -0
- package/skills/core/fix/references/workflow-deep.md +122 -0
- package/skills/core/fix/references/workflow-logs.md +72 -0
- package/skills/core/fix/references/workflow-quick.md +59 -0
- package/skills/core/fix/references/workflow-standard.md +111 -0
- package/skills/core/fix/references/workflow-test.md +75 -0
- package/skills/core/fix/references/workflow-types.md +33 -0
- package/skills/core/fix/references/workflow-ui.md +75 -0
- package/skills/core/plan/SKILL.md +145 -0
- package/skills/core/plan/plan-document-reviewer-prompt.md +49 -0
- package/skills/core/subagent-dev/SKILL.md +277 -0
- package/skills/core/subagent-dev/code-quality-reviewer-prompt.md +26 -0
- package/skills/core/subagent-dev/implementer-prompt.md +113 -0
- package/skills/core/subagent-dev/spec-reviewer-prompt.md +61 -0
- package/skills/core/tdd/SKILL.md +371 -0
- package/skills/core/tdd/testing-anti-patterns.md +299 -0
- package/skills/core/test/SKILL.md +109 -0
- package/skills/core/test/references/report-format.md +58 -0
- package/skills/core/test/references/test-execution-workflow.md +103 -0
- package/skills/core/test/references/ui-testing-workflow.md +65 -0
- package/skills/core/verify/SKILL.md +139 -0
- package/skills/dev/backend-dev/SKILL.md +96 -0
- package/skills/dev/backend-dev/references/backend-api-design.md +495 -0
- package/skills/dev/backend-dev/references/backend-architecture.md +454 -0
- package/skills/dev/backend-dev/references/backend-authentication.md +338 -0
- package/skills/dev/backend-dev/references/backend-code-quality.md +659 -0
- package/skills/dev/backend-dev/references/backend-debugging.md +904 -0
- package/skills/dev/backend-dev/references/backend-devops.md +494 -0
- package/skills/dev/backend-dev/references/backend-mindset.md +387 -0
- package/skills/dev/backend-dev/references/backend-performance.md +397 -0
- package/skills/dev/backend-dev/references/backend-security.md +290 -0
- package/skills/dev/backend-dev/references/backend-technologies.md +256 -0
- package/skills/dev/backend-dev/references/backend-testing.md +429 -0
- package/skills/dev/context-engineering/SKILL.md +108 -0
- package/skills/dev/context-engineering/references/context-compression.md +84 -0
- package/skills/dev/context-engineering/references/context-degradation.md +93 -0
- package/skills/dev/context-engineering/references/context-fundamentals.md +75 -0
- package/skills/dev/context-engineering/references/context-optimization.md +82 -0
- package/skills/dev/context-engineering/references/evaluation.md +89 -0
- package/skills/dev/context-engineering/references/memory-systems.md +88 -0
- package/skills/dev/context-engineering/references/multi-agent-patterns.md +90 -0
- package/skills/dev/context-engineering/references/project-development.md +97 -0
- package/skills/dev/context-engineering/references/runtime-awareness.md +202 -0
- package/skills/dev/context-engineering/references/tool-design.md +86 -0
- package/skills/dev/context-engineering/scripts/compression_evaluator.py +349 -0
- package/skills/dev/context-engineering/scripts/context_analyzer.py +317 -0
- package/skills/dev/context-engineering/scripts/tests/test_edge_cases.py +246 -0
- package/skills/dev/databases/SKILL.md +84 -0
- package/skills/dev/databases/analytics.md +198 -0
- package/skills/dev/databases/db-design.md +188 -0
- package/skills/dev/databases/incremental-etl.md +213 -0
- package/skills/dev/databases/references/mongodb-aggregation.md +447 -0
- package/skills/dev/databases/references/mongodb-atlas.md +465 -0
- package/skills/dev/databases/references/mongodb-crud.md +408 -0
- package/skills/dev/databases/references/mongodb-indexing.md +442 -0
- package/skills/dev/databases/references/postgresql-administration.md +594 -0
- package/skills/dev/databases/references/postgresql-performance.md +527 -0
- package/skills/dev/databases/references/postgresql-psql-cli.md +467 -0
- package/skills/dev/databases/references/postgresql-queries.md +475 -0
- package/skills/dev/databases/scripts/.coverage +0 -0
- package/skills/dev/databases/scripts/db_backup.py +502 -0
- package/skills/dev/databases/scripts/db_migrate.py +426 -0
- package/skills/dev/databases/scripts/db_performance_check.py +457 -0
- package/skills/dev/databases/scripts/requirements.txt +20 -0
- package/skills/dev/databases/scripts/tests/coverage-db.json +1 -0
- package/skills/dev/databases/scripts/tests/requirements.txt +4 -0
- package/skills/dev/databases/scripts/tests/test_db_backup.py +340 -0
- package/skills/dev/databases/scripts/tests/test_db_migrate.py +277 -0
- package/skills/dev/databases/scripts/tests/test_db_performance_check.py +370 -0
- package/skills/dev/databases/stacks/bigquery.md +231 -0
- package/skills/dev/databases/stacks/d1_cloudflare.md +137 -0
- package/skills/dev/databases/stacks/mysql.md +216 -0
- package/skills/dev/databases/stacks/postgres.md +235 -0
- package/skills/dev/databases/stacks/sqlite.md +244 -0
- package/skills/dev/databases/transactional.md +176 -0
- package/skills/dev/devops/.env.example +76 -0
- package/skills/dev/devops/SKILL.md +97 -0
- package/skills/dev/devops/references/browser-rendering.md +305 -0
- package/skills/dev/devops/references/cloudflare-d1-kv.md +123 -0
- package/skills/dev/devops/references/cloudflare-platform.md +271 -0
- package/skills/dev/devops/references/cloudflare-r2-storage.md +280 -0
- package/skills/dev/devops/references/cloudflare-workers-advanced.md +312 -0
- package/skills/dev/devops/references/cloudflare-workers-apis.md +309 -0
- package/skills/dev/devops/references/cloudflare-workers-basics.md +418 -0
- package/skills/dev/devops/references/docker-basics.md +297 -0
- package/skills/dev/devops/references/docker-compose.md +292 -0
- package/skills/dev/devops/references/gcloud-platform.md +297 -0
- package/skills/dev/devops/references/gcloud-services.md +304 -0
- package/skills/dev/devops/references/kubernetes-basics.md +99 -0
- package/skills/dev/devops/references/kubernetes-helm-advanced.md +75 -0
- package/skills/dev/devops/references/kubernetes-helm.md +81 -0
- package/skills/dev/devops/references/kubernetes-kubectl.md +74 -0
- package/skills/dev/devops/references/kubernetes-security-advanced.md +98 -0
- package/skills/dev/devops/references/kubernetes-security.md +95 -0
- package/skills/dev/devops/references/kubernetes-troubleshooting-advanced.md +74 -0
- package/skills/dev/devops/references/kubernetes-troubleshooting.md +49 -0
- package/skills/dev/devops/references/kubernetes-workflows-advanced.md +75 -0
- package/skills/dev/devops/references/kubernetes-workflows.md +78 -0
- package/skills/dev/devops/scripts/cloudflare_deploy.py +269 -0
- package/skills/dev/devops/scripts/docker_optimize.py +332 -0
- package/skills/dev/devops/scripts/requirements.txt +20 -0
- package/skills/dev/devops/scripts/tests/requirements.txt +3 -0
- package/skills/dev/devops/scripts/tests/test_cloudflare_deploy.py +285 -0
- package/skills/dev/devops/scripts/tests/test_docker_optimize.py +436 -0
- package/skills/dev/frontend-design/SKILL.md +78 -0
- package/skills/dev/frontend-design/references/ai-multimodal-overview.md +165 -0
- package/skills/dev/frontend-design/references/analysis-best-practices.md +80 -0
- package/skills/dev/frontend-design/references/analysis-prompts.md +141 -0
- package/skills/dev/frontend-design/references/analysis-techniques.md +118 -0
- package/skills/dev/frontend-design/references/animejs.md +396 -0
- package/skills/dev/frontend-design/references/asset-generation.md +337 -0
- package/skills/dev/frontend-design/references/design-extraction-overview.md +71 -0
- package/skills/dev/frontend-design/references/extraction-best-practices.md +141 -0
- package/skills/dev/frontend-design/references/extraction-output-templates.md +162 -0
- package/skills/dev/frontend-design/references/extraction-prompts.md +127 -0
- package/skills/dev/frontend-design/references/technical-accessibility.md +119 -0
- package/skills/dev/frontend-design/references/technical-best-practices.md +97 -0
- package/skills/dev/frontend-design/references/technical-optimization.md +44 -0
- package/skills/dev/frontend-design/references/technical-overview.md +90 -0
- package/skills/dev/frontend-design/references/technical-workflows.md +150 -0
- package/skills/dev/frontend-design/references/visual-analysis-overview.md +95 -0
- package/skills/dev/frontend-design/references/workflow-3d.md +102 -0
- package/skills/dev/frontend-design/references/workflow-describe.md +87 -0
- package/skills/dev/frontend-design/references/workflow-immersive.md +87 -0
- package/skills/dev/frontend-design/references/workflow-quick.md +57 -0
- package/skills/dev/frontend-design/references/workflow-screenshot.md +63 -0
- package/skills/dev/frontend-design/references/workflow-video.md +74 -0
- package/skills/dev/frontend-dev/SKILL.md +400 -0
- package/skills/dev/frontend-dev/resources/common-patterns.md +331 -0
- package/skills/dev/frontend-dev/resources/complete-examples.md +872 -0
- package/skills/dev/frontend-dev/resources/component-patterns.md +502 -0
- package/skills/dev/frontend-dev/resources/data-fetching.md +767 -0
- package/skills/dev/frontend-dev/resources/file-organization.md +502 -0
- package/skills/dev/frontend-dev/resources/loading-and-error-states.md +501 -0
- package/skills/dev/frontend-dev/resources/performance.md +406 -0
- package/skills/dev/frontend-dev/resources/routing-guide.md +364 -0
- package/skills/dev/frontend-dev/resources/styling-guide.md +428 -0
- package/skills/dev/frontend-dev/resources/typescript-standards.md +418 -0
- package/skills/dev/git/SKILL.md +114 -0
- package/skills/dev/git/references/branch-management.md +88 -0
- package/skills/dev/git/references/commit-standards.md +46 -0
- package/skills/dev/git/references/gh-cli-guide.md +109 -0
- package/skills/dev/git/references/safety-protocols.md +69 -0
- package/skills/dev/git/references/workflow-commit.md +58 -0
- package/skills/dev/git/references/workflow-merge.md +48 -0
- package/skills/dev/git/references/workflow-pr.md +58 -0
- package/skills/dev/git/references/workflow-push.md +52 -0
- package/skills/dev/git-worktree/SKILL.md +218 -0
- package/skills/utils/ask/SKILL.md +58 -0
- package/skills/utils/bootstrap/SKILL.md +101 -0
- package/skills/utils/bootstrap/references/shared-phases.md +59 -0
- package/skills/utils/bootstrap/references/workflow-auto.md +52 -0
- package/skills/utils/bootstrap/references/workflow-fast.md +50 -0
- package/skills/utils/bootstrap/references/workflow-full.md +60 -0
- package/skills/utils/bootstrap/references/workflow-parallel.md +59 -0
- package/skills/utils/ck-help/SKILL.md +102 -0
- package/skills/utils/ck-help/scripts/ck-help.py +1321 -0
- package/skills/utils/ck-help/scripts/commands_data.yaml +3 -0
- package/skills/utils/ck-help/scripts/skills_data.yaml +593 -0
- package/skills/utils/copywriting/SKILL.md +94 -0
- package/skills/utils/copywriting/references/copy-formulas.md +150 -0
- package/skills/utils/copywriting/references/cta-patterns.md +168 -0
- package/skills/utils/copywriting/references/email-copy.md +193 -0
- package/skills/utils/copywriting/references/headline-templates.md +140 -0
- package/skills/utils/copywriting/references/landing-page-copy.md +175 -0
- package/skills/utils/copywriting/references/power-words.md +189 -0
- package/skills/utils/copywriting/references/social-media-copy.md +222 -0
- package/skills/utils/copywriting/references/workflow-cro.md +83 -0
- package/skills/utils/copywriting/references/workflow-enhance.md +32 -0
- package/skills/utils/copywriting/references/workflow-fast.md +29 -0
- package/skills/utils/copywriting/references/workflow-good.md +39 -0
- package/skills/utils/copywriting/references/writing-styles.md +247 -0
- package/skills/utils/copywriting/scripts/extract-writing-styles.py +308 -0
- package/skills/utils/copywriting/templates/copy-brief.md +49 -0
- package/skills/utils/docs/SKILL.md +55 -0
- package/skills/utils/docs/references/init-workflow.md +32 -0
- package/skills/utils/docs/references/summarize-workflow.md +18 -0
- package/skills/utils/docs/references/update-workflow.md +59 -0
- package/skills/utils/journal/SKILL.md +11 -0
- package/skills/utils/kanban/SKILL.md +99 -0
- package/skills/utils/preview/SKILL.md +75 -0
- package/skills/utils/preview/references/generation-modes.md +95 -0
- package/skills/utils/preview/references/view-mode.md +42 -0
- package/skills/utils/repomix/SKILL.md +248 -0
- package/skills/utils/repomix/references/configuration.md +211 -0
- package/skills/utils/repomix/references/usage-patterns.md +232 -0
- package/skills/utils/repomix/scripts/.coverage +0 -0
- package/skills/utils/repomix/scripts/README.md +179 -0
- package/skills/utils/repomix/scripts/repomix_batch.py +455 -0
- package/skills/utils/repomix/scripts/repos.example.json +15 -0
- package/skills/utils/repomix/scripts/requirements.txt +15 -0
- package/skills/utils/repomix/scripts/tests/test_repomix_batch.py +531 -0
- package/skills/utils/research/SKILL.md +171 -0
- package/skills/utils/scout/SKILL.md +89 -0
- package/skills/utils/scout/references/external-scouting.md +140 -0
- package/skills/utils/scout/references/internal-scouting.md +119 -0
- package/skills/utils/scout/references/task-management-scouting.md +125 -0
- package/skills/utils/sequential-thinking/.env.example +8 -0
- package/skills/utils/sequential-thinking/README.md +183 -0
- package/skills/utils/sequential-thinking/SKILL.md +95 -0
- package/skills/utils/sequential-thinking/package.json +31 -0
- package/skills/utils/sequential-thinking/references/advanced-strategies.md +79 -0
- package/skills/utils/sequential-thinking/references/advanced-techniques.md +76 -0
- package/skills/utils/sequential-thinking/references/core-patterns.md +95 -0
- package/skills/utils/sequential-thinking/references/examples-api.md +88 -0
- package/skills/utils/sequential-thinking/references/examples-architecture.md +94 -0
- package/skills/utils/sequential-thinking/references/examples-debug.md +90 -0
- package/skills/utils/sequential-thinking/scripts/format-thought.js +159 -0
- package/skills/utils/sequential-thinking/scripts/process-thought.js +236 -0
- package/skills/utils/sequential-thinking/tests/format-thought.test.js +133 -0
- package/skills/utils/sequential-thinking/tests/process-thought.test.js +215 -0
- package/skills/utils/write-skill/SKILL.md +655 -0
- package/skills/utils/write-skill/anthropic-best-practices.md +1150 -0
- package/skills/utils/write-skill/examples/CLAUDE_MD_TESTING.md +189 -0
- package/skills/utils/write-skill/graphviz-conventions.dot +172 -0
- package/skills/utils/write-skill/persuasion-principles.md +187 -0
- package/skills/utils/write-skill/render-graphs.js +168 -0
- package/skills/utils/write-skill/testing-skills-with-subagents.md +384 -0
- package/src/commands/init.js +238 -0
|
@@ -0,0 +1,593 @@
|
|
|
1
|
+
- argument_hint: '[url or task]'
|
|
2
|
+
category: other
|
|
3
|
+
description: AI-optimized browser automation CLI with context-efficient snapshots.
|
|
4
|
+
Use for long autonomous sessions, self-verifying workflows, video recording, and
|
|
5
|
+
cloud browser testing (Browserbase).
|
|
6
|
+
has_references: true
|
|
7
|
+
has_scripts: false
|
|
8
|
+
name: agent-browser
|
|
9
|
+
path: agent-browser/SKILL.md
|
|
10
|
+
- argument_hint: '[concept] [--mode search|creative|wild|all] [--skip]'
|
|
11
|
+
category: ai-ml
|
|
12
|
+
description: 'Generate images via Nano Banana with 129 curated prompts. Mandatory
|
|
13
|
+
validation interview refines style/mood/colors (use --skip to bypass). 3 modes:
|
|
14
|
+
search, creative, wild. Styles: Ukiyo-e, Bento grid, cyberpunk, cinematic, vintage
|
|
15
|
+
patent.'
|
|
16
|
+
has_references: true
|
|
17
|
+
has_scripts: true
|
|
18
|
+
name: ai-artist
|
|
19
|
+
path: ai-artist/SKILL.md
|
|
20
|
+
- argument_hint: '[file-path] [prompt]'
|
|
21
|
+
category: ai-ml
|
|
22
|
+
description: Analyze images/audio/video with Gemini API (better vision than Claude).
|
|
23
|
+
Generate images (Imagen 4), videos (Veo 3). Use for vision analysis, transcription,
|
|
24
|
+
OCR, design extraction, multimodal AI.
|
|
25
|
+
has_references: true
|
|
26
|
+
has_scripts: true
|
|
27
|
+
name: ai-multimodal
|
|
28
|
+
path: ai-multimodal/SKILL.md
|
|
29
|
+
- argument_hint: '[technical-question]'
|
|
30
|
+
category: utilities
|
|
31
|
+
description: Answer technical and architectural questions with expert consultation.
|
|
32
|
+
has_references: false
|
|
33
|
+
has_scripts: false
|
|
34
|
+
name: ask
|
|
35
|
+
path: ask/SKILL.md
|
|
36
|
+
- argument_hint: '[framework] [task]'
|
|
37
|
+
category: backend
|
|
38
|
+
description: Build backends with Node.js, Python, Go (NestJS, FastAPI, Django).
|
|
39
|
+
Use for REST/GraphQL/gRPC APIs, auth (OAuth, JWT), databases, microservices, security
|
|
40
|
+
(OWASP), Docker/K8s.
|
|
41
|
+
has_references: true
|
|
42
|
+
has_scripts: false
|
|
43
|
+
name: backend-development
|
|
44
|
+
path: backend-development/SKILL.md
|
|
45
|
+
- argument_hint: '[auth-method or feature]'
|
|
46
|
+
category: backend
|
|
47
|
+
description: Add authentication with Better Auth (TypeScript). Use for email/password,
|
|
48
|
+
OAuth providers (Google, GitHub), 2FA/MFA, passkeys/WebAuthn, sessions, RBAC,
|
|
49
|
+
rate limiting.
|
|
50
|
+
has_references: true
|
|
51
|
+
has_scripts: true
|
|
52
|
+
name: better-auth
|
|
53
|
+
path: better-auth/SKILL.md
|
|
54
|
+
- argument_hint: '[requirements] [--full|--auto|--fast|--parallel]'
|
|
55
|
+
category: utilities
|
|
56
|
+
description: 'Bootstrap new projects with research, tech stack, design, planning,
|
|
57
|
+
and implementation. Modes: full (interactive), auto (default), fast (skip research),
|
|
58
|
+
parallel (multi-agent).'
|
|
59
|
+
has_references: true
|
|
60
|
+
has_scripts: false
|
|
61
|
+
name: bootstrap
|
|
62
|
+
path: bootstrap/SKILL.md
|
|
63
|
+
- argument_hint: '[topic or problem]'
|
|
64
|
+
category: utilities
|
|
65
|
+
description: Brainstorm solutions with trade-off analysis and brutal honesty. Use
|
|
66
|
+
for ideation, architecture decisions, technical debates, feature exploration,
|
|
67
|
+
feasibility assessment, design discussions.
|
|
68
|
+
has_references: false
|
|
69
|
+
has_scripts: false
|
|
70
|
+
name: brainstorm
|
|
71
|
+
path: brainstorm/SKILL.md
|
|
72
|
+
- argument_hint: '[url or task]'
|
|
73
|
+
category: multimedia
|
|
74
|
+
description: Automate browsers with Puppeteer CLI scripts and persistent sessions.
|
|
75
|
+
Use for screenshots, performance analysis, network monitoring, web scraping, form
|
|
76
|
+
automation, JavaScript debugging.
|
|
77
|
+
has_references: true
|
|
78
|
+
has_scripts: true
|
|
79
|
+
name: chrome-devtools
|
|
80
|
+
path: chrome-devtools/SKILL.md
|
|
81
|
+
- argument_hint: '[category|command|task description]'
|
|
82
|
+
category: dev-tools
|
|
83
|
+
description: ClaudeKit usage guide — discover commands, skills, workflows naturally.
|
|
84
|
+
has_references: false
|
|
85
|
+
has_scripts: true
|
|
86
|
+
name: ck-help
|
|
87
|
+
path: ck-help/SKILL.md
|
|
88
|
+
- argument_hint: '[context] OR codebase [parallel]'
|
|
89
|
+
category: utilities
|
|
90
|
+
description: Review code quality, receive feedback with technical rigor, verify
|
|
91
|
+
completion claims. Use before PRs, after implementing features, when claiming
|
|
92
|
+
task completion. Includes scout-based edge case detection and native Task pipeline
|
|
93
|
+
orchestration.
|
|
94
|
+
has_references: true
|
|
95
|
+
has_scripts: false
|
|
96
|
+
name: code-review
|
|
97
|
+
path: code-review/SKILL.md
|
|
98
|
+
- argument_hint: '[0-5]'
|
|
99
|
+
category: utilities
|
|
100
|
+
description: Set coding experience level for tailored explanations and output format.
|
|
101
|
+
has_references: false
|
|
102
|
+
has_scripts: false
|
|
103
|
+
name: coding-level
|
|
104
|
+
path: coding-level/SKILL.md
|
|
105
|
+
- argument_hint: '[topic or question]'
|
|
106
|
+
category: other
|
|
107
|
+
description: Check context usage limits, monitor time remaining, optimize token
|
|
108
|
+
consumption, debug context failures. Use when asking about context percentage,
|
|
109
|
+
rate limits, usage warnings, context optimization, agent architectures, memory
|
|
110
|
+
systems.
|
|
111
|
+
has_references: true
|
|
112
|
+
has_scripts: true
|
|
113
|
+
name: context-engineering
|
|
114
|
+
path: context-engineering/SKILL.md
|
|
115
|
+
- argument_hint: '[task|plan-path] [--interactive|--fast|--parallel|--auto|--no-test]'
|
|
116
|
+
category: utilities
|
|
117
|
+
description: ALWAYS activate this skill before implementing EVERY feature, plan,
|
|
118
|
+
or fix.
|
|
119
|
+
has_references: true
|
|
120
|
+
has_scripts: false
|
|
121
|
+
name: cook
|
|
122
|
+
path: cook/SKILL.md
|
|
123
|
+
- argument_hint: '[copy-type] [context]'
|
|
124
|
+
category: other
|
|
125
|
+
description: Conversion copywriting formulas, headline templates, email copy patterns,
|
|
126
|
+
landing page structures, CTA optimization, and writing style extraction. Activate
|
|
127
|
+
for writing high-converting copy, crafting headlines, email campaigns, landing
|
|
128
|
+
pages, or applying custom writing styles from assets/writing-styles/ directory.
|
|
129
|
+
has_references: true
|
|
130
|
+
has_scripts: true
|
|
131
|
+
name: copywriting
|
|
132
|
+
path: copywriting/SKILL.md
|
|
133
|
+
- argument_hint: '[query or schema task]'
|
|
134
|
+
category: database
|
|
135
|
+
description: Design schemas, write queries for MongoDB and PostgreSQL. Use for database
|
|
136
|
+
design, SQL/NoSQL queries, aggregation pipelines, indexes, migrations, replication,
|
|
137
|
+
performance optimization, psql CLI.
|
|
138
|
+
has_references: true
|
|
139
|
+
has_scripts: true
|
|
140
|
+
name: databases
|
|
141
|
+
path: databases/SKILL.md
|
|
142
|
+
- argument_hint: '[error or issue description]'
|
|
143
|
+
category: utilities
|
|
144
|
+
description: Debug systematically with root cause analysis before fixes. Use for
|
|
145
|
+
bugs, test failures, unexpected behavior, performance issues, call stack tracing,
|
|
146
|
+
multi-layer validation, log analysis, CI/CD failures, database diagnostics, system
|
|
147
|
+
investigation.
|
|
148
|
+
has_references: true
|
|
149
|
+
has_scripts: true
|
|
150
|
+
name: debug
|
|
151
|
+
path: debug/SKILL.md
|
|
152
|
+
- argument_hint: '[platform] [task]'
|
|
153
|
+
category: infrastructure
|
|
154
|
+
description: Deploy to Cloudflare (Workers, R2, D1), Docker, GCP (Cloud Run, GKE),
|
|
155
|
+
Kubernetes (kubectl, Helm). Use for serverless, containers, CI/CD, GitOps, security
|
|
156
|
+
audit.
|
|
157
|
+
has_references: true
|
|
158
|
+
has_scripts: true
|
|
159
|
+
name: devops
|
|
160
|
+
path: devops/SKILL.md
|
|
161
|
+
- argument_hint: init|update|summarize
|
|
162
|
+
category: utilities
|
|
163
|
+
description: Analyze codebase and manage project documentation — init, update, summarize.
|
|
164
|
+
has_references: true
|
|
165
|
+
has_scripts: false
|
|
166
|
+
name: docs
|
|
167
|
+
path: docs/SKILL.md
|
|
168
|
+
- argument_hint: '[library-name] [topic]'
|
|
169
|
+
category: dev-tools
|
|
170
|
+
description: Search library/framework documentation via llms.txt (context7.com).
|
|
171
|
+
Use for API docs, GitHub repository analysis, technical documentation lookup,
|
|
172
|
+
latest library features.
|
|
173
|
+
has_references: true
|
|
174
|
+
has_scripts: true
|
|
175
|
+
name: docs-seeker
|
|
176
|
+
path: docs-seeker/SKILL.md
|
|
177
|
+
- category: multimedia
|
|
178
|
+
description: Create, edit, analyze .docx Word documents. Use for document creation,
|
|
179
|
+
tracked changes, comments, formatting preservation, text extraction, template
|
|
180
|
+
modification.
|
|
181
|
+
has_references: false
|
|
182
|
+
has_scripts: true
|
|
183
|
+
name: document-skills/docx
|
|
184
|
+
path: document-skills/docx/SKILL.md
|
|
185
|
+
- category: multimedia
|
|
186
|
+
description: Extract text/tables, create, merge, split PDFs. Fill PDF forms programmatically.
|
|
187
|
+
Use for PDF processing, generation, form filling, document analysis, batch operations.
|
|
188
|
+
has_references: false
|
|
189
|
+
has_scripts: true
|
|
190
|
+
name: document-skills/pdf
|
|
191
|
+
path: document-skills/pdf/SKILL.md
|
|
192
|
+
- category: multimedia
|
|
193
|
+
description: Create, edit, analyze .pptx PowerPoint files. Use for presentations,
|
|
194
|
+
slides, layouts, speaker notes, template modification, content extraction, slide
|
|
195
|
+
generation.
|
|
196
|
+
has_references: false
|
|
197
|
+
has_scripts: true
|
|
198
|
+
name: document-skills/pptx
|
|
199
|
+
path: document-skills/pptx/SKILL.md
|
|
200
|
+
- category: multimedia
|
|
201
|
+
description: Create, edit, analyze spreadsheets (.xlsx, .csv, .tsv). Use for Excel
|
|
202
|
+
formulas, data analysis, visualization, formatting, pivot tables, charts, formula
|
|
203
|
+
recalculation.
|
|
204
|
+
has_references: false
|
|
205
|
+
has_scripts: false
|
|
206
|
+
name: document-skills/xlsx
|
|
207
|
+
path: document-skills/xlsx/SKILL.md
|
|
208
|
+
- argument_hint: '[capability or task description]'
|
|
209
|
+
category: dev-tools
|
|
210
|
+
description: Helps users discover and install agent skills when they ask questions
|
|
211
|
+
like "how do I do X", "find a skill for X", "is there a skill that can...", or
|
|
212
|
+
express interest in extending capabilities. This skill should be used when the
|
|
213
|
+
user is looking for functionality that might exist as an installable skill.
|
|
214
|
+
has_references: false
|
|
215
|
+
has_scripts: false
|
|
216
|
+
name: find-skills
|
|
217
|
+
path: find-skills/SKILL.md
|
|
218
|
+
- argument_hint: '[issue] --auto|--review|--quick|--parallel'
|
|
219
|
+
category: utilities
|
|
220
|
+
description: ALWAYS activate this skill before fixing ANY bug, error, test failure,
|
|
221
|
+
CI/CD issue, type error, lint, log error, UI issue, code problem.
|
|
222
|
+
has_references: true
|
|
223
|
+
has_scripts: false
|
|
224
|
+
name: fix
|
|
225
|
+
path: fix/SKILL.md
|
|
226
|
+
- category: frontend
|
|
227
|
+
description: Create polished frontend interfaces from designs/screenshots/videos.
|
|
228
|
+
Use for web components, 3D experiences, replicating UI designs, quick prototypes,
|
|
229
|
+
immersive interfaces, avoiding AI slop.
|
|
230
|
+
has_references: true
|
|
231
|
+
has_scripts: false
|
|
232
|
+
name: frontend-design
|
|
233
|
+
path: frontend-design/SKILL.md
|
|
234
|
+
- argument_hint: '[component or feature]'
|
|
235
|
+
category: frontend
|
|
236
|
+
description: Build React/TypeScript frontends with modern patterns. Use for components,
|
|
237
|
+
Suspense, lazy loading, useSuspenseQuery, MUI v7 styling, TanStack Router, performance
|
|
238
|
+
optimization.
|
|
239
|
+
has_references: false
|
|
240
|
+
has_scripts: false
|
|
241
|
+
name: frontend-development
|
|
242
|
+
path: frontend-development/SKILL.md
|
|
243
|
+
- argument_hint: cm|cp|pr|merge [args]
|
|
244
|
+
category: dev-tools
|
|
245
|
+
description: Git operations with conventional commits. Use for staging, committing,
|
|
246
|
+
pushing, PRs, merges. Auto-splits commits by type/scope. Security scans for secrets.
|
|
247
|
+
has_references: true
|
|
248
|
+
has_scripts: false
|
|
249
|
+
name: git
|
|
250
|
+
path: git/SKILL.md
|
|
251
|
+
- argument_hint: '[symbol or query]'
|
|
252
|
+
category: other
|
|
253
|
+
description: Semantic code analysis with GitLab Knowledge Graph. Use for go-to-definition,
|
|
254
|
+
find-usages, impact analysis, architecture visualization. Supports Ruby, Java,
|
|
255
|
+
Kotlin, Python, TypeScript/JavaScript.
|
|
256
|
+
has_references: true
|
|
257
|
+
has_scripts: false
|
|
258
|
+
name: gkg
|
|
259
|
+
path: gkg/SKILL.md
|
|
260
|
+
- argument_hint: '[agent or feature]'
|
|
261
|
+
category: ai-ml
|
|
262
|
+
description: Build AI agents with Google ADK Python. Multi-agent systems, A2A protocol,
|
|
263
|
+
MCP tools, workflow agents, state/memory, callbacks/plugins, Vertex AI deployment,
|
|
264
|
+
evaluation.
|
|
265
|
+
has_references: true
|
|
266
|
+
has_scripts: false
|
|
267
|
+
name: google-adk-python
|
|
268
|
+
path: google-adk-python/SKILL.md
|
|
269
|
+
- argument_hint: '[topic or reflection]'
|
|
270
|
+
category: utilities
|
|
271
|
+
description: Write journal entries analyzing recent changes and session reflections.
|
|
272
|
+
has_references: false
|
|
273
|
+
has_scripts: false
|
|
274
|
+
name: journal
|
|
275
|
+
path: journal/SKILL.md
|
|
276
|
+
- argument_hint: '[dir]'
|
|
277
|
+
category: dev-tools
|
|
278
|
+
description: AI agent orchestration board for task visualization and team coordination.
|
|
279
|
+
has_references: false
|
|
280
|
+
has_scripts: false
|
|
281
|
+
name: kanban
|
|
282
|
+
path: kanban/SKILL.md
|
|
283
|
+
- argument_hint: '[file-or-directory]'
|
|
284
|
+
category: other
|
|
285
|
+
description: View markdown files with calm, book-like reading experience via HTTP
|
|
286
|
+
server. Use for long-form content, documentation preview, novel reading, report
|
|
287
|
+
viewing, distraction-free reading.
|
|
288
|
+
has_references: false
|
|
289
|
+
has_scripts: true
|
|
290
|
+
name: markdown-novel-viewer
|
|
291
|
+
path: markdown-novel-viewer/SKILL.md
|
|
292
|
+
- argument_hint: '[service or API to integrate]'
|
|
293
|
+
category: frontend
|
|
294
|
+
description: Build MCP servers for LLM-external service integration. Use for FastMCP
|
|
295
|
+
(Python), MCP SDK (Node/TypeScript), tool design, API integration, resource providers.
|
|
296
|
+
has_references: false
|
|
297
|
+
has_scripts: true
|
|
298
|
+
name: mcp-builder
|
|
299
|
+
path: mcp-builder/SKILL.md
|
|
300
|
+
- argument_hint: '[task or server-name]'
|
|
301
|
+
category: dev-tools
|
|
302
|
+
description: Manage MCP servers - discover, analyze, execute tools/prompts/resources.
|
|
303
|
+
Use for MCP integrations, intelligent tool selection, multi-server management,
|
|
304
|
+
context-efficient capability discovery.
|
|
305
|
+
has_references: true
|
|
306
|
+
has_scripts: true
|
|
307
|
+
name: mcp-management
|
|
308
|
+
path: mcp-management/SKILL.md
|
|
309
|
+
- argument_hint: '[input-file] [operation]'
|
|
310
|
+
category: multimedia
|
|
311
|
+
description: Process media with FFmpeg (video/audio), ImageMagick (images), RMBG
|
|
312
|
+
(AI background removal). Use for encoding, format conversion, filters, thumbnails,
|
|
313
|
+
batch processing, HLS/DASH streaming.
|
|
314
|
+
has_references: true
|
|
315
|
+
has_scripts: true
|
|
316
|
+
name: media-processing
|
|
317
|
+
path: media-processing/SKILL.md
|
|
318
|
+
- argument_hint: '[diagram-type or description]'
|
|
319
|
+
category: other
|
|
320
|
+
description: Create diagrams with Mermaid.js v11 syntax. Use for flowcharts, sequence
|
|
321
|
+
diagrams, class diagrams, ER diagrams, Gantt charts, state diagrams, architecture
|
|
322
|
+
diagrams, timelines, user journeys.
|
|
323
|
+
has_references: true
|
|
324
|
+
has_scripts: false
|
|
325
|
+
name: mermaidjs-v11
|
|
326
|
+
path: mermaidjs-v11/SKILL.md
|
|
327
|
+
- argument_hint: '[task] [path]'
|
|
328
|
+
category: other
|
|
329
|
+
description: Build and deploy documentation sites with Mintlify. Use when creating
|
|
330
|
+
API docs, developer portals, or knowledge bases. Covers docs.json configuration,
|
|
331
|
+
MDX components (Cards, Steps, Tabs, Accordions, CodeGroup, Callouts, Mermaid,
|
|
332
|
+
View, Tiles, Tree, Badge, Banner, Color, Tooltips, Panel), page frontmatter, navigation
|
|
333
|
+
structure (tabs, anchors, dropdowns, products, versions, languages), theming (7
|
|
334
|
+
themes), OpenAPI/AsyncAPI integration, AI features (llms.txt, MCP, skill.md),
|
|
335
|
+
deployment (GitHub, GitLab, Vercel, Cloudflare, AWS), and CLI commands for local
|
|
336
|
+
development and validation.
|
|
337
|
+
has_references: true
|
|
338
|
+
has_scripts: false
|
|
339
|
+
name: mintlify
|
|
340
|
+
path: mintlify/SKILL.md
|
|
341
|
+
- argument_hint: '[platform] [feature]'
|
|
342
|
+
category: frameworks
|
|
343
|
+
description: Build mobile apps with React Native, Flutter, Swift/SwiftUI, Kotlin/Jetpack
|
|
344
|
+
Compose. Use for iOS/Android, mobile UX, performance optimization, offline-first,
|
|
345
|
+
app store deployment.
|
|
346
|
+
has_references: true
|
|
347
|
+
has_scripts: false
|
|
348
|
+
name: mobile-development
|
|
349
|
+
path: mobile-development/SKILL.md
|
|
350
|
+
- argument_hint: '[provider] [task]'
|
|
351
|
+
category: backend
|
|
352
|
+
description: Integrate payments with SePay (VietQR), Polar, Stripe, Paddle (MoR
|
|
353
|
+
subscriptions), Creem.io (licensing). Checkout, webhooks, subscriptions, QR codes,
|
|
354
|
+
multi-provider orders.
|
|
355
|
+
has_references: true
|
|
356
|
+
has_scripts: true
|
|
357
|
+
name: payment-integration
|
|
358
|
+
path: payment-integration/SKILL.md
|
|
359
|
+
- argument_hint: '[task] OR archive|red-team|validate'
|
|
360
|
+
category: utilities
|
|
361
|
+
description: Plan implementations, design architectures, create technical roadmaps
|
|
362
|
+
with detailed phases. Use for feature planning, system design, solution architecture,
|
|
363
|
+
implementation strategy, phase documentation.
|
|
364
|
+
has_references: true
|
|
365
|
+
has_scripts: false
|
|
366
|
+
name: plan
|
|
367
|
+
path: plan/SKILL.md
|
|
368
|
+
- argument_hint: '[plans-dir]'
|
|
369
|
+
category: dev-tools
|
|
370
|
+
description: View plans dashboard with progress tracking and timeline visualization.
|
|
371
|
+
Use for kanban boards, plan status overview, phase progress, milestone tracking,
|
|
372
|
+
project visibility.
|
|
373
|
+
has_references: false
|
|
374
|
+
has_scripts: true
|
|
375
|
+
name: plans-kanban
|
|
376
|
+
path: plans-kanban/SKILL.md
|
|
377
|
+
- argument_hint: '[path] OR --explain|--slides|--diagram|--ascii [topic]'
|
|
378
|
+
category: utilities
|
|
379
|
+
description: View files/directories OR generate visual explanations, slides, diagrams.
|
|
380
|
+
has_references: true
|
|
381
|
+
has_scripts: false
|
|
382
|
+
name: preview
|
|
383
|
+
path: preview/SKILL.md
|
|
384
|
+
- argument_hint: '[problem description]'
|
|
385
|
+
category: utilities
|
|
386
|
+
description: Apply systematic problem-solving techniques when stuck. Use for complexity
|
|
387
|
+
spirals, innovation blocks, recurring patterns, assumption constraints, simplification
|
|
388
|
+
cascades, scale uncertainty.
|
|
389
|
+
has_references: true
|
|
390
|
+
has_scripts: false
|
|
391
|
+
name: problem-solving
|
|
392
|
+
path: problem-solving/SKILL.md
|
|
393
|
+
- argument_hint: '[task: status, hydrate, sync, report]'
|
|
394
|
+
category: utilities
|
|
395
|
+
description: Track progress, update plan statuses, manage Claude Tasks, generate
|
|
396
|
+
reports, coordinate docs updates. Use for project oversight, status checks, plan
|
|
397
|
+
completion, task hydration, cross-session continuity.
|
|
398
|
+
has_references: true
|
|
399
|
+
has_scripts: false
|
|
400
|
+
name: project-management
|
|
401
|
+
path: project-management/SKILL.md
|
|
402
|
+
- argument_hint: '[component or pattern]'
|
|
403
|
+
category: other
|
|
404
|
+
description: React and Next.js performance optimization guidelines from Vercel Engineering.
|
|
405
|
+
This skill should be used when writing, reviewing, or refactoring React/Next.js
|
|
406
|
+
code to ensure optimal performance patterns. Triggers on tasks involving React
|
|
407
|
+
components, Next.js pages, data fetching, bundle optimization, or performance
|
|
408
|
+
improvements.
|
|
409
|
+
has_references: false
|
|
410
|
+
has_scripts: false
|
|
411
|
+
name: react-best-practices
|
|
412
|
+
path: react-best-practices/SKILL.md
|
|
413
|
+
- argument_hint: '[video or component]'
|
|
414
|
+
category: other
|
|
415
|
+
description: Best practices for Remotion - Video creation in React
|
|
416
|
+
has_references: false
|
|
417
|
+
has_scripts: false
|
|
418
|
+
name: remotion
|
|
419
|
+
path: remotion/SKILL.md
|
|
420
|
+
- argument_hint: '[path] [--style xml|markdown|plain|json]'
|
|
421
|
+
category: dev-tools
|
|
422
|
+
description: Pack repositories into AI-friendly files with Repomix (XML, Markdown,
|
|
423
|
+
plain text). Use for codebase snapshots, LLM context preparation, security audits,
|
|
424
|
+
third-party library analysis.
|
|
425
|
+
has_references: true
|
|
426
|
+
has_scripts: true
|
|
427
|
+
name: repomix
|
|
428
|
+
path: repomix/SKILL.md
|
|
429
|
+
- argument_hint: '[topic]'
|
|
430
|
+
category: utilities
|
|
431
|
+
description: Research technical solutions, analyze architectures, gather requirements
|
|
432
|
+
thoroughly. Use for technology evaluation, best practices research, solution design,
|
|
433
|
+
scalability/security/maintainability analysis.
|
|
434
|
+
has_references: false
|
|
435
|
+
has_scripts: false
|
|
436
|
+
name: research
|
|
437
|
+
path: research/SKILL.md
|
|
438
|
+
- argument_hint: '[search-target] [ext]'
|
|
439
|
+
category: dev-tools
|
|
440
|
+
description: Fast codebase scouting using parallel agents. Use for file discovery,
|
|
441
|
+
task context gathering, quick searches across directories. Supports internal (Explore)
|
|
442
|
+
and external (Gemini/OpenCode) agents.
|
|
443
|
+
has_references: true
|
|
444
|
+
has_scripts: false
|
|
445
|
+
name: scout
|
|
446
|
+
path: scout/SKILL.md
|
|
447
|
+
- argument_hint: '[problem to analyze step-by-step]'
|
|
448
|
+
category: utilities
|
|
449
|
+
description: Apply step-by-step analysis for complex problems with revision capability.
|
|
450
|
+
Use for multi-step reasoning, hypothesis verification, adaptive planning, problem
|
|
451
|
+
decomposition, course correction.
|
|
452
|
+
has_references: true
|
|
453
|
+
has_scripts: true
|
|
454
|
+
name: sequential-thinking
|
|
455
|
+
path: sequential-thinking/SKILL.md
|
|
456
|
+
- argument_hint: '[effect or pattern]'
|
|
457
|
+
category: other
|
|
458
|
+
description: 'Write GLSL fragment shaders for procedural graphics. Topics: shapes
|
|
459
|
+
(SDF), patterns, noise (Perlin/simplex/cellular), fBm, colors (HSB/RGB), matrices,
|
|
460
|
+
gradients, animations. Use for generative art, textures, visual effects, WebGL,
|
|
461
|
+
Three.js shaders.'
|
|
462
|
+
has_references: true
|
|
463
|
+
has_scripts: false
|
|
464
|
+
name: shader
|
|
465
|
+
path: shader/SKILL.md
|
|
466
|
+
- argument_hint: '[extension-type] [feature]'
|
|
467
|
+
category: frameworks
|
|
468
|
+
description: Build Shopify apps, extensions, themes with Shopify CLI. Use for GraphQL/REST
|
|
469
|
+
APIs, Polaris UI, Liquid templates, checkout customization, webhooks, billing
|
|
470
|
+
integration.
|
|
471
|
+
has_references: true
|
|
472
|
+
has_scripts: true
|
|
473
|
+
name: shopify
|
|
474
|
+
path: shopify/SKILL.md
|
|
475
|
+
- argument_hint: '[skill-name or description]'
|
|
476
|
+
category: dev-tools
|
|
477
|
+
description: Create or update Claude skills optimized for Skillmark benchmarks.
|
|
478
|
+
Use for new skills, skill scripts, references, benchmark optimization, extending
|
|
479
|
+
Claude's capabilities.
|
|
480
|
+
has_references: true
|
|
481
|
+
has_scripts: true
|
|
482
|
+
name: skill-creator
|
|
483
|
+
path: skill-creator/SKILL.md
|
|
484
|
+
- argument_hint: '[framework] [feature]'
|
|
485
|
+
category: other
|
|
486
|
+
description: Build with TanStack Start (full-stack React framework), TanStack Form
|
|
487
|
+
(headless form management), and TanStack AI (AI streaming/chat). Use when creating
|
|
488
|
+
TanStack projects, routes, server functions, forms, validation, or AI chat features.
|
|
489
|
+
has_references: true
|
|
490
|
+
has_scripts: false
|
|
491
|
+
name: tanstack
|
|
492
|
+
path: tanstack/SKILL.md
|
|
493
|
+
- argument_hint: <template> <context> [--devs|--researchers|--reviewers N] [--delegate]
|
|
494
|
+
category: dev-tools
|
|
495
|
+
description: Orchestrate Agent Teams for parallel multi-session collaboration. Use
|
|
496
|
+
for research, implementation, review, and debug workflows requiring independent
|
|
497
|
+
teammates.
|
|
498
|
+
has_references: true
|
|
499
|
+
has_scripts: false
|
|
500
|
+
name: team
|
|
501
|
+
path: team/SKILL.md
|
|
502
|
+
- argument_hint: '[context] OR ui [url]'
|
|
503
|
+
category: utilities
|
|
504
|
+
description: Run unit, integration, e2e, and UI tests. Use for test execution, coverage
|
|
505
|
+
analysis, build verification, visual regression, and QA reports.
|
|
506
|
+
has_references: true
|
|
507
|
+
has_scripts: false
|
|
508
|
+
name: test
|
|
509
|
+
path: test/SKILL.md
|
|
510
|
+
- argument_hint: '[3D scene or feature]'
|
|
511
|
+
category: frontend
|
|
512
|
+
description: 'Build 3D web apps with Three.js (WebGL/WebGPU). 556 searchable examples,
|
|
513
|
+
60 API classes, 20 use cases. Actions: create 3D scene, load model, add animation,
|
|
514
|
+
implement physics, build VR/XR. Topics: GLTF loader, PBR materials, particle effects,
|
|
515
|
+
shadows, post-processing, compute shaders, TSL. Integrations: WebGPU, physics
|
|
516
|
+
engines, spatial audio.'
|
|
517
|
+
has_references: true
|
|
518
|
+
has_scripts: true
|
|
519
|
+
name: threejs
|
|
520
|
+
path: threejs/SKILL.md
|
|
521
|
+
- argument_hint: '[component or layout]'
|
|
522
|
+
category: frontend
|
|
523
|
+
description: Style UIs with shadcn/ui components (Radix UI + Tailwind CSS). Use
|
|
524
|
+
for accessible components, themes, dark mode, responsive layouts, design systems,
|
|
525
|
+
color customization.
|
|
526
|
+
has_references: true
|
|
527
|
+
has_scripts: true
|
|
528
|
+
name: ui-styling
|
|
529
|
+
path: ui-styling/SKILL.md
|
|
530
|
+
- argument_hint: '[action] [element|project]'
|
|
531
|
+
category: frontend
|
|
532
|
+
description: 'UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings,
|
|
533
|
+
20 charts, 9 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter,
|
|
534
|
+
Tailwind, shadcn/ui). Actions: plan, build, create, design, implement, review,
|
|
535
|
+
fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website,
|
|
536
|
+
landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile
|
|
537
|
+
app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card,
|
|
538
|
+
table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism,
|
|
539
|
+
neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics:
|
|
540
|
+
color palette, accessibility, animation, layout, typography, font pairing, spacing,
|
|
541
|
+
hover, shadow, gradient. Integrations: shadcn/ui MCP for component search and
|
|
542
|
+
examples.'
|
|
543
|
+
has_references: false
|
|
544
|
+
has_scripts: true
|
|
545
|
+
name: ui-ux-pro-max
|
|
546
|
+
path: ui-ux-pro-max/SKILL.md
|
|
547
|
+
- argument_hint: '[task]'
|
|
548
|
+
category: dev-tools
|
|
549
|
+
description: Utilize MCP server tools with intelligent discovery and execution.
|
|
550
|
+
has_references: false
|
|
551
|
+
has_scripts: false
|
|
552
|
+
name: use-mcp
|
|
553
|
+
path: use-mcp/SKILL.md
|
|
554
|
+
- category: utilities
|
|
555
|
+
description: Review recent changes and wrap up the current work session.
|
|
556
|
+
has_references: false
|
|
557
|
+
has_scripts: false
|
|
558
|
+
name: watzup
|
|
559
|
+
path: watzup/SKILL.md
|
|
560
|
+
- argument_hint: '[file-or-pattern]'
|
|
561
|
+
category: frontend
|
|
562
|
+
description: Review UI code for Web Interface Guidelines compliance. Use when asked
|
|
563
|
+
to "review my UI", "check accessibility", "audit design", "review UX", or "check
|
|
564
|
+
my site against best practices".
|
|
565
|
+
has_references: false
|
|
566
|
+
has_scripts: false
|
|
567
|
+
name: web-design-guidelines
|
|
568
|
+
path: web-design-guidelines/SKILL.md
|
|
569
|
+
- argument_hint: '[framework] [feature]'
|
|
570
|
+
category: frameworks
|
|
571
|
+
description: Build with Next.js (App Router, RSC, SSR, ISR), Turborepo monorepos.
|
|
572
|
+
Use for React apps, server rendering, build optimization, caching strategies,
|
|
573
|
+
shared dependencies.
|
|
574
|
+
has_references: true
|
|
575
|
+
has_scripts: true
|
|
576
|
+
name: web-frameworks
|
|
577
|
+
path: web-frameworks/SKILL.md
|
|
578
|
+
- argument_hint: '[test-type] [target]'
|
|
579
|
+
category: other
|
|
580
|
+
description: Web testing with Playwright, Vitest, k6. E2E/unit/integration/load/security/visual/a11y
|
|
581
|
+
testing. Use for test automation, flakiness, Core Web Vitals, mobile gestures,
|
|
582
|
+
cross-browser.
|
|
583
|
+
has_references: true
|
|
584
|
+
has_scripts: true
|
|
585
|
+
name: web-testing
|
|
586
|
+
path: web-testing/SKILL.md
|
|
587
|
+
- argument_hint: '[feature-description] OR [project] [feature]'
|
|
588
|
+
category: dev-tools
|
|
589
|
+
description: Create isolated git worktree for parallel development in monorepos.
|
|
590
|
+
has_references: false
|
|
591
|
+
has_scripts: true
|
|
592
|
+
name: worktree
|
|
593
|
+
path: worktree/SKILL.md
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: copywriting
|
|
3
|
+
description: Conversion copywriting formulas, headline templates, email copy patterns, landing page structures, CTA optimization, and writing style extraction. Activate for writing high-converting copy, crafting headlines, email campaigns, landing pages, or applying custom writing styles from assets/writing-styles/ directory.
|
|
4
|
+
license: MIT
|
|
5
|
+
argument-hint: "[copy-type] [context]"
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# Copywriting
|
|
9
|
+
|
|
10
|
+
Formulas, templates, patterns, and writing styles for high-converting copy.
|
|
11
|
+
|
|
12
|
+
## When to Use
|
|
13
|
+
|
|
14
|
+
- Writing headlines/subject lines, landing page copy, email campaigns
|
|
15
|
+
- Social posts, product descriptions, CTA optimization, A/B variations
|
|
16
|
+
- Applying custom writing styles from user documents
|
|
17
|
+
|
|
18
|
+
## Writing Styles
|
|
19
|
+
|
|
20
|
+
Load: `references/writing-styles.md` | Full catalog: `assets/writing-styles/default.md` (50 styles)
|
|
21
|
+
|
|
22
|
+
**Extract styles from multi-format files:**
|
|
23
|
+
```bash
|
|
24
|
+
python .claude/skills/copywriting/scripts/extract-writing-styles.py --list # List files
|
|
25
|
+
python .claude/skills/copywriting/scripts/extract-writing-styles.py --style <name> # Extract style
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
**Formats:** `.md` `.txt` `.pdf` `.docx` `.xlsx` `.pptx` `.jpg` `.png` `.mp4` (docs/media need `GEMINI_API_KEY`)
|
|
29
|
+
|
|
30
|
+
## Copy Formulas
|
|
31
|
+
|
|
32
|
+
Load: `references/copy-formulas.md`
|
|
33
|
+
|
|
34
|
+
| Formula | Structure | Best For |
|
|
35
|
+
|---------|-----------|----------|
|
|
36
|
+
| AIDA | Attention → Interest → Desire → Action | Landing pages, ads |
|
|
37
|
+
| PAS | Problem → Agitate → Solution | Email, sales pages |
|
|
38
|
+
| BAB | Before → After → Bridge | Testimonials, case studies |
|
|
39
|
+
| 4Ps | Promise → Picture → Proof → Push | Long-form sales |
|
|
40
|
+
| 4Us | Urgent + Unique + Useful + Ultra-specific | Headlines |
|
|
41
|
+
| FAB | Feature → Advantage → Benefit | Product descriptions |
|
|
42
|
+
|
|
43
|
+
## Headlines
|
|
44
|
+
|
|
45
|
+
Load: `references/headline-templates.md`
|
|
46
|
+
|
|
47
|
+
Patterns: "How to [X] without [Y]" • "[Number] ways to [benefit]" • "The secret to [outcome]" • "Why [belief] is wrong"
|
|
48
|
+
|
|
49
|
+
## Email Copy
|
|
50
|
+
|
|
51
|
+
Load: `references/email-copy.md`
|
|
52
|
+
|
|
53
|
+
Subject lines: Curiosity gap • Benefit-driven • Question • Urgency
|
|
54
|
+
|
|
55
|
+
## Landing Pages & CTAs
|
|
56
|
+
|
|
57
|
+
Load: `references/landing-page-copy.md` | `references/cta-patterns.md`
|
|
58
|
+
|
|
59
|
+
Hero: Headline (promise) → Subheadline (how) → CTA (action) → Social proof
|
|
60
|
+
CTAs: "Start [verb]ing" • "Get [benefit]" • "Yes, I want [benefit]"
|
|
61
|
+
|
|
62
|
+
## Workflows
|
|
63
|
+
|
|
64
|
+
| Workflow | Purpose | Use When |
|
|
65
|
+
|----------|---------|----------|
|
|
66
|
+
| `references/workflow-cro.md` | CRO optimization (25 principles) + plan creation workflow | Conversion optimization & CRO plan requests |
|
|
67
|
+
| `references/workflow-enhance.md` | Copy enhancement | Improving existing copy |
|
|
68
|
+
| `references/workflow-fast.md` | Quick copy generation | Simple, time-sensitive requests |
|
|
69
|
+
| `references/workflow-good.md` | Quality copy with research | High-stakes content |
|
|
70
|
+
|
|
71
|
+
## References
|
|
72
|
+
|
|
73
|
+
| File | Purpose |
|
|
74
|
+
|------|---------|
|
|
75
|
+
| `references/writing-styles.md` | 30 writing styles quick reference |
|
|
76
|
+
| `references/copy-formulas.md` | AIDA, PAS, BAB, 4Ps, FAB formulas |
|
|
77
|
+
| `references/headline-templates.md` | Headline patterns & templates |
|
|
78
|
+
| `references/email-copy.md` | Email copy patterns |
|
|
79
|
+
| `references/landing-page-copy.md` | Landing page structure |
|
|
80
|
+
| `references/cta-patterns.md` | CTA optimization |
|
|
81
|
+
| `references/power-words.md` | Power words by emotion |
|
|
82
|
+
| `references/social-media-copy.md` | Platform-specific copy |
|
|
83
|
+
| `scripts/extract-writing-styles.py` | Extract styles from multi-format files |
|
|
84
|
+
| `templates/copy-brief.md` | Creative brief template |
|
|
85
|
+
|
|
86
|
+
## Agent Integration
|
|
87
|
+
|
|
88
|
+
**Primary:** fullstack-developer | **Related:** brand-guidelines, content-marketing, email-marketing
|
|
89
|
+
|
|
90
|
+
## Best Practices
|
|
91
|
+
|
|
92
|
+
1. Lead with benefit, not feature | 2. One CTA per piece
|
|
93
|
+
3. Specificity > vague claims | 4. Read aloud—if awkward, rewrite
|
|
94
|
+
5. Test headlines first | 6. Match copy to awareness level
|