jfl 0.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +313 -0
- package/clawdbot-skill/README.md +328 -0
- package/clawdbot-skill/SKILL.md +362 -0
- package/clawdbot-skill/index.ts +486 -0
- package/clawdbot-skill/package.json +28 -0
- package/clawdbot-skill/skill.json +28 -0
- package/dist/commands/agents.d.ts +5 -0
- package/dist/commands/agents.d.ts.map +1 -0
- package/dist/commands/agents.js +399 -0
- package/dist/commands/agents.js.map +1 -0
- package/dist/commands/context-hub.d.ts +12 -0
- package/dist/commands/context-hub.d.ts.map +1 -0
- package/dist/commands/context-hub.js +642 -0
- package/dist/commands/context-hub.js.map +1 -0
- package/dist/commands/deploy.d.ts +5 -0
- package/dist/commands/deploy.d.ts.map +1 -0
- package/dist/commands/deploy.js +370 -0
- package/dist/commands/deploy.js.map +1 -0
- package/dist/commands/feedback.d.ts +2 -0
- package/dist/commands/feedback.d.ts.map +1 -0
- package/dist/commands/feedback.js +178 -0
- package/dist/commands/feedback.js.map +1 -0
- package/dist/commands/hud.d.ts +4 -0
- package/dist/commands/hud.d.ts.map +1 -0
- package/dist/commands/hud.js +262 -0
- package/dist/commands/hud.js.map +1 -0
- package/dist/commands/init.d.ts +4 -0
- package/dist/commands/init.d.ts.map +1 -0
- package/dist/commands/init.js +553 -0
- package/dist/commands/init.js.map +1 -0
- package/dist/commands/login.d.ts +23 -0
- package/dist/commands/login.d.ts.map +1 -0
- package/dist/commands/login.js +818 -0
- package/dist/commands/login.js.map +1 -0
- package/dist/commands/ralph.d.ts +9 -0
- package/dist/commands/ralph.d.ts.map +1 -0
- package/dist/commands/ralph.js +67 -0
- package/dist/commands/ralph.js.map +1 -0
- package/dist/commands/repair.d.ts +7 -0
- package/dist/commands/repair.d.ts.map +1 -0
- package/dist/commands/repair.js +283 -0
- package/dist/commands/repair.js.map +1 -0
- package/dist/commands/session-mgmt.d.ts +33 -0
- package/dist/commands/session-mgmt.d.ts.map +1 -0
- package/dist/commands/session-mgmt.js +404 -0
- package/dist/commands/session-mgmt.js.map +1 -0
- package/dist/commands/session.d.ts +2 -0
- package/dist/commands/session.d.ts.map +1 -0
- package/dist/commands/session.js +639 -0
- package/dist/commands/session.js.map +1 -0
- package/dist/commands/skills.d.ts +31 -0
- package/dist/commands/skills.d.ts.map +1 -0
- package/dist/commands/skills.js +314 -0
- package/dist/commands/skills.js.map +1 -0
- package/dist/commands/status.d.ts +2 -0
- package/dist/commands/status.d.ts.map +1 -0
- package/dist/commands/status.js +127 -0
- package/dist/commands/status.js.map +1 -0
- package/dist/commands/synopsis.d.ts +10 -0
- package/dist/commands/synopsis.d.ts.map +1 -0
- package/dist/commands/synopsis.js +277 -0
- package/dist/commands/synopsis.js.map +1 -0
- package/dist/commands/update.d.ts +10 -0
- package/dist/commands/update.d.ts.map +1 -0
- package/dist/commands/update.js +165 -0
- package/dist/commands/update.js.map +1 -0
- package/dist/commands/voice.d.ts +410 -0
- package/dist/commands/voice.d.ts.map +1 -0
- package/dist/commands/voice.js +4763 -0
- package/dist/commands/voice.js.map +1 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +512 -0
- package/dist/index.js.map +1 -0
- package/dist/mcp/context-hub-mcp.d.ts +11 -0
- package/dist/mcp/context-hub-mcp.d.ts.map +1 -0
- package/dist/mcp/context-hub-mcp.js +548 -0
- package/dist/mcp/context-hub-mcp.js.map +1 -0
- package/dist/telegram/voice.d.ts +146 -0
- package/dist/telegram/voice.d.ts.map +1 -0
- package/dist/telegram/voice.js +351 -0
- package/dist/telegram/voice.js.map +1 -0
- package/dist/types/skills.d.ts +44 -0
- package/dist/types/skills.d.ts.map +1 -0
- package/dist/types/skills.js +5 -0
- package/dist/types/skills.js.map +1 -0
- package/dist/ui/banner.d.ts +18 -0
- package/dist/ui/banner.d.ts.map +1 -0
- package/dist/ui/banner.js +323 -0
- package/dist/ui/banner.js.map +1 -0
- package/dist/ui/index.d.ts +8 -0
- package/dist/ui/index.d.ts.map +1 -0
- package/dist/ui/index.js +8 -0
- package/dist/ui/index.js.map +1 -0
- package/dist/ui/prompts.d.ts +52 -0
- package/dist/ui/prompts.d.ts.map +1 -0
- package/dist/ui/prompts.js +72 -0
- package/dist/ui/prompts.js.map +1 -0
- package/dist/ui/theme.d.ts +82 -0
- package/dist/ui/theme.d.ts.map +1 -0
- package/dist/ui/theme.js +142 -0
- package/dist/ui/theme.js.map +1 -0
- package/dist/utils/auth-guard.d.ts +66 -0
- package/dist/utils/auth-guard.d.ts.map +1 -0
- package/dist/utils/auth-guard.js +348 -0
- package/dist/utils/auth-guard.js.map +1 -0
- package/dist/utils/ensure-project.d.ts +11 -0
- package/dist/utils/ensure-project.d.ts.map +1 -0
- package/dist/utils/ensure-project.js +70 -0
- package/dist/utils/ensure-project.js.map +1 -0
- package/dist/utils/git.d.ts +73 -0
- package/dist/utils/git.d.ts.map +1 -0
- package/dist/utils/git.js +219 -0
- package/dist/utils/git.js.map +1 -0
- package/dist/utils/github-auth.d.ts +54 -0
- package/dist/utils/github-auth.d.ts.map +1 -0
- package/dist/utils/github-auth.js +375 -0
- package/dist/utils/github-auth.js.map +1 -0
- package/dist/utils/github-repo.d.ts +30 -0
- package/dist/utils/github-repo.d.ts.map +1 -0
- package/dist/utils/github-repo.js +219 -0
- package/dist/utils/github-repo.js.map +1 -0
- package/dist/utils/platform-auth.d.ts +81 -0
- package/dist/utils/platform-auth.d.ts.map +1 -0
- package/dist/utils/platform-auth.js +191 -0
- package/dist/utils/platform-auth.js.map +1 -0
- package/dist/utils/project-config.d.ts +43 -0
- package/dist/utils/project-config.d.ts.map +1 -0
- package/dist/utils/project-config.js +97 -0
- package/dist/utils/project-config.js.map +1 -0
- package/dist/utils/skill-registry.d.ts +49 -0
- package/dist/utils/skill-registry.d.ts.map +1 -0
- package/dist/utils/skill-registry.js +192 -0
- package/dist/utils/skill-registry.js.map +1 -0
- package/dist/utils/wallet.d.ts +62 -0
- package/dist/utils/wallet.d.ts.map +1 -0
- package/dist/utils/wallet.js +252 -0
- package/dist/utils/wallet.js.map +1 -0
- package/dist/utils/x402-client.d.ts +86 -0
- package/dist/utils/x402-client.d.ts.map +1 -0
- package/dist/utils/x402-client.js +265 -0
- package/dist/utils/x402-client.js.map +1 -0
- package/package.json +76 -0
- package/scripts/postinstall.js +116 -0
- package/scripts/test-onboarding.sh +121 -0
- package/scripts/voice-start.sh +128 -0
- package/scripts/voice-stop.sh +33 -0
- package/template/.claude/settings.json +92 -0
- package/template/.claude/skills/agent-browser/SKILL.md +116 -0
- package/template/.claude/skills/brand-architect/SKILL.md +240 -0
- package/template/.claude/skills/brand-architect/config.yaml +137 -0
- package/template/.claude/skills/campaign-hud/config.yaml +112 -0
- package/template/.claude/skills/content-creator/SKILL.md +294 -0
- package/template/.claude/skills/debug/MULTI_AGENT.md +360 -0
- package/template/.claude/skills/debug/SKILL.md +549 -0
- package/template/.claude/skills/fly-deploy/SKILL.md +676 -0
- package/template/.claude/skills/founder-video/SKILL.md +467 -0
- package/template/.claude/skills/hud/SKILL.md +157 -0
- package/template/.claude/skills/ralph-tui/SKILL.md +210 -0
- package/template/.claude/skills/react-best-practices/AGENTS.md +2249 -0
- package/template/.claude/skills/react-best-practices/README.md +123 -0
- package/template/.claude/skills/react-best-practices/SKILL.md +125 -0
- package/template/.claude/skills/react-best-practices/metadata.json +15 -0
- package/template/.claude/skills/react-best-practices/rules/_sections.md +46 -0
- package/template/.claude/skills/react-best-practices/rules/_template.md +28 -0
- package/template/.claude/skills/react-best-practices/rules/advanced-event-handler-refs.md +55 -0
- package/template/.claude/skills/react-best-practices/rules/advanced-use-latest.md +49 -0
- package/template/.claude/skills/react-best-practices/rules/async-api-routes.md +38 -0
- package/template/.claude/skills/react-best-practices/rules/async-defer-await.md +80 -0
- package/template/.claude/skills/react-best-practices/rules/async-dependencies.md +36 -0
- package/template/.claude/skills/react-best-practices/rules/async-parallel.md +28 -0
- package/template/.claude/skills/react-best-practices/rules/async-suspense-boundaries.md +99 -0
- package/template/.claude/skills/react-best-practices/rules/bundle-barrel-imports.md +59 -0
- package/template/.claude/skills/react-best-practices/rules/bundle-conditional.md +31 -0
- package/template/.claude/skills/react-best-practices/rules/bundle-defer-third-party.md +49 -0
- package/template/.claude/skills/react-best-practices/rules/bundle-dynamic-imports.md +35 -0
- package/template/.claude/skills/react-best-practices/rules/bundle-preload.md +50 -0
- package/template/.claude/skills/react-best-practices/rules/client-event-listeners.md +74 -0
- package/template/.claude/skills/react-best-practices/rules/client-swr-dedup.md +56 -0
- package/template/.claude/skills/react-best-practices/rules/js-batch-dom-css.md +82 -0
- package/template/.claude/skills/react-best-practices/rules/js-cache-function-results.md +80 -0
- package/template/.claude/skills/react-best-practices/rules/js-cache-property-access.md +28 -0
- package/template/.claude/skills/react-best-practices/rules/js-cache-storage.md +70 -0
- package/template/.claude/skills/react-best-practices/rules/js-combine-iterations.md +32 -0
- package/template/.claude/skills/react-best-practices/rules/js-early-exit.md +50 -0
- package/template/.claude/skills/react-best-practices/rules/js-hoist-regexp.md +45 -0
- package/template/.claude/skills/react-best-practices/rules/js-index-maps.md +37 -0
- package/template/.claude/skills/react-best-practices/rules/js-length-check-first.md +49 -0
- package/template/.claude/skills/react-best-practices/rules/js-min-max-loop.md +82 -0
- package/template/.claude/skills/react-best-practices/rules/js-set-map-lookups.md +24 -0
- package/template/.claude/skills/react-best-practices/rules/js-tosorted-immutable.md +57 -0
- package/template/.claude/skills/react-best-practices/rules/rendering-activity.md +26 -0
- package/template/.claude/skills/react-best-practices/rules/rendering-animate-svg-wrapper.md +47 -0
- package/template/.claude/skills/react-best-practices/rules/rendering-conditional-render.md +40 -0
- package/template/.claude/skills/react-best-practices/rules/rendering-content-visibility.md +38 -0
- package/template/.claude/skills/react-best-practices/rules/rendering-hoist-jsx.md +46 -0
- package/template/.claude/skills/react-best-practices/rules/rendering-hydration-no-flicker.md +82 -0
- package/template/.claude/skills/react-best-practices/rules/rendering-svg-precision.md +28 -0
- package/template/.claude/skills/react-best-practices/rules/rerender-defer-reads.md +39 -0
- package/template/.claude/skills/react-best-practices/rules/rerender-dependencies.md +45 -0
- package/template/.claude/skills/react-best-practices/rules/rerender-derived-state.md +29 -0
- package/template/.claude/skills/react-best-practices/rules/rerender-functional-setstate.md +74 -0
- package/template/.claude/skills/react-best-practices/rules/rerender-lazy-state-init.md +58 -0
- package/template/.claude/skills/react-best-practices/rules/rerender-memo.md +44 -0
- package/template/.claude/skills/react-best-practices/rules/rerender-transitions.md +40 -0
- package/template/.claude/skills/react-best-practices/rules/server-after-nonblocking.md +73 -0
- package/template/.claude/skills/react-best-practices/rules/server-cache-lru.md +41 -0
- package/template/.claude/skills/react-best-practices/rules/server-cache-react.md +26 -0
- package/template/.claude/skills/react-best-practices/rules/server-parallel-fetching.md +79 -0
- package/template/.claude/skills/react-best-practices/rules/server-serialization.md +38 -0
- package/template/.claude/skills/remotion-best-practices/SKILL.md +43 -0
- package/template/.claude/skills/remotion-best-practices/rules/3d.md +86 -0
- package/template/.claude/skills/remotion-best-practices/rules/animations.md +29 -0
- package/template/.claude/skills/remotion-best-practices/rules/assets/charts-bar-chart.tsx +173 -0
- package/template/.claude/skills/remotion-best-practices/rules/assets/text-animations-typewriter.tsx +100 -0
- package/template/.claude/skills/remotion-best-practices/rules/assets/text-animations-word-highlight.tsx +108 -0
- package/template/.claude/skills/remotion-best-practices/rules/assets.md +78 -0
- package/template/.claude/skills/remotion-best-practices/rules/audio.md +172 -0
- package/template/.claude/skills/remotion-best-practices/rules/calculate-metadata.md +104 -0
- package/template/.claude/skills/remotion-best-practices/rules/can-decode.md +75 -0
- package/template/.claude/skills/remotion-best-practices/rules/charts.md +58 -0
- package/template/.claude/skills/remotion-best-practices/rules/compositions.md +146 -0
- package/template/.claude/skills/remotion-best-practices/rules/display-captions.md +126 -0
- package/template/.claude/skills/remotion-best-practices/rules/extract-frames.md +229 -0
- package/template/.claude/skills/remotion-best-practices/rules/fonts.md +152 -0
- package/template/.claude/skills/remotion-best-practices/rules/get-audio-duration.md +58 -0
- package/template/.claude/skills/remotion-best-practices/rules/get-video-dimensions.md +68 -0
- package/template/.claude/skills/remotion-best-practices/rules/get-video-duration.md +58 -0
- package/template/.claude/skills/remotion-best-practices/rules/gifs.md +138 -0
- package/template/.claude/skills/remotion-best-practices/rules/images.md +130 -0
- package/template/.claude/skills/remotion-best-practices/rules/import-srt-captions.md +67 -0
- package/template/.claude/skills/remotion-best-practices/rules/lottie.md +68 -0
- package/template/.claude/skills/remotion-best-practices/rules/measuring-dom-nodes.md +35 -0
- package/template/.claude/skills/remotion-best-practices/rules/measuring-text.md +143 -0
- package/template/.claude/skills/remotion-best-practices/rules/sequencing.md +106 -0
- package/template/.claude/skills/remotion-best-practices/rules/tailwind.md +11 -0
- package/template/.claude/skills/remotion-best-practices/rules/text-animations.md +20 -0
- package/template/.claude/skills/remotion-best-practices/rules/timing.md +179 -0
- package/template/.claude/skills/remotion-best-practices/rules/transcribe-captions.md +19 -0
- package/template/.claude/skills/remotion-best-practices/rules/transitions.md +122 -0
- package/template/.claude/skills/remotion-best-practices/rules/trimming.md +53 -0
- package/template/.claude/skills/remotion-best-practices/rules/videos.md +171 -0
- package/template/.claude/skills/search/SKILL.md +220 -0
- package/template/.claude/skills/spec/SKILL.md +377 -0
- package/template/.claude/skills/startup/SKILL.md +310 -0
- package/template/.claude/skills/web-architect/SKILL.md +309 -0
- package/template/.claude/skills/x-algorithm/SKILL.md +305 -0
- package/template/.jfl/config.json +8 -0
- package/template/.mcp.json +11 -0
- package/template/CLAUDE.md +960 -0
- package/template/content/.gitkeep +0 -0
- package/template/context-hub +3 -0
- package/template/knowledge/BRAND_BRIEF.md +124 -0
- package/template/knowledge/BRAND_DECISIONS.md +168 -0
- package/template/knowledge/NARRATIVE.md +114 -0
- package/template/knowledge/ROADMAP.md +128 -0
- package/template/knowledge/THESIS.md +108 -0
- package/template/knowledge/VISION.md +74 -0
- package/template/knowledge/VOICE_AND_TONE.md +146 -0
- package/template/previews/.gitkeep +0 -0
- package/template/scripts/session/auto-commit.sh +245 -0
- package/template/scripts/session/auto-merge.sh +325 -0
- package/template/scripts/session/jfl-doctor.sh +587 -0
- package/template/scripts/session/session-end.sh +194 -0
- package/template/scripts/session/session-init.sh +163 -0
- package/template/scripts/session/session-sync.sh +167 -0
- package/template/scripts/session/test-context-preservation.sh +160 -0
- package/template/skills/agent-browser/SKILL.md +116 -0
- package/template/skills/brand-architect/SKILL.md +240 -0
- package/template/skills/brand-architect/config.yaml +137 -0
- package/template/skills/campaign-hud/config.yaml +112 -0
- package/template/skills/content-creator/SKILL.md +294 -0
- package/template/skills/debug/MULTI_AGENT.md +360 -0
- package/template/skills/debug/SKILL.md +549 -0
- package/template/skills/fly-deploy/SKILL.md +676 -0
- package/template/skills/founder-video/SKILL.md +467 -0
- package/template/skills/hud/SKILL.md +204 -0
- package/template/skills/ralph-tui/SKILL.md +210 -0
- package/template/skills/react-best-practices/AGENTS.md +2249 -0
- package/template/skills/react-best-practices/README.md +123 -0
- package/template/skills/react-best-practices/SKILL.md +125 -0
- package/template/skills/react-best-practices/metadata.json +15 -0
- package/template/skills/react-best-practices/rules/_sections.md +46 -0
- package/template/skills/react-best-practices/rules/_template.md +28 -0
- package/template/skills/react-best-practices/rules/advanced-event-handler-refs.md +55 -0
- package/template/skills/react-best-practices/rules/advanced-use-latest.md +49 -0
- package/template/skills/react-best-practices/rules/async-api-routes.md +38 -0
- package/template/skills/react-best-practices/rules/async-defer-await.md +80 -0
- package/template/skills/react-best-practices/rules/async-dependencies.md +36 -0
- package/template/skills/react-best-practices/rules/async-parallel.md +28 -0
- package/template/skills/react-best-practices/rules/async-suspense-boundaries.md +99 -0
- package/template/skills/react-best-practices/rules/bundle-barrel-imports.md +59 -0
- package/template/skills/react-best-practices/rules/bundle-conditional.md +31 -0
- package/template/skills/react-best-practices/rules/bundle-defer-third-party.md +49 -0
- package/template/skills/react-best-practices/rules/bundle-dynamic-imports.md +35 -0
- package/template/skills/react-best-practices/rules/bundle-preload.md +50 -0
- package/template/skills/react-best-practices/rules/client-event-listeners.md +74 -0
- package/template/skills/react-best-practices/rules/client-swr-dedup.md +56 -0
- package/template/skills/react-best-practices/rules/js-batch-dom-css.md +82 -0
- package/template/skills/react-best-practices/rules/js-cache-function-results.md +80 -0
- package/template/skills/react-best-practices/rules/js-cache-property-access.md +28 -0
- package/template/skills/react-best-practices/rules/js-cache-storage.md +70 -0
- package/template/skills/react-best-practices/rules/js-combine-iterations.md +32 -0
- package/template/skills/react-best-practices/rules/js-early-exit.md +50 -0
- package/template/skills/react-best-practices/rules/js-hoist-regexp.md +45 -0
- package/template/skills/react-best-practices/rules/js-index-maps.md +37 -0
- package/template/skills/react-best-practices/rules/js-length-check-first.md +49 -0
- package/template/skills/react-best-practices/rules/js-min-max-loop.md +82 -0
- package/template/skills/react-best-practices/rules/js-set-map-lookups.md +24 -0
- package/template/skills/react-best-practices/rules/js-tosorted-immutable.md +57 -0
- package/template/skills/react-best-practices/rules/rendering-activity.md +26 -0
- package/template/skills/react-best-practices/rules/rendering-animate-svg-wrapper.md +47 -0
- package/template/skills/react-best-practices/rules/rendering-conditional-render.md +40 -0
- package/template/skills/react-best-practices/rules/rendering-content-visibility.md +38 -0
- package/template/skills/react-best-practices/rules/rendering-hoist-jsx.md +46 -0
- package/template/skills/react-best-practices/rules/rendering-hydration-no-flicker.md +82 -0
- package/template/skills/react-best-practices/rules/rendering-svg-precision.md +28 -0
- package/template/skills/react-best-practices/rules/rerender-defer-reads.md +39 -0
- package/template/skills/react-best-practices/rules/rerender-dependencies.md +45 -0
- package/template/skills/react-best-practices/rules/rerender-derived-state.md +29 -0
- package/template/skills/react-best-practices/rules/rerender-functional-setstate.md +74 -0
- package/template/skills/react-best-practices/rules/rerender-lazy-state-init.md +58 -0
- package/template/skills/react-best-practices/rules/rerender-memo.md +44 -0
- package/template/skills/react-best-practices/rules/rerender-transitions.md +40 -0
- package/template/skills/react-best-practices/rules/server-after-nonblocking.md +73 -0
- package/template/skills/react-best-practices/rules/server-cache-lru.md +41 -0
- package/template/skills/react-best-practices/rules/server-cache-react.md +26 -0
- package/template/skills/react-best-practices/rules/server-parallel-fetching.md +79 -0
- package/template/skills/react-best-practices/rules/server-serialization.md +38 -0
- package/template/skills/remotion-best-practices/SKILL.md +43 -0
- package/template/skills/remotion-best-practices/rules/3d.md +86 -0
- package/template/skills/remotion-best-practices/rules/animations.md +29 -0
- package/template/skills/remotion-best-practices/rules/assets/charts-bar-chart.tsx +173 -0
- package/template/skills/remotion-best-practices/rules/assets/text-animations-typewriter.tsx +100 -0
- package/template/skills/remotion-best-practices/rules/assets/text-animations-word-highlight.tsx +108 -0
- package/template/skills/remotion-best-practices/rules/assets.md +78 -0
- package/template/skills/remotion-best-practices/rules/audio.md +172 -0
- package/template/skills/remotion-best-practices/rules/calculate-metadata.md +104 -0
- package/template/skills/remotion-best-practices/rules/can-decode.md +75 -0
- package/template/skills/remotion-best-practices/rules/charts.md +58 -0
- package/template/skills/remotion-best-practices/rules/compositions.md +146 -0
- package/template/skills/remotion-best-practices/rules/display-captions.md +126 -0
- package/template/skills/remotion-best-practices/rules/extract-frames.md +229 -0
- package/template/skills/remotion-best-practices/rules/fonts.md +152 -0
- package/template/skills/remotion-best-practices/rules/get-audio-duration.md +58 -0
- package/template/skills/remotion-best-practices/rules/get-video-dimensions.md +68 -0
- package/template/skills/remotion-best-practices/rules/get-video-duration.md +58 -0
- package/template/skills/remotion-best-practices/rules/gifs.md +138 -0
- package/template/skills/remotion-best-practices/rules/images.md +130 -0
- package/template/skills/remotion-best-practices/rules/import-srt-captions.md +67 -0
- package/template/skills/remotion-best-practices/rules/lottie.md +68 -0
- package/template/skills/remotion-best-practices/rules/measuring-dom-nodes.md +35 -0
- package/template/skills/remotion-best-practices/rules/measuring-text.md +143 -0
- package/template/skills/remotion-best-practices/rules/sequencing.md +106 -0
- package/template/skills/remotion-best-practices/rules/tailwind.md +11 -0
- package/template/skills/remotion-best-practices/rules/text-animations.md +20 -0
- package/template/skills/remotion-best-practices/rules/timing.md +179 -0
- package/template/skills/remotion-best-practices/rules/transcribe-captions.md +19 -0
- package/template/skills/remotion-best-practices/rules/transitions.md +122 -0
- package/template/skills/remotion-best-practices/rules/trimming.md +53 -0
- package/template/skills/remotion-best-practices/rules/videos.md +171 -0
- package/template/skills/search/SKILL.md +220 -0
- package/template/skills/spec/SKILL.md +377 -0
- package/template/skills/startup/SKILL.md +310 -0
- package/template/skills/web-architect/SKILL.md +309 -0
- package/template/skills/x-algorithm/SKILL.md +305 -0
- package/template/suggestions/.gitkeep +0 -0
- package/template/templates/QUICKSTART_SKILL_TO_PRODUCT.md +242 -0
- package/template/templates/brand/BRAND_BRIEF.md +124 -0
- package/template/templates/brand/BRAND_DECISIONS.md +168 -0
- package/template/templates/brand/BRAND_GUIDELINES.md +251 -0
- package/template/templates/brand/VOICE_AND_TONE.md +146 -0
- package/template/templates/brand/global.css +240 -0
- package/template/templates/collaboration/CONTRIBUTOR.md +74 -0
- package/template/templates/collaboration/CRM.md +97 -0
- package/template/templates/collaboration/TASKS.md +83 -0
- package/template/templates/strategic/NARRATIVE.md +114 -0
- package/template/templates/strategic/ROADMAP.md +128 -0
- package/template/templates/strategic/THESIS.md +108 -0
- package/template/templates/strategic/VISION.md +74 -0
|
File without changes
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
# Brand Brief
|
|
2
|
+
|
|
3
|
+
> Fill this out and save to `knowledge/BRAND_BRIEF.md`
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Identity
|
|
8
|
+
|
|
9
|
+
**Name:**
|
|
10
|
+
<!-- Your brand name -->
|
|
11
|
+
|
|
12
|
+
**Tagline:**
|
|
13
|
+
<!-- One line that captures what you do / your essence -->
|
|
14
|
+
|
|
15
|
+
**Domain:**
|
|
16
|
+
<!-- yourbrand.com -->
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
## What You Do
|
|
21
|
+
|
|
22
|
+
**One sentence:**
|
|
23
|
+
<!-- Explain what you do in one sentence -->
|
|
24
|
+
|
|
25
|
+
**For whom:**
|
|
26
|
+
<!-- Who is your primary audience? -->
|
|
27
|
+
|
|
28
|
+
**The problem you solve:**
|
|
29
|
+
<!-- What pain point do you address? -->
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
## Personality
|
|
34
|
+
|
|
35
|
+
**Values (pick 3-5):**
|
|
36
|
+
<!-- What does your brand stand for? -->
|
|
37
|
+
-
|
|
38
|
+
-
|
|
39
|
+
-
|
|
40
|
+
|
|
41
|
+
**Voice:**
|
|
42
|
+
<!-- How do you speak? Pick adjectives -->
|
|
43
|
+
<!-- Examples: casual, professional, playful, serious, technical, accessible -->
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
**Tone:**
|
|
47
|
+
<!-- What's the emotional register? -->
|
|
48
|
+
<!-- Examples: warm, cool, energetic, calm, provocative, reassuring -->
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
---
|
|
52
|
+
|
|
53
|
+
## Visual Direction
|
|
54
|
+
|
|
55
|
+
**Aesthetic:**
|
|
56
|
+
<!-- What visual style fits your brand? -->
|
|
57
|
+
<!-- Examples: terminal/hacker, minimal, bold, playful, corporate, editorial -->
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
**Inspiration:**
|
|
61
|
+
<!-- Brands you admire visually (doesn't have to be same industry) -->
|
|
62
|
+
-
|
|
63
|
+
-
|
|
64
|
+
-
|
|
65
|
+
|
|
66
|
+
**Avoid:**
|
|
67
|
+
<!-- Visual directions that feel wrong for your brand -->
|
|
68
|
+
-
|
|
69
|
+
|
|
70
|
+
---
|
|
71
|
+
|
|
72
|
+
## Technical Constraints
|
|
73
|
+
|
|
74
|
+
**Primary context:**
|
|
75
|
+
<!-- Where will your brand appear most? -->
|
|
76
|
+
<!-- Examples: web app, mobile app, CLI, social media, print -->
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
**Theme preference:**
|
|
80
|
+
<!-- Dark-first, light-first, or equal? -->
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
**Existing colors:**
|
|
84
|
+
<!-- Any colors you must use or want to incorporate? -->
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
---
|
|
88
|
+
|
|
89
|
+
## Mark Preferences
|
|
90
|
+
|
|
91
|
+
**Type preference:**
|
|
92
|
+
<!-- What kind of mark appeals to you? -->
|
|
93
|
+
<!-- Options: symbol, lettermark, wordmark, icon, abstract, combination -->
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
**Complexity:**
|
|
97
|
+
<!-- Minimal (works at 16px) vs detailed (needs larger sizes) -->
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
**Keywords for the mark:**
|
|
101
|
+
<!-- Words that should inform the mark design -->
|
|
102
|
+
-
|
|
103
|
+
-
|
|
104
|
+
-
|
|
105
|
+
|
|
106
|
+
---
|
|
107
|
+
|
|
108
|
+
## Examples of What You Like
|
|
109
|
+
|
|
110
|
+
<!-- Paste URLs or describe marks/brands you like visually -->
|
|
111
|
+
|
|
112
|
+
1.
|
|
113
|
+
|
|
114
|
+
2.
|
|
115
|
+
|
|
116
|
+
3.
|
|
117
|
+
|
|
118
|
+
---
|
|
119
|
+
|
|
120
|
+
## Anything Else
|
|
121
|
+
|
|
122
|
+
<!-- Any other context that would help -->
|
|
123
|
+
|
|
124
|
+
|
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
# Brand Decisions
|
|
2
|
+
|
|
3
|
+
> This file gets filled in as you make selections during the brand architect workflow.
|
|
4
|
+
>
|
|
5
|
+
> Last updated: {date}
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Quick Reference
|
|
10
|
+
|
|
11
|
+
| Decision | Value |
|
|
12
|
+
|----------|-------|
|
|
13
|
+
| **Primary Mark** | {not selected} |
|
|
14
|
+
| **Default Theme** | {dark / light} |
|
|
15
|
+
| **Primary Accent** | {color} |
|
|
16
|
+
| **Typography** | {font stack} |
|
|
17
|
+
| **Tagline** | "{tagline}" |
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## THE MARK
|
|
22
|
+
|
|
23
|
+
### Selected Mark
|
|
24
|
+
- **File:** `{filename}`
|
|
25
|
+
- **Description:** {what it represents}
|
|
26
|
+
- **Why chosen:** {rationale}
|
|
27
|
+
|
|
28
|
+
### Mark Variants
|
|
29
|
+
|
|
30
|
+
| Context | Mark | File | Notes |
|
|
31
|
+
|---------|------|------|-------|
|
|
32
|
+
| Favicon (16-48px) | | | |
|
|
33
|
+
| Icon (80-160px) | | | |
|
|
34
|
+
| PFP (400px) | | | |
|
|
35
|
+
| Banner | | | |
|
|
36
|
+
| Hero | | | |
|
|
37
|
+
|
|
38
|
+
### Mark Files
|
|
39
|
+
|
|
40
|
+
**SVG:**
|
|
41
|
+
| File | Use |
|
|
42
|
+
|------|-----|
|
|
43
|
+
| `mark-{version}-transparent.svg` | Base mark |
|
|
44
|
+
| `mark-{version}-{size}-dark.svg` | Dark mode |
|
|
45
|
+
| `mark-{version}-{size}-light.svg` | Light mode |
|
|
46
|
+
|
|
47
|
+
### Usage Rules
|
|
48
|
+
- {Any rules about when to use what}
|
|
49
|
+
- {Spacing requirements}
|
|
50
|
+
- {What not to do}
|
|
51
|
+
|
|
52
|
+
---
|
|
53
|
+
|
|
54
|
+
## COLORS
|
|
55
|
+
|
|
56
|
+
### Dark Mode (Default)
|
|
57
|
+
```css
|
|
58
|
+
--brand-bg: #000000;
|
|
59
|
+
--brand-fg: #FFFFFF;
|
|
60
|
+
--brand-accent: {accent};
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
### Light Mode
|
|
64
|
+
```css
|
|
65
|
+
--brand-bg: #FFFFFF;
|
|
66
|
+
--brand-fg: #000000;
|
|
67
|
+
--brand-accent: {accent-light};
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
### Full Palette
|
|
71
|
+
| Token | Dark | Light | Use |
|
|
72
|
+
|-------|------|-------|-----|
|
|
73
|
+
| Background | | | Main bg |
|
|
74
|
+
| Foreground | | | Text |
|
|
75
|
+
| Accent | | | CTAs, highlights |
|
|
76
|
+
| Success | | | Positive states |
|
|
77
|
+
| Error | | | Errors |
|
|
78
|
+
| Warning | | | Warnings |
|
|
79
|
+
| Muted | | | Secondary text |
|
|
80
|
+
|
|
81
|
+
---
|
|
82
|
+
|
|
83
|
+
## TYPOGRAPHY
|
|
84
|
+
|
|
85
|
+
### Font Stack
|
|
86
|
+
```css
|
|
87
|
+
font-family: {stack};
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
### Weights
|
|
91
|
+
- **Body:** {weight}
|
|
92
|
+
- **Headings:** {weight}
|
|
93
|
+
- **Emphasis:** {weight}
|
|
94
|
+
|
|
95
|
+
### Sizes
|
|
96
|
+
| Use | Size |
|
|
97
|
+
|-----|------|
|
|
98
|
+
| Body | |
|
|
99
|
+
| H1 | |
|
|
100
|
+
| H2 | |
|
|
101
|
+
| Small | |
|
|
102
|
+
|
|
103
|
+
### Style Notes
|
|
104
|
+
- {Preferences: lowercase, uppercase, sentence case}
|
|
105
|
+
- {Letter spacing}
|
|
106
|
+
- {Line height}
|
|
107
|
+
|
|
108
|
+
---
|
|
109
|
+
|
|
110
|
+
## SOCIAL ASSETS
|
|
111
|
+
|
|
112
|
+
### Twitter Banner
|
|
113
|
+
| Size | Dark | Light |
|
|
114
|
+
|------|------|-------|
|
|
115
|
+
| Small | `banner-sm-1500x500-dark.svg` | |
|
|
116
|
+
| Medium | `banner-md-1500x500-dark.svg` | |
|
|
117
|
+
| Large | `banner-lg-1500x500-dark.svg` | |
|
|
118
|
+
| X-Large | `banner-xl-1500x500-dark.svg` | |
|
|
119
|
+
|
|
120
|
+
### OG Images
|
|
121
|
+
| Variant | File | Use |
|
|
122
|
+
|---------|------|-----|
|
|
123
|
+
| Default | `og-default-1200x630-dark.svg` | Homepage |
|
|
124
|
+
| Tagline | `og-tagline-1200x630-dark.svg` | Marketing |
|
|
125
|
+
|
|
126
|
+
### PFP
|
|
127
|
+
| Platform | File |
|
|
128
|
+
|----------|------|
|
|
129
|
+
| Twitter | `pfp-400-dark.svg` |
|
|
130
|
+
|
|
131
|
+
---
|
|
132
|
+
|
|
133
|
+
## FAVICONS
|
|
134
|
+
|
|
135
|
+
| Size | File | Use |
|
|
136
|
+
|------|------|-----|
|
|
137
|
+
| 16px | `favicon-16.png` | Browser tab |
|
|
138
|
+
| 32px | `favicon-32.png` | Browser tab @2x |
|
|
139
|
+
| 48px | `favicon-48.png` | Windows |
|
|
140
|
+
| 96px | `favicon-96.png` | Android Chrome |
|
|
141
|
+
| 180px | `favicon-180.png` | Apple Touch |
|
|
142
|
+
| 192px | `favicon-192.png` | Android Chrome |
|
|
143
|
+
| 512px | `favicon-512.png` | PWA |
|
|
144
|
+
|
|
145
|
+
---
|
|
146
|
+
|
|
147
|
+
## DO NOT USE
|
|
148
|
+
|
|
149
|
+
- {Deprecated marks}
|
|
150
|
+
- {Retired colors}
|
|
151
|
+
- {Old assets}
|
|
152
|
+
|
|
153
|
+
---
|
|
154
|
+
|
|
155
|
+
## FOR IMPLEMENTERS
|
|
156
|
+
|
|
157
|
+
When implementing this brand:
|
|
158
|
+
|
|
159
|
+
1. Use marks from `outputs/svg/mark/`
|
|
160
|
+
2. Use social assets from `outputs/svg/social/`
|
|
161
|
+
3. Reference this file for all decisions
|
|
162
|
+
4. Check `outputs/css/global.css` for CSS tokens
|
|
163
|
+
|
|
164
|
+
---
|
|
165
|
+
|
|
166
|
+
```
|
|
167
|
+
{mark preview here}
|
|
168
|
+
```
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
# Narrative
|
|
2
|
+
|
|
3
|
+
> Copy to `knowledge/NARRATIVE.md` and fill out.
|
|
4
|
+
> How you tell the story - from elevator pitch to deep dive.
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
## The Narrative Stack
|
|
9
|
+
|
|
10
|
+
Different depths for different contexts:
|
|
11
|
+
|
|
12
|
+
### 1. Tagline (5 words)
|
|
13
|
+
<!-- The bumper sticker -->
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### 2. Tweet (280 chars)
|
|
17
|
+
<!-- One tweet explanation -->
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### 3. Elevator Pitch (30 seconds)
|
|
21
|
+
<!-- Verbal explanation to a stranger -->
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
### 4. One-Pager (2 minutes read)
|
|
25
|
+
<!-- Written overview with key points -->
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### 5. Full Story (10 minutes)
|
|
29
|
+
<!-- Complete narrative arc -->
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
---
|
|
33
|
+
|
|
34
|
+
## Story Arc
|
|
35
|
+
|
|
36
|
+
### The Setup (Problem)
|
|
37
|
+
<!-- Set the stage - what's wrong with the world? -->
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
### The Shift (Insight)
|
|
41
|
+
<!-- The key realization that changes everything -->
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
### The Solution (Product)
|
|
45
|
+
<!-- How you address the problem with this insight -->
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
### The Stakes (Why Now)
|
|
49
|
+
<!-- Why this matters now, what happens if we don't act -->
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
### The Invitation (CTA)
|
|
53
|
+
<!-- What you want them to do -->
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
---
|
|
57
|
+
|
|
58
|
+
## Audience-Specific Narratives
|
|
59
|
+
|
|
60
|
+
### For Developers
|
|
61
|
+
<!-- Technical angle, implementation focus -->
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
### For Business/Investors
|
|
65
|
+
<!-- Value creation, market opportunity -->
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
### For End Users
|
|
69
|
+
<!-- Benefits, outcomes, simplicity -->
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
### For Media
|
|
73
|
+
<!-- Newsworthy angle, trend connection -->
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
---
|
|
77
|
+
|
|
78
|
+
## Key Messages
|
|
79
|
+
|
|
80
|
+
### Must Always Say
|
|
81
|
+
<!-- Core truths that must be in every communication -->
|
|
82
|
+
-
|
|
83
|
+
-
|
|
84
|
+
-
|
|
85
|
+
|
|
86
|
+
### Never Say
|
|
87
|
+
<!-- Things to avoid -->
|
|
88
|
+
-
|
|
89
|
+
-
|
|
90
|
+
-
|
|
91
|
+
|
|
92
|
+
### Proof Points
|
|
93
|
+
<!-- Evidence that backs up claims -->
|
|
94
|
+
-
|
|
95
|
+
-
|
|
96
|
+
-
|
|
97
|
+
|
|
98
|
+
---
|
|
99
|
+
|
|
100
|
+
## Analogies That Work
|
|
101
|
+
|
|
102
|
+
| Concept | Analogy |
|
|
103
|
+
|---------|---------|
|
|
104
|
+
| {your concept} | "It's like {familiar thing} for {new context}" |
|
|
105
|
+
|
|
106
|
+
---
|
|
107
|
+
|
|
108
|
+
## Objections & Responses
|
|
109
|
+
|
|
110
|
+
| Objection | Response |
|
|
111
|
+
|-----------|----------|
|
|
112
|
+
| "Why not just..." | {response} |
|
|
113
|
+
| "Isn't this like..." | {response} |
|
|
114
|
+
| "What about..." | {response} |
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
# Roadmap
|
|
2
|
+
|
|
3
|
+
> Copy to `knowledge/ROADMAP.md` and fill out.
|
|
4
|
+
> What ships when.
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
## Launch Date
|
|
9
|
+
|
|
10
|
+
**Target:** {date}
|
|
11
|
+
|
|
12
|
+
**What's shipping:**
|
|
13
|
+
<!-- The core deliverables for launch -->
|
|
14
|
+
-
|
|
15
|
+
-
|
|
16
|
+
-
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
## Current Phase
|
|
21
|
+
|
|
22
|
+
```
|
|
23
|
+
[ ] Phase 1: {name}
|
|
24
|
+
└─ {description}
|
|
25
|
+
|
|
26
|
+
[ ] Phase 2: {name}
|
|
27
|
+
└─ {description}
|
|
28
|
+
|
|
29
|
+
[ ] Phase 3: {name}
|
|
30
|
+
└─ {description}
|
|
31
|
+
|
|
32
|
+
[ ] Launch
|
|
33
|
+
└─ {what launch means}
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
---
|
|
37
|
+
|
|
38
|
+
## Milestones
|
|
39
|
+
|
|
40
|
+
### Pre-Launch
|
|
41
|
+
|
|
42
|
+
| Week | Focus | Deliverables |
|
|
43
|
+
|------|-------|--------------|
|
|
44
|
+
| -4 | | |
|
|
45
|
+
| -3 | | |
|
|
46
|
+
| -2 | | |
|
|
47
|
+
| -1 | | |
|
|
48
|
+
|
|
49
|
+
### Launch Week
|
|
50
|
+
|
|
51
|
+
| Day | Activity |
|
|
52
|
+
|-----|----------|
|
|
53
|
+
| Mon | |
|
|
54
|
+
| Tue | |
|
|
55
|
+
| Wed | |
|
|
56
|
+
| Thu | |
|
|
57
|
+
| Fri | |
|
|
58
|
+
|
|
59
|
+
### Post-Launch
|
|
60
|
+
|
|
61
|
+
| Week | Focus |
|
|
62
|
+
|------|-------|
|
|
63
|
+
| +1 | |
|
|
64
|
+
| +2 | |
|
|
65
|
+
| +4 | |
|
|
66
|
+
|
|
67
|
+
---
|
|
68
|
+
|
|
69
|
+
## Dependencies
|
|
70
|
+
|
|
71
|
+
### Blockers
|
|
72
|
+
<!-- What must happen before we can proceed -->
|
|
73
|
+
-
|
|
74
|
+
|
|
75
|
+
### External Dependencies
|
|
76
|
+
<!-- Things outside our control -->
|
|
77
|
+
-
|
|
78
|
+
|
|
79
|
+
### Internal Dependencies
|
|
80
|
+
<!-- Things we need to complete first -->
|
|
81
|
+
-
|
|
82
|
+
|
|
83
|
+
---
|
|
84
|
+
|
|
85
|
+
## Success Metrics
|
|
86
|
+
|
|
87
|
+
### Launch Day Goals
|
|
88
|
+
| Metric | Target |
|
|
89
|
+
|--------|--------|
|
|
90
|
+
| | |
|
|
91
|
+
| | |
|
|
92
|
+
| | |
|
|
93
|
+
|
|
94
|
+
### 30-Day Goals
|
|
95
|
+
| Metric | Target |
|
|
96
|
+
|--------|--------|
|
|
97
|
+
| | |
|
|
98
|
+
| | |
|
|
99
|
+
|
|
100
|
+
### 90-Day Goals
|
|
101
|
+
| Metric | Target |
|
|
102
|
+
|--------|--------|
|
|
103
|
+
| | |
|
|
104
|
+
| | |
|
|
105
|
+
|
|
106
|
+
---
|
|
107
|
+
|
|
108
|
+
## Team Assignments
|
|
109
|
+
|
|
110
|
+
| Area | Owner | Status |
|
|
111
|
+
|------|-------|--------|
|
|
112
|
+
| Product | | |
|
|
113
|
+
| Marketing | | |
|
|
114
|
+
| Content | | |
|
|
115
|
+
| Design | | |
|
|
116
|
+
| Dev | | |
|
|
117
|
+
|
|
118
|
+
---
|
|
119
|
+
|
|
120
|
+
## Updates Log
|
|
121
|
+
|
|
122
|
+
<!-- Reverse chronological - newest first -->
|
|
123
|
+
|
|
124
|
+
### {date}
|
|
125
|
+
- {update}
|
|
126
|
+
|
|
127
|
+
### {date}
|
|
128
|
+
- {update}
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
# Thesis
|
|
2
|
+
|
|
3
|
+
> Copy to `knowledge/THESIS.md` and fill out.
|
|
4
|
+
> Why this wins - the investment/value case.
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
## The Core Thesis
|
|
9
|
+
|
|
10
|
+
**In one paragraph, why will this succeed:**
|
|
11
|
+
<!-- The fundamental bet you're making -->
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
## Market Opportunity
|
|
17
|
+
|
|
18
|
+
### Total Addressable Market (TAM)
|
|
19
|
+
<!-- The full market if you captured everything -->
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Serviceable Market (SAM)
|
|
23
|
+
<!-- The realistic portion you could serve -->
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### Initial Target (SOM)
|
|
27
|
+
<!-- What you're going after first -->
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
---
|
|
31
|
+
|
|
32
|
+
## Competitive Landscape
|
|
33
|
+
|
|
34
|
+
### Direct Competitors
|
|
35
|
+
| Competitor | What They Do | How You're Different |
|
|
36
|
+
|------------|--------------|---------------------|
|
|
37
|
+
| | | |
|
|
38
|
+
|
|
39
|
+
### Indirect Competitors
|
|
40
|
+
| Alternative | Why People Use It | Why You Win |
|
|
41
|
+
|-------------|-------------------|-------------|
|
|
42
|
+
| | | |
|
|
43
|
+
|
|
44
|
+
---
|
|
45
|
+
|
|
46
|
+
## Moats & Defensibility
|
|
47
|
+
|
|
48
|
+
### What makes you hard to copy:
|
|
49
|
+
<!-- Technical moat, network effects, data advantages, etc. -->
|
|
50
|
+
-
|
|
51
|
+
-
|
|
52
|
+
-
|
|
53
|
+
|
|
54
|
+
### What gets stronger with scale:
|
|
55
|
+
<!-- Flywheel effects, compounding advantages -->
|
|
56
|
+
-
|
|
57
|
+
-
|
|
58
|
+
-
|
|
59
|
+
|
|
60
|
+
---
|
|
61
|
+
|
|
62
|
+
## Business Model
|
|
63
|
+
|
|
64
|
+
### How You Make Money
|
|
65
|
+
<!-- Revenue streams -->
|
|
66
|
+
-
|
|
67
|
+
-
|
|
68
|
+
-
|
|
69
|
+
|
|
70
|
+
### Unit Economics
|
|
71
|
+
| Metric | Value |
|
|
72
|
+
|--------|-------|
|
|
73
|
+
| CAC | |
|
|
74
|
+
| LTV | |
|
|
75
|
+
| Payback | |
|
|
76
|
+
|
|
77
|
+
### Path to Profitability
|
|
78
|
+
<!-- When and how you become profitable -->
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
---
|
|
82
|
+
|
|
83
|
+
## Risks & Mitigations
|
|
84
|
+
|
|
85
|
+
| Risk | Likelihood | Impact | Mitigation |
|
|
86
|
+
|------|------------|--------|------------|
|
|
87
|
+
| | | | |
|
|
88
|
+
| | | | |
|
|
89
|
+
|
|
90
|
+
---
|
|
91
|
+
|
|
92
|
+
## Why This Team
|
|
93
|
+
|
|
94
|
+
<!-- What makes you uniquely qualified to win this -->
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
---
|
|
98
|
+
|
|
99
|
+
## The Ask
|
|
100
|
+
|
|
101
|
+
**What you need to succeed:**
|
|
102
|
+
<!-- Investment, partnerships, hires, etc. -->
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
**What success looks like in:**
|
|
106
|
+
- 6 months:
|
|
107
|
+
- 12 months:
|
|
108
|
+
- 24 months:
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
# Vision
|
|
2
|
+
|
|
3
|
+
> Copy to `knowledge/VISION.md` and fill out.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## The One-Liner
|
|
8
|
+
|
|
9
|
+
**What you're building in one sentence:**
|
|
10
|
+
<!-- Example: "The operating system for autonomous AI agents" -->
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
## The Problem
|
|
16
|
+
|
|
17
|
+
**What's broken today:**
|
|
18
|
+
<!-- What pain exists? Why hasn't this been solved? -->
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
**Who feels this pain:**
|
|
22
|
+
<!-- Be specific about your audience -->
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
## The Solution
|
|
28
|
+
|
|
29
|
+
**What you're building:**
|
|
30
|
+
<!-- Your product/service in plain terms -->
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
**Why this works:**
|
|
34
|
+
<!-- What makes your approach right? -->
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
|
|
39
|
+
## The Shift
|
|
40
|
+
|
|
41
|
+
**Before (status quo):**
|
|
42
|
+
<!-- How things work today -->
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
**After (your world):**
|
|
46
|
+
<!-- How things work with your solution -->
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
---
|
|
50
|
+
|
|
51
|
+
## Why Now
|
|
52
|
+
|
|
53
|
+
**What changed that makes this possible/urgent:**
|
|
54
|
+
<!-- New technology? Market shift? Regulatory change? -->
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
---
|
|
58
|
+
|
|
59
|
+
## The End State
|
|
60
|
+
|
|
61
|
+
**Where this is going (3-5 years out):**
|
|
62
|
+
<!-- The big vision - what does success look like? -->
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
---
|
|
66
|
+
|
|
67
|
+
## Quick Reference
|
|
68
|
+
|
|
69
|
+
| Question | Answer |
|
|
70
|
+
|----------|--------|
|
|
71
|
+
| What do you do? | {one sentence} |
|
|
72
|
+
| For whom? | {audience} |
|
|
73
|
+
| Why does it matter? | {core insight} |
|
|
74
|
+
| Why will you win? | {unfair advantage} |
|