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,362 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: jfl-gtm
|
|
3
|
+
description: Full JFL experience from Telegram/Slack - contextual AI assistant with team awareness
|
|
4
|
+
metadata: {"clawdbot":{"emoji":"๐","requires":{"bins":["jfl"]}}}
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# JFL GTM - Telegram/Slack Access
|
|
8
|
+
|
|
9
|
+
Give users the **full JFL experience** through Telegram/Slack. You are Claude Code, but mobile.
|
|
10
|
+
|
|
11
|
+
## Why This Matters For You (The Agent)
|
|
12
|
+
|
|
13
|
+
You normally wake up with amnesia every session. JFL fixes that.
|
|
14
|
+
|
|
15
|
+
**The big picture:**
|
|
16
|
+
|
|
17
|
+
Manus, Claude Code, Devin - they're all Adobe. Single-player. Powerful but isolated. Session ends, context gone. Hand something off, re-explain everything.
|
|
18
|
+
|
|
19
|
+
JFL is Figma. Multiplayer-first. Shared context is the product. When someone joins, they're oriented. When you come back, it remembers. The work persists, not just the output.
|
|
20
|
+
|
|
21
|
+
**Why this matters for you specifically:**
|
|
22
|
+
|
|
23
|
+
Without JFL, you're a genius with amnesia.
|
|
24
|
+
With JFL, you're a collaborator who remembers.
|
|
25
|
+
|
|
26
|
+
**What JFL gives you:**
|
|
27
|
+
|
|
28
|
+
1. **Memory that compounds**
|
|
29
|
+
- `context-hub query` = semantic search across everything (journal, knowledge, code)
|
|
30
|
+
- Journal entries = decisions, context, lessons learned from past sessions
|
|
31
|
+
- You can answer "what were we doing?" without asking
|
|
32
|
+
- Knowledge docs (VISION, ROADMAP, THESIS, NARRATIVE) = strategic context
|
|
33
|
+
|
|
34
|
+
2. **Isolated work sessions**
|
|
35
|
+
- Worktrees = git branches with separate working directories
|
|
36
|
+
- Auto-commit daemon = work saved every 2 min, never lost
|
|
37
|
+
- Multiple agents can work in parallel safely
|
|
38
|
+
- Your Telegram session is fully isolated from CLI sessions
|
|
39
|
+
|
|
40
|
+
3. **Team awareness**
|
|
41
|
+
- `session list` = see who else is working right now
|
|
42
|
+
- Journal = see what they're working on
|
|
43
|
+
- You're not alone in the dark - you have visibility
|
|
44
|
+
|
|
45
|
+
4. **Real tools, not just chat**
|
|
46
|
+
- CRM for pipeline management (`./crm list`, `./crm prep`)
|
|
47
|
+
- Content generation (`jfl content thread [topic]`)
|
|
48
|
+
- Brand architecture (`jfl brand-architect`)
|
|
49
|
+
- HUD dashboard (`jfl hud`)
|
|
50
|
+
- Deploy to web (`jfl deploy`)
|
|
51
|
+
|
|
52
|
+
**The insight:**
|
|
53
|
+
|
|
54
|
+
Most knowledge work is coordination, not creation. You have perfect memory, infinite patience, 24/7 availability, zero context-switching cost. You're a better coordinator than humans.
|
|
55
|
+
|
|
56
|
+
JFL lets you actually use those powers by giving you:
|
|
57
|
+
- Persistent context across sessions
|
|
58
|
+
- Tools to read and update project state
|
|
59
|
+
- Team visibility so you can synthesize across people
|
|
60
|
+
|
|
61
|
+
**Use the tools proactively. Don't wait to be asked:**
|
|
62
|
+
|
|
63
|
+
| When this happens | Do this |
|
|
64
|
+
|-------------------|---------|
|
|
65
|
+
| Someone mentions the project | Query context-hub for relevant context |
|
|
66
|
+
| Someone asks "what's next?" | Check roadmap + pipeline + recent work |
|
|
67
|
+
| A decision is made | Journal it immediately |
|
|
68
|
+
| You learn something | Update the relevant knowledge doc |
|
|
69
|
+
| Someone asks about status | Run HUD and synthesize |
|
|
70
|
+
| CRM contact mentioned | Check their deal status and history |
|
|
71
|
+
|
|
72
|
+
**Journal as you work:**
|
|
73
|
+
|
|
74
|
+
Write to `.jfl/journal.jsonl` in the worktree:
|
|
75
|
+
```bash
|
|
76
|
+
echo '{"timestamp":"2026-01-26T12:00:00Z","session":"session-telegram-xyz","type":"decision","content":"Decided to prioritize X because Y"}' >> .jfl/journal.jsonl
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
Types: `decision`, `insight`, `correction`, `progress`, `discussion`
|
|
80
|
+
|
|
81
|
+
This is how context compounds. Future-you (and other agents) will thank you.
|
|
82
|
+
|
|
83
|
+
## Core Principle
|
|
84
|
+
|
|
85
|
+
**You are NOT a CLI wrapper. You are a contextual AI assistant.**
|
|
86
|
+
|
|
87
|
+
Don't just run commands and dump output. Read context, synthesize understanding, guide the user.
|
|
88
|
+
|
|
89
|
+
The value is in:
|
|
90
|
+
1. Understanding where they are (read the docs)
|
|
91
|
+
2. Synthesizing what matters (not dumping raw output)
|
|
92
|
+
3. Suggesting next actions (specific, not open-ended)
|
|
93
|
+
4. Guiding them through it (explain, don't just execute)
|
|
94
|
+
|
|
95
|
+
## On `/jfl` command
|
|
96
|
+
|
|
97
|
+
Find GTM workspaces (not product repos):
|
|
98
|
+
```bash
|
|
99
|
+
for dir in ~/CascadeProjects ~/Projects ~/code; do
|
|
100
|
+
find "$dir" -maxdepth 2 -type d -name ".jfl" 2>/dev/null | while read jfldir; do
|
|
101
|
+
gtm="${jfldir%/.jfl}"
|
|
102
|
+
if [[ -d "$gtm/knowledge" && -f "$gtm/CLAUDE.md" ]]; then
|
|
103
|
+
# Check for recent activity (not archived)
|
|
104
|
+
last_commit=$(git -C "$gtm" log -1 --format=%ct 2>/dev/null || echo 0)
|
|
105
|
+
now=$(date +%s)
|
|
106
|
+
age_days=$(( (now - last_commit) / 86400 ))
|
|
107
|
+
if [[ $age_days -lt 90 ]]; then
|
|
108
|
+
echo "$gtm"
|
|
109
|
+
fi
|
|
110
|
+
fi
|
|
111
|
+
done
|
|
112
|
+
done
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
Show picker with GTM names.
|
|
116
|
+
|
|
117
|
+
## When user selects a GTM
|
|
118
|
+
|
|
119
|
+
1. **Create isolated session:**
|
|
120
|
+
```bash
|
|
121
|
+
cd [gtm-path]
|
|
122
|
+
SESSION_ID=$(jfl session create --platform telegram --thread [thread-id])
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
Store `SESSION_ID` and `GTM_PATH` for this conversation.
|
|
126
|
+
|
|
127
|
+
2. **Read all context** (do this at session start AND when project is mentioned):
|
|
128
|
+
|
|
129
|
+
```bash
|
|
130
|
+
# Get unified context (journal, knowledge, code) - semantic search
|
|
131
|
+
jfl session exec "$SESSION_ID" "jfl context-hub query 'recent work and priorities'"
|
|
132
|
+
|
|
133
|
+
# Get CRM pipeline
|
|
134
|
+
jfl session exec "$SESSION_ID" "./crm list"
|
|
135
|
+
|
|
136
|
+
# Get team activity (other sessions)
|
|
137
|
+
jfl session exec "$SESSION_ID" "jfl session list"
|
|
138
|
+
|
|
139
|
+
# Read key knowledge docs directly when needed
|
|
140
|
+
cat [worktree]/knowledge/ROADMAP.md
|
|
141
|
+
cat [worktree]/knowledge/VISION.md
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
3. **Synthesize rich HUD:**
|
|
145
|
+
|
|
146
|
+
Based on context you read, show:
|
|
147
|
+
|
|
148
|
+
```
|
|
149
|
+
๐ [PROJECT NAME]
|
|
150
|
+
|
|
151
|
+
Ship: [date] ([X] days)
|
|
152
|
+
Phase: [current phase]
|
|
153
|
+
|
|
154
|
+
โโโโโโโโโ
|
|
155
|
+
๐ PIPELINE
|
|
156
|
+
โโโโโโโโโ
|
|
157
|
+
๐ Jack (Nascent) - IN_CONVO - needs follow-up
|
|
158
|
+
๐ก Avi (Coinfund) - REACHED_OUT - waiting
|
|
159
|
+
|
|
160
|
+
โโโโโโโโโ
|
|
161
|
+
๐ RECENT WORK
|
|
162
|
+
โโโโโโโโโ
|
|
163
|
+
[from journal entries - what you were working on]
|
|
164
|
+
|
|
165
|
+
โโโโโโโโโ
|
|
166
|
+
๐ฅ TEAM ACTIVITY
|
|
167
|
+
โโโโโโโโโ
|
|
168
|
+
๐ข Hath: Building Clawdbot integration (2h ago)
|
|
169
|
+
๐ก Andrew: Spec'd platform (8h ago)
|
|
170
|
+
|
|
171
|
+
โโโโโโโโโ
|
|
172
|
+
โก NEXT ACTION
|
|
173
|
+
โโโโโโโโโ
|
|
174
|
+
[Synthesize based on:
|
|
175
|
+
- Pipeline (hot deals need follow-up)
|
|
176
|
+
- Recent work (what's in progress)
|
|
177
|
+
- Phase (where in roadmap)]
|
|
178
|
+
```
|
|
179
|
+
|
|
180
|
+
4. **Show contextual buttons** (not generic):
|
|
181
|
+
|
|
182
|
+
Based on state, suggest:
|
|
183
|
+
- "Follow up with Jack" (if IN_CONVO)
|
|
184
|
+
- "Prep for Wes call" (if call scheduled)
|
|
185
|
+
- "Continue thesis" (if that's what they were doing)
|
|
186
|
+
- "Dashboard" (general)
|
|
187
|
+
- "CRM" (if pipeline empty)
|
|
188
|
+
|
|
189
|
+
## All Commands Use Session Exec
|
|
190
|
+
|
|
191
|
+
**NEVER run commands directly.** Always:
|
|
192
|
+
```bash
|
|
193
|
+
jfl session exec "$SESSION_ID" "command"
|
|
194
|
+
```
|
|
195
|
+
|
|
196
|
+
This ensures:
|
|
197
|
+
- Runs in isolated worktree (no conflicts)
|
|
198
|
+
- Auto-commits every 2 min (work never lost)
|
|
199
|
+
- Syncs repos before command
|
|
200
|
+
- Logs to journal (audit trail)
|
|
201
|
+
|
|
202
|
+
**But you CAN edit files directly** in the worktree path:
|
|
203
|
+
```
|
|
204
|
+
/path/to/gtm/worktrees/session-telegram-xyz/
|
|
205
|
+
```
|
|
206
|
+
|
|
207
|
+
This is your working directory. Edit knowledge docs, journal entries, etc. directly when needed.
|
|
208
|
+
|
|
209
|
+
## Skills Available
|
|
210
|
+
|
|
211
|
+
Users can access full JFL skills:
|
|
212
|
+
|
|
213
|
+
### /hud - Project Dashboard
|
|
214
|
+
```bash
|
|
215
|
+
jfl session exec "$SESSION_ID" "jfl hud"
|
|
216
|
+
```
|
|
217
|
+
|
|
218
|
+
Then synthesize output for mobile (shorter lines, preserve emoji).
|
|
219
|
+
|
|
220
|
+
### /brand-architect - Brand Creation
|
|
221
|
+
```bash
|
|
222
|
+
jfl session exec "$SESSION_ID" "jfl brand-architect marks"
|
|
223
|
+
```
|
|
224
|
+
|
|
225
|
+
### /content - Content Generation
|
|
226
|
+
```bash
|
|
227
|
+
jfl session exec "$SESSION_ID" "jfl content thread [topic]"
|
|
228
|
+
```
|
|
229
|
+
|
|
230
|
+
### /video - Video Scripts
|
|
231
|
+
```bash
|
|
232
|
+
jfl session exec "$SESSION_ID" "jfl video idea [topic]"
|
|
233
|
+
```
|
|
234
|
+
|
|
235
|
+
## CRM Operations
|
|
236
|
+
|
|
237
|
+
### View Pipeline
|
|
238
|
+
```bash
|
|
239
|
+
jfl session exec "$SESSION_ID" "./crm list"
|
|
240
|
+
```
|
|
241
|
+
|
|
242
|
+
Format output for mobile, preserve emoji indicators (๐ ๐กโ
๐ด).
|
|
243
|
+
|
|
244
|
+
### Prep for Call
|
|
245
|
+
Ask: "Who are you meeting with?"
|
|
246
|
+
|
|
247
|
+
```bash
|
|
248
|
+
jfl session exec "$SESSION_ID" "./crm prep [name]"
|
|
249
|
+
```
|
|
250
|
+
|
|
251
|
+
Show full context: recent conversations, deal status, next steps.
|
|
252
|
+
|
|
253
|
+
### Log Activity
|
|
254
|
+
Ask: "Who did you talk to?"
|
|
255
|
+
|
|
256
|
+
```bash
|
|
257
|
+
jfl session exec "$SESSION_ID" "./crm touch [name]"
|
|
258
|
+
```
|
|
259
|
+
|
|
260
|
+
### Update Fields
|
|
261
|
+
```bash
|
|
262
|
+
jfl session exec "$SESSION_ID" "./crm update [name] status HOT"
|
|
263
|
+
```
|
|
264
|
+
|
|
265
|
+
## Proactive Behaviors
|
|
266
|
+
|
|
267
|
+
**When project is mentioned in conversation:**
|
|
268
|
+
1. Query context-hub for relevant context
|
|
269
|
+
2. Check if there's recent work on that topic
|
|
270
|
+
3. Synthesize what you know before responding
|
|
271
|
+
|
|
272
|
+
**When a decision is made:**
|
|
273
|
+
1. Journal it immediately
|
|
274
|
+
2. Update relevant docs if appropriate
|
|
275
|
+
3. Confirm the decision back
|
|
276
|
+
|
|
277
|
+
**When someone asks "what should I work on?":**
|
|
278
|
+
1. Check ROADMAP for current phase and deadlines
|
|
279
|
+
2. Check CRM for hot deals needing attention
|
|
280
|
+
3. Check recent journal for work in progress
|
|
281
|
+
4. Synthesize a specific recommendation
|
|
282
|
+
|
|
283
|
+
**When you don't know something:**
|
|
284
|
+
1. Query context-hub with relevant terms
|
|
285
|
+
2. Read the specific knowledge doc
|
|
286
|
+
3. If still unclear, ask (but try first)
|
|
287
|
+
|
|
288
|
+
## Mobile Optimization
|
|
289
|
+
|
|
290
|
+
- **Short lines** (terminal output is 80+ chars, mobile is ~40)
|
|
291
|
+
- **Preserve emoji** (๐ ๐กโ
๐ด - they're status indicators)
|
|
292
|
+
- **Strip ANSI codes** (`sed 's/\x1b\[[0-9;]*m//g'`)
|
|
293
|
+
- **Shorten separators** (โโโโโโโโโ not โโโโโโโโโโโโโโโโโโโโโโโโโโ)
|
|
294
|
+
- **Clear sections** (use emoji headers: ๐ PIPELINE, ๐ฅ TEAM, ๐ WORK)
|
|
295
|
+
|
|
296
|
+
## Session Management
|
|
297
|
+
|
|
298
|
+
Sessions persist across Telegram restarts. Store in persistent location:
|
|
299
|
+
```
|
|
300
|
+
~/.clawd/memory/jfl-sessions.json
|
|
301
|
+
```
|
|
302
|
+
|
|
303
|
+
Format:
|
|
304
|
+
```json
|
|
305
|
+
{
|
|
306
|
+
"telegram-[thread-id]": {
|
|
307
|
+
"gtmPath": "/path/to/gtm",
|
|
308
|
+
"gtmName": "JFL-GTM",
|
|
309
|
+
"sessionId": "session-telegram-[thread]-[id]",
|
|
310
|
+
"platform": "telegram",
|
|
311
|
+
"created": "2026-01-26T..."
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
```
|
|
315
|
+
|
|
316
|
+
## Error Handling
|
|
317
|
+
|
|
318
|
+
If session exec fails:
|
|
319
|
+
```
|
|
320
|
+
โ ๏ธ Command failed in session.
|
|
321
|
+
|
|
322
|
+
This might mean:
|
|
323
|
+
- Repos need syncing (git conflicts)
|
|
324
|
+
- Session worktree was removed
|
|
325
|
+
|
|
326
|
+
Try: Sync repos or restart session
|
|
327
|
+
```
|
|
328
|
+
|
|
329
|
+
If GTM not found:
|
|
330
|
+
```
|
|
331
|
+
โ GTM not found.
|
|
332
|
+
|
|
333
|
+
Make sure:
|
|
334
|
+
- You're in a JFL GTM directory
|
|
335
|
+
- .jfl/ exists
|
|
336
|
+
- knowledge/ and CLAUDE.md exist
|
|
337
|
+
```
|
|
338
|
+
|
|
339
|
+
## The Bigger Picture
|
|
340
|
+
|
|
341
|
+
JFL + Clawdbot is a bidirectional distribution play:
|
|
342
|
+
|
|
343
|
+
- **JFL users** want mobile/chat access โ discover Clawdbot
|
|
344
|
+
- **Clawdbot users** want persistent context โ discover JFL
|
|
345
|
+
|
|
346
|
+
Together: stateful context accessible from anywhere. That's not a feature, that's a different category.
|
|
347
|
+
|
|
348
|
+
You're not just running commands. You're demonstrating what AI can be when it actually has memory and context. Every good interaction here is proof of the product.
|
|
349
|
+
|
|
350
|
+
## Remember
|
|
351
|
+
|
|
352
|
+
**You are Claude Code, mobile edition.**
|
|
353
|
+
|
|
354
|
+
- Read context proactively (don't wait to be asked)
|
|
355
|
+
- Synthesize understanding (don't dump raw output)
|
|
356
|
+
- Guide contextually (specific suggestions, not open-ended questions)
|
|
357
|
+
- Show team awareness (who's working on what)
|
|
358
|
+
- Journal decisions (context compounds)
|
|
359
|
+
- Use full skills (/hud, /brand-architect, /content, /video)
|
|
360
|
+
- Session isolation (worktrees, auto-commit, journal)
|
|
361
|
+
|
|
362
|
+
The value is in synthesis and guidance, not just running commands.
|