@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,175 @@
|
|
|
1
|
+
# Landing Page Copy
|
|
2
|
+
|
|
3
|
+
Structure and templates for high-converting landing pages.
|
|
4
|
+
|
|
5
|
+
## Above The Fold (Hero Section)
|
|
6
|
+
|
|
7
|
+
The first screen matters most. Include:
|
|
8
|
+
|
|
9
|
+
```
|
|
10
|
+
┌─────────────────────────────────────────────────┐
|
|
11
|
+
│ │
|
|
12
|
+
│ [Pre-headline - optional credibility] │
|
|
13
|
+
│ │
|
|
14
|
+
│ HEADLINE: Promise the outcome │
|
|
15
|
+
│ │
|
|
16
|
+
│ Subheadline: How or why (supporting detail) │
|
|
17
|
+
│ │
|
|
18
|
+
│ [Hero image/video] [Primary CTA button] │
|
|
19
|
+
│ │
|
|
20
|
+
│ [Social proof snippet: "Join 10,000+ users"] │
|
|
21
|
+
│ │
|
|
22
|
+
└─────────────────────────────────────────────────┘
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Headline Formulas
|
|
26
|
+
|
|
27
|
+
```
|
|
28
|
+
[Achieve outcome] without [pain]
|
|
29
|
+
The [adjective] way to [benefit]
|
|
30
|
+
[Benefit] in [timeframe]
|
|
31
|
+
Get [result]. [Handle objection].
|
|
32
|
+
[Do X] like [aspirational group]
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
**Examples:**
|
|
36
|
+
- Write emails that convert without sounding salesy
|
|
37
|
+
- The fastest way to build landing pages
|
|
38
|
+
- Double your leads in 30 days
|
|
39
|
+
- Get more clients. Spend less time selling.
|
|
40
|
+
|
|
41
|
+
## Subheadline Formulas
|
|
42
|
+
|
|
43
|
+
```
|
|
44
|
+
[Product] helps [audience] [benefit] so they can [ultimate goal]
|
|
45
|
+
Even if [common objection]
|
|
46
|
+
Without [pain they expect]
|
|
47
|
+
The [only/first/fastest] [thing] that [benefit]
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
**Examples:**
|
|
51
|
+
- Our AI helps marketers write copy 10x faster so they can focus on strategy
|
|
52
|
+
- Even if you've never written a sales email before
|
|
53
|
+
- Without hiring expensive copywriters
|
|
54
|
+
|
|
55
|
+
## Social Proof Section
|
|
56
|
+
|
|
57
|
+
### Testimonials
|
|
58
|
+
```
|
|
59
|
+
"[Result achieved] in [timeframe]. [Emotional reaction]."
|
|
60
|
+
— [Name], [Title] at [Company]
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
### Stats Bar
|
|
64
|
+
```
|
|
65
|
+
[10,000+] customers | [4.9/5] rating | [50M+] emails sent
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
### Logo Cloud
|
|
69
|
+
```
|
|
70
|
+
"Trusted by teams at [Logo1] [Logo2] [Logo3]..."
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
## Benefits Section
|
|
74
|
+
|
|
75
|
+
Use this structure:
|
|
76
|
+
```
|
|
77
|
+
[Benefit headline]
|
|
78
|
+
[1-2 sentence explanation]
|
|
79
|
+
[Optional: icon or image]
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
**Write benefits, not features:**
|
|
83
|
+
|
|
84
|
+
| Feature | Benefit |
|
|
85
|
+
|---------|---------|
|
|
86
|
+
| "AI-powered" | "Writes copy in seconds" |
|
|
87
|
+
| "Cloud-based" | "Access from anywhere" |
|
|
88
|
+
| "Advanced analytics" | "Know exactly what's working" |
|
|
89
|
+
|
|
90
|
+
## How It Works Section
|
|
91
|
+
|
|
92
|
+
```
|
|
93
|
+
Step 1: [Action verb] → [Outcome]
|
|
94
|
+
Step 2: [Action verb] → [Outcome]
|
|
95
|
+
Step 3: [Action verb] → [Outcome]
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
**Example:**
|
|
99
|
+
```
|
|
100
|
+
Step 1: Connect your data → One-click setup
|
|
101
|
+
Step 2: Choose your template → AI writes your copy
|
|
102
|
+
Step 3: Launch your campaign → Start getting leads
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
## FAQ Section
|
|
106
|
+
|
|
107
|
+
Address objections disguised as questions:
|
|
108
|
+
|
|
109
|
+
```
|
|
110
|
+
"How long does it take to see results?"
|
|
111
|
+
→ Answer + success story reference
|
|
112
|
+
|
|
113
|
+
"What if it doesn't work for my industry?"
|
|
114
|
+
→ Answer + social proof from similar industry
|
|
115
|
+
|
|
116
|
+
"Is there a contract?"
|
|
117
|
+
→ Answer + risk reversal
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
## CTA Section Patterns
|
|
121
|
+
|
|
122
|
+
### Primary CTA
|
|
123
|
+
```
|
|
124
|
+
[Action verb] + [benefit]
|
|
125
|
+
Get Started Free
|
|
126
|
+
Start Your Free Trial
|
|
127
|
+
Build Your First [Thing]
|
|
128
|
+
```
|
|
129
|
+
|
|
130
|
+
### With Risk Reversal
|
|
131
|
+
```
|
|
132
|
+
[CTA button]
|
|
133
|
+
No credit card required. Cancel anytime.
|
|
134
|
+
30-day money-back guarantee.
|
|
135
|
+
```
|
|
136
|
+
|
|
137
|
+
### With Urgency
|
|
138
|
+
```
|
|
139
|
+
[CTA button]
|
|
140
|
+
Limited time: Save 40% (ends Friday)
|
|
141
|
+
Only 17 spots left this month
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
## Page Flow (Long-form)
|
|
145
|
+
|
|
146
|
+
```
|
|
147
|
+
1. Hero (problem → promise)
|
|
148
|
+
2. Pain points (agitate)
|
|
149
|
+
3. Solution intro
|
|
150
|
+
4. How it works
|
|
151
|
+
5. Benefits (3-5)
|
|
152
|
+
6. Social proof
|
|
153
|
+
7. Pricing/offer
|
|
154
|
+
8. FAQ (objections)
|
|
155
|
+
9. Final CTA
|
|
156
|
+
```
|
|
157
|
+
|
|
158
|
+
## Conversion Boosters
|
|
159
|
+
|
|
160
|
+
- **Specificity**: "47% increase" > "big increase"
|
|
161
|
+
- **Contrast**: Before/after comparisons
|
|
162
|
+
- **Scarcity**: Limited spots, time, quantity
|
|
163
|
+
- **Risk reversal**: Guarantees, free trials
|
|
164
|
+
- **Social proof**: Numbers, logos, testimonials
|
|
165
|
+
|
|
166
|
+
## Landing Page Checklist
|
|
167
|
+
|
|
168
|
+
- [ ] Headline promises clear outcome?
|
|
169
|
+
- [ ] Subheadline supports or explains?
|
|
170
|
+
- [ ] One primary CTA (repeated)?
|
|
171
|
+
- [ ] Benefits, not features?
|
|
172
|
+
- [ ] Social proof visible above fold?
|
|
173
|
+
- [ ] Objections addressed?
|
|
174
|
+
- [ ] Mobile-optimized?
|
|
175
|
+
- [ ] Page loads under 3 seconds?
|
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
# Power Words
|
|
2
|
+
|
|
3
|
+
Emotional triggers and action words for copy.
|
|
4
|
+
|
|
5
|
+
## Urgency Words
|
|
6
|
+
|
|
7
|
+
```
|
|
8
|
+
Now Limited Hurry
|
|
9
|
+
Today Last chance Deadline
|
|
10
|
+
Immediately Expires Running out
|
|
11
|
+
Instant Quick Fast
|
|
12
|
+
Before Final Closing
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
**Usage:**
|
|
16
|
+
```
|
|
17
|
+
"Get instant access now"
|
|
18
|
+
"Limited spots remaining"
|
|
19
|
+
"Offer expires tonight"
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Exclusivity Words
|
|
23
|
+
|
|
24
|
+
```
|
|
25
|
+
Secret Insider Members-only
|
|
26
|
+
Exclusive Private VIP
|
|
27
|
+
Hidden Rare Elite
|
|
28
|
+
Invitation Access Behind-the-scenes
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
**Usage:**
|
|
32
|
+
```
|
|
33
|
+
"Exclusive access for subscribers"
|
|
34
|
+
"The hidden strategy behind..."
|
|
35
|
+
"Insider secrets revealed"
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## Value Words
|
|
39
|
+
|
|
40
|
+
```
|
|
41
|
+
Free Bonus Save
|
|
42
|
+
Discount Deal Value
|
|
43
|
+
Bargain Reduced Guarantee
|
|
44
|
+
Gift Complimentary No-cost
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
**Usage:**
|
|
48
|
+
```
|
|
49
|
+
"Free bonus included"
|
|
50
|
+
"Save 50% today only"
|
|
51
|
+
"Guaranteed results or money back"
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
## Trust Words
|
|
55
|
+
|
|
56
|
+
```
|
|
57
|
+
Proven Tested Verified
|
|
58
|
+
Certified Authentic Genuine
|
|
59
|
+
Official Trusted Reliable
|
|
60
|
+
Safe Secure Protected
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
**Usage:**
|
|
64
|
+
```
|
|
65
|
+
"Proven by 10,000+ users"
|
|
66
|
+
"Verified results"
|
|
67
|
+
"100% secure checkout"
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
## Results Words
|
|
71
|
+
|
|
72
|
+
```
|
|
73
|
+
Results Success Achieve
|
|
74
|
+
Transform Breakthrough Boost
|
|
75
|
+
Increase Improve Maximize
|
|
76
|
+
Double Triple Skyrocket
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
**Usage:**
|
|
80
|
+
```
|
|
81
|
+
"Double your conversions"
|
|
82
|
+
"Breakthrough strategy"
|
|
83
|
+
"Transform your business in 30 days"
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
## Emotion Words
|
|
87
|
+
|
|
88
|
+
### Positive
|
|
89
|
+
```
|
|
90
|
+
Amazing Incredible Stunning
|
|
91
|
+
Brilliant Exciting Delightful
|
|
92
|
+
Wonderful Remarkable Inspiring
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
### Negative (for pain points)
|
|
96
|
+
```
|
|
97
|
+
Frustrated Overwhelmed Struggling
|
|
98
|
+
Stuck Stressed Burned out
|
|
99
|
+
Worried Confused Lost
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
## Curiosity Words
|
|
103
|
+
|
|
104
|
+
```
|
|
105
|
+
Secret Surprising Unexpected
|
|
106
|
+
Little-known Discover Reveal
|
|
107
|
+
Uncover Mystery Behind
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
**Usage:**
|
|
111
|
+
```
|
|
112
|
+
"The surprising truth about..."
|
|
113
|
+
"Discover what most people miss"
|
|
114
|
+
"Little-known strategy that..."
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
## Authority Words
|
|
118
|
+
|
|
119
|
+
```
|
|
120
|
+
Expert Professional Research
|
|
121
|
+
Study Data Science
|
|
122
|
+
Backed Endorsed Recommended
|
|
123
|
+
Award-winning Industry Leading
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
## Simplicity Words
|
|
127
|
+
|
|
128
|
+
```
|
|
129
|
+
Easy Simple Effortless
|
|
130
|
+
Quick Fast Instant
|
|
131
|
+
Automatic One-click Seamless
|
|
132
|
+
Beginner Step-by-step Straightforward
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
**Usage:**
|
|
136
|
+
```
|
|
137
|
+
"Easy setup in 5 minutes"
|
|
138
|
+
"One-click automation"
|
|
139
|
+
"Simple step-by-step guide"
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
## Power Word Combinations
|
|
143
|
+
|
|
144
|
+
| Combo | Example |
|
|
145
|
+
|-------|---------|
|
|
146
|
+
| Urgency + Value | "Limited-time free access" |
|
|
147
|
+
| Exclusivity + Results | "Insider secrets to 2x growth" |
|
|
148
|
+
| Simplicity + Results | "Easy way to double leads" |
|
|
149
|
+
| Trust + Exclusivity | "Proven system used by top 1%" |
|
|
150
|
+
|
|
151
|
+
## Words to Avoid
|
|
152
|
+
|
|
153
|
+
### Vague/Weak
|
|
154
|
+
```
|
|
155
|
+
Nice Good Great (overused)
|
|
156
|
+
Very Really Actually
|
|
157
|
+
Things Stuff Interesting
|
|
158
|
+
```
|
|
159
|
+
|
|
160
|
+
### Corporate Speak
|
|
161
|
+
```
|
|
162
|
+
Synergy Leverage Holistic
|
|
163
|
+
Paradigm Utilize Optimize (overused)
|
|
164
|
+
Disrupt Pivot Solution (overused)
|
|
165
|
+
```
|
|
166
|
+
|
|
167
|
+
### Overused Marketing
|
|
168
|
+
```
|
|
169
|
+
Revolutionary Cutting-edge World-class
|
|
170
|
+
Best-in-class Game-changing Next-level
|
|
171
|
+
```
|
|
172
|
+
|
|
173
|
+
## Power Word Placement
|
|
174
|
+
|
|
175
|
+
| Location | Best Word Types |
|
|
176
|
+
|----------|----------------|
|
|
177
|
+
| Headlines | Curiosity, urgency, numbers |
|
|
178
|
+
| Subheadlines | Benefits, simplicity |
|
|
179
|
+
| CTAs | Action, value, urgency |
|
|
180
|
+
| Email subjects | Curiosity, urgency, personal |
|
|
181
|
+
| Body copy | Trust, results, emotion |
|
|
182
|
+
|
|
183
|
+
## Usage Tips
|
|
184
|
+
|
|
185
|
+
1. **Don't overuse** — 1-2 power words per headline
|
|
186
|
+
2. **Match context** — urgency for sales, curiosity for content
|
|
187
|
+
3. **A/B test** — what works for one audience may not for another
|
|
188
|
+
4. **Be authentic** — false urgency/exclusivity backfires
|
|
189
|
+
5. **Combine strategically** — pair urgency with value
|
|
@@ -0,0 +1,222 @@
|
|
|
1
|
+
# Social Media Copy
|
|
2
|
+
|
|
3
|
+
Platform-specific templates and patterns.
|
|
4
|
+
|
|
5
|
+
## Twitter/X
|
|
6
|
+
|
|
7
|
+
### Character Limits
|
|
8
|
+
- Tweet: 280 characters
|
|
9
|
+
- Preview shown: ~140 characters (critical)
|
|
10
|
+
|
|
11
|
+
### Thread Structure
|
|
12
|
+
```
|
|
13
|
+
Tweet 1 (Hook):
|
|
14
|
+
[Bold claim or curiosity gap]
|
|
15
|
+
|
|
16
|
+
Tweet 2-N (Body):
|
|
17
|
+
[Each tweet = one complete point]
|
|
18
|
+
|
|
19
|
+
Final Tweet (CTA):
|
|
20
|
+
[Action + reminder to follow/retweet]
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
### High-Performing Patterns
|
|
24
|
+
|
|
25
|
+
**Hot Take:**
|
|
26
|
+
```
|
|
27
|
+
Unpopular opinion: [contrarian view]
|
|
28
|
+
|
|
29
|
+
Here's why 👇
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
**Story Hook:**
|
|
33
|
+
```
|
|
34
|
+
I [did X] and [unexpected result].
|
|
35
|
+
|
|
36
|
+
Here's what happened:
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
**List Post:**
|
|
40
|
+
```
|
|
41
|
+
[Number] things I wish I knew about [topic]:
|
|
42
|
+
|
|
43
|
+
1. [Point]
|
|
44
|
+
2. [Point]
|
|
45
|
+
...
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
**Before/After:**
|
|
49
|
+
```
|
|
50
|
+
[Time] ago: [painful state]
|
|
51
|
+
Today: [successful state]
|
|
52
|
+
|
|
53
|
+
What changed:
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
### Twitter Tips
|
|
57
|
+
- First 140 characters = hook
|
|
58
|
+
- Line breaks = readability
|
|
59
|
+
- No hashtags (usually)
|
|
60
|
+
- Questions drive replies
|
|
61
|
+
- Controversy (tasteful) drives engagement
|
|
62
|
+
|
|
63
|
+
---
|
|
64
|
+
|
|
65
|
+
## LinkedIn
|
|
66
|
+
|
|
67
|
+
### Character Limits
|
|
68
|
+
- Post: 3,000 characters
|
|
69
|
+
- "See more" appears after ~210 characters
|
|
70
|
+
|
|
71
|
+
### Structure
|
|
72
|
+
```
|
|
73
|
+
[Hook line - must grab attention]
|
|
74
|
+
[Second hook line]
|
|
75
|
+
|
|
76
|
+
[Story or insight - keep paragraphs short]
|
|
77
|
+
|
|
78
|
+
[Lesson/takeaway]
|
|
79
|
+
|
|
80
|
+
[Question or CTA]
|
|
81
|
+
|
|
82
|
+
---
|
|
83
|
+
[Optional: hashtags at bottom, max 3-5]
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
### High-Performing Patterns
|
|
87
|
+
|
|
88
|
+
**Humble Brag:**
|
|
89
|
+
```
|
|
90
|
+
I almost didn't post this.
|
|
91
|
+
|
|
92
|
+
Last week, [achievement].
|
|
93
|
+
|
|
94
|
+
But here's what nobody talks about:
|
|
95
|
+
[The struggle behind it]
|
|
96
|
+
|
|
97
|
+
Key lesson: [insight]
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
**Contrarian:**
|
|
101
|
+
```
|
|
102
|
+
Stop saying [common advice].
|
|
103
|
+
|
|
104
|
+
Here's why it's wrong for most people:
|
|
105
|
+
[Explanation]
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
**Story:**
|
|
109
|
+
```
|
|
110
|
+
[Start with dramatic moment]
|
|
111
|
+
|
|
112
|
+
Let me back up.
|
|
113
|
+
|
|
114
|
+
[Context]
|
|
115
|
+
|
|
116
|
+
[What happened]
|
|
117
|
+
|
|
118
|
+
[The lesson]
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
### LinkedIn Tips
|
|
122
|
+
- First 2 lines = everything
|
|
123
|
+
- Stories outperform tips
|
|
124
|
+
- Personal > professional
|
|
125
|
+
- Avoid links in posts (kills reach)
|
|
126
|
+
- Engage in comments for 30 min after posting
|
|
127
|
+
|
|
128
|
+
---
|
|
129
|
+
|
|
130
|
+
## Instagram
|
|
131
|
+
|
|
132
|
+
### Caption Structure
|
|
133
|
+
```
|
|
134
|
+
[Hook - first line visible]
|
|
135
|
+
.
|
|
136
|
+
.
|
|
137
|
+
.
|
|
138
|
+
[Story/value]
|
|
139
|
+
|
|
140
|
+
[CTA: Comment, save, share]
|
|
141
|
+
|
|
142
|
+
.
|
|
143
|
+
.
|
|
144
|
+
.
|
|
145
|
+
[Hashtags - 15-30, relevant]
|
|
146
|
+
```
|
|
147
|
+
|
|
148
|
+
### Caption Hooks
|
|
149
|
+
```
|
|
150
|
+
Stop scrolling if you [pain point]
|
|
151
|
+
This changed everything for me
|
|
152
|
+
Nobody talks about this but...
|
|
153
|
+
The truth about [topic]
|
|
154
|
+
```
|
|
155
|
+
|
|
156
|
+
### Instagram Tips
|
|
157
|
+
- First line = hook (before "more")
|
|
158
|
+
- Use line breaks for readability
|
|
159
|
+
- CTA: Ask for saves, shares, comments
|
|
160
|
+
- Hashtags in caption or first comment
|
|
161
|
+
|
|
162
|
+
---
|
|
163
|
+
|
|
164
|
+
## TikTok/Reels
|
|
165
|
+
|
|
166
|
+
### Hook (First 1-3 seconds)
|
|
167
|
+
```
|
|
168
|
+
"Here's why you're [failing at X]"
|
|
169
|
+
"The [thing] nobody's talking about"
|
|
170
|
+
"I tested [X] for 30 days"
|
|
171
|
+
"Stop doing [X] immediately"
|
|
172
|
+
"This will change how you [X]"
|
|
173
|
+
```
|
|
174
|
+
|
|
175
|
+
### Script Structure (15-60 sec)
|
|
176
|
+
```
|
|
177
|
+
[0-3s] Hook
|
|
178
|
+
[3-20s] Problem/setup
|
|
179
|
+
[20-45s] Solution/reveal
|
|
180
|
+
[45-60s] CTA
|
|
181
|
+
```
|
|
182
|
+
|
|
183
|
+
### Overlay Text
|
|
184
|
+
```
|
|
185
|
+
[Attention-grabbing text on screen]
|
|
186
|
+
- Keep it short (2-5 words)
|
|
187
|
+
- High contrast colors
|
|
188
|
+
- Top 1/3 of frame
|
|
189
|
+
```
|
|
190
|
+
|
|
191
|
+
---
|
|
192
|
+
|
|
193
|
+
## Universal Social Patterns
|
|
194
|
+
|
|
195
|
+
### Engagement Drivers
|
|
196
|
+
- Questions that invite opinions
|
|
197
|
+
- Controversial (but defensible) takes
|
|
198
|
+
- Specific numbers and results
|
|
199
|
+
- Before/after transformations
|
|
200
|
+
- Behind-the-scenes content
|
|
201
|
+
|
|
202
|
+
### What to Avoid
|
|
203
|
+
- Generic motivational quotes
|
|
204
|
+
- Excessive hashtags
|
|
205
|
+
- Links in posts (except Twitter)
|
|
206
|
+
- All caps (looks spammy)
|
|
207
|
+
- Being salesy without value
|
|
208
|
+
|
|
209
|
+
### Content Ratio
|
|
210
|
+
```
|
|
211
|
+
80% value (teach, entertain, inspire)
|
|
212
|
+
20% promotion (offers, launches)
|
|
213
|
+
```
|
|
214
|
+
|
|
215
|
+
## Platform Comparison
|
|
216
|
+
|
|
217
|
+
| Platform | Tone | Length | Best For |
|
|
218
|
+
|----------|------|--------|----------|
|
|
219
|
+
| Twitter/X | Punchy, opinionated | Short threads | Hot takes, insights |
|
|
220
|
+
| LinkedIn | Professional, personal | Medium-long | Stories, credibility |
|
|
221
|
+
| Instagram | Visual, lifestyle | Medium | Community, brand |
|
|
222
|
+
| TikTok | Raw, fast, trendy | Short | Awareness, virality |
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
# CRO (Conversion Rate Optimization) Workflow
|
|
2
|
+
|
|
3
|
+
Analyze content and optimize for conversion based on user-reported issues.
|
|
4
|
+
|
|
5
|
+
## Conversion Optimization Framework
|
|
6
|
+
|
|
7
|
+
25 principles for high-converting copy:
|
|
8
|
+
|
|
9
|
+
### Headlines & Value Prop
|
|
10
|
+
1. **4-U Headline Formula**: Useful, Unique, Urgent, Ultra-specific (80% won't read past headline)
|
|
11
|
+
2. **Above-Fold Value**: Customer problem focus, no company story, zero scroll required
|
|
12
|
+
3. **Benefit-First Language**: Features tell, benefits sell, transformations compel
|
|
13
|
+
|
|
14
|
+
### CTAs & Forms
|
|
15
|
+
4. **First-Person CTAs**: "Get MY Guide" vs "Get YOUR Guide" (90% more clicks)
|
|
16
|
+
5. **5-Field Max Forms**: Every field kills conversions, progressive profiling for rest
|
|
17
|
+
6. **Micro-Commitment Ladder**: Small yes → big yes, start email only
|
|
18
|
+
|
|
19
|
+
### Psychology & Trust
|
|
20
|
+
7. **Message Match**: Ad copy = landing headline, broken promises = bounce
|
|
21
|
+
8. **Social Proof Near CTAs**: Testimonials with faces/names/results at decision points
|
|
22
|
+
9. **Cognitive Bias Stack**: Loss aversion (fear), social proof (FOMO), anchoring (pricing)
|
|
23
|
+
10. **PAS Framework**: Problem → Agitate → Solve, emotion before logic
|
|
24
|
+
|
|
25
|
+
### Pricing & Urgency
|
|
26
|
+
11. **Genuine Urgency Only**: Real deadlines, actual limits—fake timers destroy trust
|
|
27
|
+
12. **Price Anchoring**: Show expensive option first, real price feels like relief
|
|
28
|
+
13. **Trust Signal Clustering**: Security badges, guarantees, policies visible together
|
|
29
|
+
|
|
30
|
+
### Layout & UX
|
|
31
|
+
14. **Visual Hierarchy F-Pattern**: Eyes scan F-shape, put conversions in path
|
|
32
|
+
15. **Lead Magnet Hierarchy**: Templates > Checklists > Guides (instant > delayed)
|
|
33
|
+
16. **Objection Preemption**: Address top 3 concerns before they think them, FAQ near CTA
|
|
34
|
+
17. **Mobile Thumb Zone**: CTAs where thumbs naturally rest
|
|
35
|
+
18. **White Space = Focus**: Empty space makes CTAs impossible to miss
|
|
36
|
+
|
|
37
|
+
### Testing & Optimization
|
|
38
|
+
19. **One-Variable Testing**: Change one thing, measure impact, compound wins
|
|
39
|
+
20. **Post-Conversion Momentum**: Thank you page sells next step while excitement peaks
|
|
40
|
+
21. **Cart Recovery Sequence**: Email 1hr, retarget 4hr, incentive 24hr
|
|
41
|
+
|
|
42
|
+
### Copy Quality
|
|
43
|
+
22. **Grade 6 Reading Level**: Smart people prefer simple, 11-word sentences, short paragraphs
|
|
44
|
+
23. **TOFU/MOFU/BOFU Logic**: Awareness ≠ decision content, match intent
|
|
45
|
+
24. **Specificity > Vague Claims**: Numbers, timeframes, concrete outcomes
|
|
46
|
+
25. **Weekly Optimization Ritual**: Review Monday, test Tuesday, iterate/scale
|
|
47
|
+
|
|
48
|
+
## Workflow Steps
|
|
49
|
+
|
|
50
|
+
1. **Screenshots provided** → Use `ck:ai-multimodal` skill to analyze conversion issues
|
|
51
|
+
2. **Videos provided** → Use `ck:ai-multimodal` video-analysis for bottleneck identification
|
|
52
|
+
3. **URL provided** → Use `web_fetch` tool to fetch and analyze current issues
|
|
53
|
+
4. **Scout codebase** → `/ck:scout ext` (preferred) or `/ck:scout` to find relevant files
|
|
54
|
+
5. **Implement** → Use `fullstack-developer` agent to write enhanced copy into code files
|
|
55
|
+
|
|
56
|
+
## CRO Plan Creation Workflow
|
|
57
|
+
|
|
58
|
+
Use when creating a structured CRO optimization plan (e.g., via `/ck:plan:cro`).
|
|
59
|
+
|
|
60
|
+
### Steps
|
|
61
|
+
|
|
62
|
+
1. **Analyze** → Gather issues from screenshots/videos/URLs using steps above
|
|
63
|
+
2. **Activate** `ck:plan` skill for plan structure
|
|
64
|
+
3. **Create plan directory** using naming pattern from `## Naming` section (hook-injected)
|
|
65
|
+
4. **Write `plan.md`** with required YAML frontmatter:
|
|
66
|
+
```yaml
|
|
67
|
+
---
|
|
68
|
+
title: "{Brief title}"
|
|
69
|
+
description: "{One sentence for card preview}"
|
|
70
|
+
status: pending
|
|
71
|
+
priority: P2
|
|
72
|
+
effort: {sum of phases, e.g., 4h}
|
|
73
|
+
branch: {current git branch}
|
|
74
|
+
tags: [cro, conversion]
|
|
75
|
+
created: {YYYY-MM-DD}
|
|
76
|
+
---
|
|
77
|
+
```
|
|
78
|
+
5. Keep `plan.md` generic, under 80 lines, list each phase with status/progress and links
|
|
79
|
+
6. **Create phase files** (`phase-XX-phase-name.md`) with sections: Context links, Overview (date/priority/statuses), Key Insights, Requirements, Architecture, Related code files, Implementation Steps, Todo list, Success Criteria, Risk Assessment, Security Considerations, Next steps
|
|
80
|
+
7. Keep research markdown reports ≤150 lines with citations
|
|
81
|
+
8. **Wait** for user approval before implementing
|
|
82
|
+
|
|
83
|
+
Sacrifice grammar for concision. List unresolved questions at end of reports.
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# Copy Enhancement Workflow
|
|
2
|
+
|
|
3
|
+
Analyze existing copy issues and enhance for better performance.
|
|
4
|
+
|
|
5
|
+
## When to Use
|
|
6
|
+
|
|
7
|
+
- User reports copy problems (unclear messaging, low engagement, weak CTAs)
|
|
8
|
+
- Content needs polish without complete rewrite
|
|
9
|
+
- Quick improvements to existing marketing materials
|
|
10
|
+
|
|
11
|
+
## Workflow Steps
|
|
12
|
+
|
|
13
|
+
1. **Screenshots provided** → Use `ck:ai-multimodal` skill to analyze and describe issues in detail
|
|
14
|
+
2. **Videos provided** → Use `ck:ai-multimodal` video-analysis to extract relevant copy issues
|
|
15
|
+
3. **Scout codebase** → `/ck:scout ext` (preferred) or `/ck:scout` to find files needing enhancement
|
|
16
|
+
4. **Implement** → Use `fullstack-developer` agent to write enhanced copy into code files
|
|
17
|
+
|
|
18
|
+
## Enhancement Checklist
|
|
19
|
+
|
|
20
|
+
- [ ] Headlines grab attention (4-U formula)
|
|
21
|
+
- [ ] Benefits lead, features follow
|
|
22
|
+
- [ ] CTAs clear and action-oriented
|
|
23
|
+
- [ ] Social proof present
|
|
24
|
+
- [ ] Objections addressed
|
|
25
|
+
- [ ] Reading level appropriate (Grade 6-8)
|
|
26
|
+
- [ ] Mobile-friendly formatting
|
|
27
|
+
|
|
28
|
+
## Related References
|
|
29
|
+
|
|
30
|
+
- `workflow-cro.md` - Full CRO framework
|
|
31
|
+
- `copy-formulas.md` - AIDA, PAS, BAB structures
|
|
32
|
+
- `headline-templates.md` - Headline patterns
|