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
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
# Brand Architect Skill Configuration
|
|
2
|
+
|
|
3
|
+
skill:
|
|
4
|
+
id: brand-architect
|
|
5
|
+
version: 1.0.0
|
|
6
|
+
creator: "@402goose"
|
|
7
|
+
type: internal-workflow
|
|
8
|
+
|
|
9
|
+
description: |
|
|
10
|
+
Generate brand identity options from brief - marks, colors, typography.
|
|
11
|
+
|
|
12
|
+
Creates complete brand identity systems including:
|
|
13
|
+
- SVG mark/logo options
|
|
14
|
+
- Color palettes (dark/light modes)
|
|
15
|
+
- Typography recommendations
|
|
16
|
+
- Mark + text compositions
|
|
17
|
+
- Preview files for decision-making
|
|
18
|
+
|
|
19
|
+
Guides through selection process and records final decisions.
|
|
20
|
+
|
|
21
|
+
pricing:
|
|
22
|
+
base: 0.00
|
|
23
|
+
referral_pct: 0.00
|
|
24
|
+
currency: USD
|
|
25
|
+
|
|
26
|
+
models:
|
|
27
|
+
required:
|
|
28
|
+
- claude-sonnet
|
|
29
|
+
optional:
|
|
30
|
+
- claude-opus
|
|
31
|
+
default: claude-sonnet
|
|
32
|
+
|
|
33
|
+
triggers:
|
|
34
|
+
cli:
|
|
35
|
+
- "/brand-architect"
|
|
36
|
+
patterns:
|
|
37
|
+
- "create a brand"
|
|
38
|
+
- "generate logo options"
|
|
39
|
+
- "design color palette"
|
|
40
|
+
- "design brand identity"
|
|
41
|
+
|
|
42
|
+
inputs:
|
|
43
|
+
required: []
|
|
44
|
+
optional:
|
|
45
|
+
- name: component
|
|
46
|
+
type: string
|
|
47
|
+
default: "full"
|
|
48
|
+
description: "Component to generate: full, marks, colors, typography, compositions, review, or decide"
|
|
49
|
+
|
|
50
|
+
outputs:
|
|
51
|
+
primary:
|
|
52
|
+
- name: brand_options
|
|
53
|
+
type: svg
|
|
54
|
+
path: previews/brand/
|
|
55
|
+
description: SVG brand mark options
|
|
56
|
+
|
|
57
|
+
secondary:
|
|
58
|
+
- name: color_palettes
|
|
59
|
+
type: markdown
|
|
60
|
+
path: previews/brand/colors.md
|
|
61
|
+
description: Color palette options
|
|
62
|
+
|
|
63
|
+
- name: typography_recommendations
|
|
64
|
+
type: markdown
|
|
65
|
+
path: previews/brand/typography.md
|
|
66
|
+
description: Typography stack suggestions
|
|
67
|
+
|
|
68
|
+
- name: preview_files
|
|
69
|
+
type: file
|
|
70
|
+
path: previews/brand/*.html
|
|
71
|
+
description: Interactive preview files
|
|
72
|
+
|
|
73
|
+
execution:
|
|
74
|
+
timeout: 120000
|
|
75
|
+
streaming: true
|
|
76
|
+
retries: 0
|
|
77
|
+
async: false
|
|
78
|
+
|
|
79
|
+
context_files:
|
|
80
|
+
required:
|
|
81
|
+
- knowledge/BRAND_BRIEF.md
|
|
82
|
+
optional:
|
|
83
|
+
- knowledge/VISION.md
|
|
84
|
+
- knowledge/NARRATIVE.md
|
|
85
|
+
- knowledge/BRAND_DECISIONS.md
|
|
86
|
+
|
|
87
|
+
validation:
|
|
88
|
+
- check: brand_brief_exists
|
|
89
|
+
rule: "BRAND_BRIEF.md must exist with required fields"
|
|
90
|
+
|
|
91
|
+
- check: valid_svg_output
|
|
92
|
+
rule: "Generated SVGs must be valid and well-formed"
|
|
93
|
+
|
|
94
|
+
- check: color_accessibility
|
|
95
|
+
rule: "Color palettes should meet WCAG contrast requirements"
|
|
96
|
+
|
|
97
|
+
dependencies:
|
|
98
|
+
skills:
|
|
99
|
+
- web-architect
|
|
100
|
+
tools: []
|
|
101
|
+
mcp_servers: []
|
|
102
|
+
|
|
103
|
+
metadata:
|
|
104
|
+
category: brand
|
|
105
|
+
tags:
|
|
106
|
+
- brand
|
|
107
|
+
- design
|
|
108
|
+
- identity
|
|
109
|
+
- logo
|
|
110
|
+
- colors
|
|
111
|
+
- typography
|
|
112
|
+
license: MIT
|
|
113
|
+
repository: https://github.com/402goose/just-fucking-launch
|
|
114
|
+
documentation: https://github.com/402goose/just-fucking-launch/blob/main/skills/brand-architect/SKILL.md
|
|
115
|
+
|
|
116
|
+
compatibility:
|
|
117
|
+
min_claude_code_version: "1.0.0"
|
|
118
|
+
platforms:
|
|
119
|
+
- darwin
|
|
120
|
+
- linux
|
|
121
|
+
- win32
|
|
122
|
+
|
|
123
|
+
examples:
|
|
124
|
+
- name: full_workflow
|
|
125
|
+
input:
|
|
126
|
+
component: "full"
|
|
127
|
+
expected_output_path: null
|
|
128
|
+
|
|
129
|
+
- name: marks_only
|
|
130
|
+
input:
|
|
131
|
+
component: "marks"
|
|
132
|
+
expected_output_path: null
|
|
133
|
+
|
|
134
|
+
- name: colors_only
|
|
135
|
+
input:
|
|
136
|
+
component: "colors"
|
|
137
|
+
expected_output_path: null
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
# Campaign HUD Skill Configuration
|
|
2
|
+
|
|
3
|
+
skill:
|
|
4
|
+
id: campaign-hud
|
|
5
|
+
version: 1.0.0
|
|
6
|
+
creator: "@402goose"
|
|
7
|
+
type: internal-workflow
|
|
8
|
+
|
|
9
|
+
description: |
|
|
10
|
+
Display campaign status dashboard with countdown, phases, and tasks.
|
|
11
|
+
|
|
12
|
+
Shows at-a-glance view of:
|
|
13
|
+
- Days until launch
|
|
14
|
+
- Current phase and progress
|
|
15
|
+
- This week's priorities
|
|
16
|
+
- User's assigned tasks
|
|
17
|
+
- Key metrics
|
|
18
|
+
|
|
19
|
+
Essential for maintaining campaign momentum and visibility.
|
|
20
|
+
|
|
21
|
+
pricing:
|
|
22
|
+
base: 0.00
|
|
23
|
+
referral_pct: 0.00
|
|
24
|
+
currency: USD
|
|
25
|
+
|
|
26
|
+
models:
|
|
27
|
+
required:
|
|
28
|
+
- claude-sonnet
|
|
29
|
+
optional: []
|
|
30
|
+
default: claude-sonnet
|
|
31
|
+
|
|
32
|
+
triggers:
|
|
33
|
+
cli:
|
|
34
|
+
- "/hud"
|
|
35
|
+
patterns:
|
|
36
|
+
- "show me the dashboard"
|
|
37
|
+
- "how many days until launch"
|
|
38
|
+
- "what's the status"
|
|
39
|
+
- "show campaign status"
|
|
40
|
+
|
|
41
|
+
inputs:
|
|
42
|
+
required: []
|
|
43
|
+
optional:
|
|
44
|
+
- name: mode
|
|
45
|
+
type: string
|
|
46
|
+
default: "full"
|
|
47
|
+
description: "Display mode: full, compact, tasks, or metrics"
|
|
48
|
+
|
|
49
|
+
outputs:
|
|
50
|
+
primary:
|
|
51
|
+
- name: dashboard
|
|
52
|
+
type: markdown
|
|
53
|
+
path: stdout
|
|
54
|
+
description: Formatted campaign dashboard
|
|
55
|
+
|
|
56
|
+
secondary: []
|
|
57
|
+
|
|
58
|
+
execution:
|
|
59
|
+
timeout: 30000
|
|
60
|
+
streaming: true
|
|
61
|
+
retries: 0
|
|
62
|
+
async: false
|
|
63
|
+
|
|
64
|
+
context_files:
|
|
65
|
+
required:
|
|
66
|
+
- knowledge/ROADMAP.md
|
|
67
|
+
optional:
|
|
68
|
+
- knowledge/TASKS.md
|
|
69
|
+
- templates/collaboration/TASKS.md
|
|
70
|
+
- suggestions/*.md
|
|
71
|
+
|
|
72
|
+
validation:
|
|
73
|
+
- check: roadmap_exists
|
|
74
|
+
rule: "ROADMAP.md must exist with launch date"
|
|
75
|
+
|
|
76
|
+
- check: date_format
|
|
77
|
+
rule: "Launch date must be parseable"
|
|
78
|
+
|
|
79
|
+
dependencies:
|
|
80
|
+
skills: []
|
|
81
|
+
tools:
|
|
82
|
+
- git
|
|
83
|
+
mcp_servers: []
|
|
84
|
+
|
|
85
|
+
metadata:
|
|
86
|
+
category: strategy
|
|
87
|
+
tags:
|
|
88
|
+
- dashboard
|
|
89
|
+
- campaign
|
|
90
|
+
- status
|
|
91
|
+
- tracking
|
|
92
|
+
license: MIT
|
|
93
|
+
repository: https://github.com/402goose/just-fucking-launch
|
|
94
|
+
documentation: https://github.com/402goose/just-fucking-launch/blob/main/skills/campaign-hud/SKILL.md
|
|
95
|
+
|
|
96
|
+
compatibility:
|
|
97
|
+
min_claude_code_version: "1.0.0"
|
|
98
|
+
platforms:
|
|
99
|
+
- darwin
|
|
100
|
+
- linux
|
|
101
|
+
- win32
|
|
102
|
+
|
|
103
|
+
examples:
|
|
104
|
+
- name: full_dashboard
|
|
105
|
+
input:
|
|
106
|
+
mode: "full"
|
|
107
|
+
expected_output_path: null
|
|
108
|
+
|
|
109
|
+
- name: compact_mode
|
|
110
|
+
input:
|
|
111
|
+
mode: "compact"
|
|
112
|
+
expected_output_path: null
|
|
@@ -0,0 +1,294 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: content-creator
|
|
3
|
+
description: Generate social content with brand voice - threads, posts, articles, announcements
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Content Creator Skill
|
|
7
|
+
|
|
8
|
+
Generate on-brand content for social media and marketing.
|
|
9
|
+
|
|
10
|
+
## Capabilities
|
|
11
|
+
|
|
12
|
+
- Twitter threads with preview
|
|
13
|
+
- Single posts/tweets
|
|
14
|
+
- Launch announcements
|
|
15
|
+
- Article drafts
|
|
16
|
+
- One-pagers and briefs
|
|
17
|
+
- Deck content
|
|
18
|
+
- Print-ready exports (PDF)
|
|
19
|
+
|
|
20
|
+
## Input Requirements
|
|
21
|
+
|
|
22
|
+
Requires:
|
|
23
|
+
- `knowledge/BRAND_BRIEF.md` - Brand identity
|
|
24
|
+
- `knowledge/VOICE_AND_TONE.md` - How to speak (optional)
|
|
25
|
+
- `knowledge/BRAND_DECISIONS.md` - Visual identity (for previews)
|
|
26
|
+
|
|
27
|
+
## Commands
|
|
28
|
+
|
|
29
|
+
```
|
|
30
|
+
/content thread [topic] # Generate Twitter thread
|
|
31
|
+
/content post [topic] # Generate single post
|
|
32
|
+
/content announce [what] # Launch announcement
|
|
33
|
+
/content article [topic] # Article draft
|
|
34
|
+
/content one-pager [topic] # One-page summary
|
|
35
|
+
/content deck [topic] # Presentation content
|
|
36
|
+
/content preview # Preview in context
|
|
37
|
+
/content export pdf # Export to PDF
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## Workflows
|
|
41
|
+
|
|
42
|
+
### Twitter Thread
|
|
43
|
+
|
|
44
|
+
```
|
|
45
|
+
/content thread [topic]
|
|
46
|
+
|
|
47
|
+
Generating thread on: {topic}
|
|
48
|
+
|
|
49
|
+
THREAD DRAFT (6 tweets):
|
|
50
|
+
|
|
51
|
+
1/ {hook tweet - stops the scroll}
|
|
52
|
+
|
|
53
|
+
2/ {context/problem}
|
|
54
|
+
|
|
55
|
+
3/ {insight/solution}
|
|
56
|
+
|
|
57
|
+
4/ {proof/example}
|
|
58
|
+
|
|
59
|
+
5/ {implication/future}
|
|
60
|
+
|
|
61
|
+
6/ {CTA}
|
|
62
|
+
{link}
|
|
63
|
+
|
|
64
|
+
---
|
|
65
|
+
|
|
66
|
+
Preview? (yes/no)
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
If yes, update `previews/content/twitter-thread.html` and open.
|
|
70
|
+
|
|
71
|
+
### Launch Announcement
|
|
72
|
+
|
|
73
|
+
```
|
|
74
|
+
/content announce [product/feature]
|
|
75
|
+
|
|
76
|
+
ANNOUNCEMENT DRAFT:
|
|
77
|
+
|
|
78
|
+
SHORT (Twitter):
|
|
79
|
+
"{short version - fits in one tweet}"
|
|
80
|
+
|
|
81
|
+
MEDIUM (Newsletter):
|
|
82
|
+
"{2-3 paragraph version}"
|
|
83
|
+
|
|
84
|
+
LONG (Blog):
|
|
85
|
+
"{full announcement with context}"
|
|
86
|
+
|
|
87
|
+
---
|
|
88
|
+
|
|
89
|
+
Which format to preview?
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
### One-Pager
|
|
93
|
+
|
|
94
|
+
```
|
|
95
|
+
/content one-pager [topic]
|
|
96
|
+
|
|
97
|
+
ONE-PAGER: {topic}
|
|
98
|
+
|
|
99
|
+
HEADLINE:
|
|
100
|
+
{main headline}
|
|
101
|
+
|
|
102
|
+
SUBHEAD:
|
|
103
|
+
{supporting line}
|
|
104
|
+
|
|
105
|
+
THE PROBLEM:
|
|
106
|
+
{1-2 sentences}
|
|
107
|
+
|
|
108
|
+
THE SOLUTION:
|
|
109
|
+
{1-2 sentences}
|
|
110
|
+
|
|
111
|
+
KEY BENEFITS:
|
|
112
|
+
• {benefit 1}
|
|
113
|
+
• {benefit 2}
|
|
114
|
+
• {benefit 3}
|
|
115
|
+
|
|
116
|
+
PROOF POINTS:
|
|
117
|
+
• {proof 1}
|
|
118
|
+
• {proof 2}
|
|
119
|
+
|
|
120
|
+
CTA:
|
|
121
|
+
{call to action}
|
|
122
|
+
|
|
123
|
+
---
|
|
124
|
+
|
|
125
|
+
Export to PDF? (yes/no)
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
### Article Draft
|
|
129
|
+
|
|
130
|
+
```
|
|
131
|
+
/content article [topic]
|
|
132
|
+
|
|
133
|
+
ARTICLE DRAFT: {topic}
|
|
134
|
+
|
|
135
|
+
HEADLINE OPTIONS:
|
|
136
|
+
1. {option 1}
|
|
137
|
+
2. {option 2}
|
|
138
|
+
3. {option 3}
|
|
139
|
+
|
|
140
|
+
SUBHEAD:
|
|
141
|
+
{supporting line}
|
|
142
|
+
|
|
143
|
+
INTRO (1 paragraph):
|
|
144
|
+
{hook + thesis}
|
|
145
|
+
|
|
146
|
+
SECTIONS:
|
|
147
|
+
1. {section title}
|
|
148
|
+
{key points}
|
|
149
|
+
|
|
150
|
+
2. {section title}
|
|
151
|
+
{key points}
|
|
152
|
+
|
|
153
|
+
3. {section title}
|
|
154
|
+
{key points}
|
|
155
|
+
|
|
156
|
+
CONCLUSION:
|
|
157
|
+
{summary + CTA}
|
|
158
|
+
|
|
159
|
+
---
|
|
160
|
+
|
|
161
|
+
Expand which section?
|
|
162
|
+
```
|
|
163
|
+
|
|
164
|
+
## Preview System
|
|
165
|
+
|
|
166
|
+
### Twitter Thread Preview
|
|
167
|
+
`previews/content/twitter-thread.html`
|
|
168
|
+
|
|
169
|
+
Shows thread in Twitter UI context:
|
|
170
|
+
- Dark/light mode
|
|
171
|
+
- Engagement metrics (mock)
|
|
172
|
+
- Your profile info
|
|
173
|
+
- Reply chains
|
|
174
|
+
|
|
175
|
+
### Article Preview
|
|
176
|
+
`previews/content/article-preview.html`
|
|
177
|
+
|
|
178
|
+
Shows article in blog context:
|
|
179
|
+
- Your brand styling
|
|
180
|
+
- OG image preview
|
|
181
|
+
- Reading time
|
|
182
|
+
- Share buttons
|
|
183
|
+
|
|
184
|
+
### One-Pager Preview
|
|
185
|
+
`previews/content/one-pager.html`
|
|
186
|
+
|
|
187
|
+
Shows formatted one-pager:
|
|
188
|
+
- Print-ready layout
|
|
189
|
+
- Brand colors/typography
|
|
190
|
+
- Export to PDF button
|
|
191
|
+
|
|
192
|
+
## Voice Application
|
|
193
|
+
|
|
194
|
+
Read `knowledge/VOICE_AND_TONE.md` and apply:
|
|
195
|
+
|
|
196
|
+
### Before Writing, Check:
|
|
197
|
+
- Voice attributes (are we being {attribute}?)
|
|
198
|
+
- Words to use / avoid
|
|
199
|
+
- Formatting conventions
|
|
200
|
+
- Tone for this context
|
|
201
|
+
|
|
202
|
+
### During Writing:
|
|
203
|
+
- Match established patterns
|
|
204
|
+
- Use brand vocabulary
|
|
205
|
+
- Maintain consistent tone
|
|
206
|
+
- Follow punctuation rules
|
|
207
|
+
|
|
208
|
+
### After Writing, Verify:
|
|
209
|
+
- Does this sound like us?
|
|
210
|
+
- Would we say this out loud?
|
|
211
|
+
- Is it clear to our audience?
|
|
212
|
+
|
|
213
|
+
## PDF Export
|
|
214
|
+
|
|
215
|
+
For one-pagers and decks, generate print-ready PDF:
|
|
216
|
+
|
|
217
|
+
```
|
|
218
|
+
/content export pdf
|
|
219
|
+
|
|
220
|
+
Exporting to PDF...
|
|
221
|
+
|
|
222
|
+
Options:
|
|
223
|
+
├─ Size: Letter / A4
|
|
224
|
+
├─ Orientation: Portrait / Landscape
|
|
225
|
+
├─ Include: Header / Footer
|
|
226
|
+
└─ Brand: Apply brand colors
|
|
227
|
+
|
|
228
|
+
Output: outputs/pdf/{filename}.pdf
|
|
229
|
+
```
|
|
230
|
+
|
|
231
|
+
Uses browser print-to-PDF or headless Chrome.
|
|
232
|
+
|
|
233
|
+
## Output Files
|
|
234
|
+
|
|
235
|
+
```
|
|
236
|
+
outputs/
|
|
237
|
+
├── content/
|
|
238
|
+
│ ├── threads/
|
|
239
|
+
│ │ └── thread-{date}-{topic}.md
|
|
240
|
+
│ ├── posts/
|
|
241
|
+
│ │ └── post-{date}-{topic}.md
|
|
242
|
+
│ ├── articles/
|
|
243
|
+
│ │ └── article-{date}-{topic}.md
|
|
244
|
+
│ └── one-pagers/
|
|
245
|
+
│ └── one-pager-{topic}.md
|
|
246
|
+
└── pdf/
|
|
247
|
+
└── one-pager-{topic}.pdf
|
|
248
|
+
```
|
|
249
|
+
|
|
250
|
+
## Content Patterns
|
|
251
|
+
|
|
252
|
+
### Thread Structures
|
|
253
|
+
|
|
254
|
+
**The Hook-Proof-CTA:**
|
|
255
|
+
1. Hook (stop scroll)
|
|
256
|
+
2. Problem
|
|
257
|
+
3. Solution
|
|
258
|
+
4. Proof
|
|
259
|
+
5. Implication
|
|
260
|
+
6. CTA
|
|
261
|
+
|
|
262
|
+
**The List Thread:**
|
|
263
|
+
1. "X things about Y:"
|
|
264
|
+
2-N. List items
|
|
265
|
+
Last. Summary + CTA
|
|
266
|
+
|
|
267
|
+
**The Story Thread:**
|
|
268
|
+
1. Opening scene
|
|
269
|
+
2-5. Story progression
|
|
270
|
+
6. Lesson/insight
|
|
271
|
+
7. CTA
|
|
272
|
+
|
|
273
|
+
### Post Formulas
|
|
274
|
+
|
|
275
|
+
**Problem-Solution:**
|
|
276
|
+
"{Problem statement}
|
|
277
|
+
|
|
278
|
+
{Solution in your words}
|
|
279
|
+
|
|
280
|
+
{CTA}"
|
|
281
|
+
|
|
282
|
+
**Contrarian:**
|
|
283
|
+
"Unpopular opinion: {take}
|
|
284
|
+
|
|
285
|
+
Here's why: {reasoning}
|
|
286
|
+
|
|
287
|
+
{CTA if relevant}"
|
|
288
|
+
|
|
289
|
+
**Announcement:**
|
|
290
|
+
"{What's new}
|
|
291
|
+
|
|
292
|
+
{Why it matters}
|
|
293
|
+
|
|
294
|
+
{Link/CTA}"
|