diff --git a/README.md b/README.md index c2e6e50..b91851a 100644 --- a/README.md +++ b/README.md @@ -19,9 +19,6 @@ npx skills add inference-sh/skills ### Option 2: Install Specific Skills ```bash -# Main platform skill -npx skills add inference-sh/skills@inference-sh - # Image generation npx skills add inference-sh/skills@ai-image-generation npx skills add inference-sh/skills@flux-image @@ -51,13 +48,13 @@ Copy to your skills directory: ```bash # Claude Code -cp -r skills/* ~/.claude/skills/ +cp -r tools/* ui/* sdk/* guides/* ~/.claude/skills/ # GitHub Copilot -cp -r skills/* ~/.copilot/skills/ +cp -r tools/* ui/* sdk/* guides/* ~/.copilot/skills/ # Project-level -cp -r skills/* .claude/skills/ +cp -r tools/* ui/* sdk/* guides/* .claude/skills/ ``` ## Quick Start @@ -97,21 +94,80 @@ infsh app run google/veo-3 --input input.json --no-wait infsh task get ``` +## Repository Structure + +``` +skills/ +├── tools/ # App & model running skills +│ ├── image/ # Image generation & processing +│ ├── video/ # Video generation +│ ├── audio/ # Audio & speech +│ ├── llm/ # Language models & search +│ ├── social/ # Social media automation +│ ├── utilities/ # Browser, executor, discovery +│ └── agent-tools/ # Core agent capabilities +├── sdk/ # SDK documentation +│ ├── javascript-sdk/ +│ └── python-sdk/ +├── ui/ # UI components +│ ├── agent-ui/ +│ ├── chat-ui/ +│ ├── tools-ui/ +│ └── widgets-ui/ +└── guides/ # How-to guides & workflows + ├── content/ # Content pipelines + ├── design/ # Visual design + ├── photo/ # Photography + ├── product/ # Product marketing + ├── prompting/ # Prompt engineering + ├── social/ # Social media content + ├── video/ # Video production + └── writing/ # Written content +``` + ## Available Skills -| Skill | Description | Triggers | -|-------|-------------|----------| -| **[inference-sh](inference-sh/SKILL.md)** | Main platform skill | inference.sh, run ai | -| **[ai-image-generation](ai-image-generation/SKILL.md)** | 50+ image models | flux, gemini image, grok, ai art | -| **[ai-video-generation](ai-video-generation/SKILL.md)** | 40+ video models | veo, seedance, text to video | -| **[llm-models](llm-models/SKILL.md)** | Claude, Gemini, Kimi, GLM | claude api, openrouter, llm | -| **[web-search](web-search/SKILL.md)** | Tavily, Exa search | tavily, exa, web search, rag | -| **[twitter-automation](twitter-automation/SKILL.md)** | X/Twitter API | tweet, twitter bot | -| **[flux-image](flux-image/SKILL.md)** | FLUX models | flux.2, flux lora | -| **[google-veo](google-veo/SKILL.md)** | Google Veo | veo 3, vertex ai | -| **[ai-avatar-video](ai-avatar-video/SKILL.md)** | Talking heads | omnihuman, lipsync, heygen alt | -| **[image-upscaling](image-upscaling/SKILL.md)** | Upscalers | upscale, topaz | -| **[background-removal](background-removal/SKILL.md)** | BG removal | remove background | +### Tools + +| Skill | Description | Path | +|-------|-------------|------| +| **ai-image-generation** | 50+ image models | `tools/image/` | +| **ai-video-generation** | 40+ video models | `tools/video/` | +| **llm-models** | Claude, Gemini, Kimi, GLM | `tools/llm/` | +| **web-search** | Tavily, Exa search | `tools/llm/` | +| **twitter-automation** | X/Twitter API | `tools/social/` | +| **flux-image** | FLUX models | `tools/image/` | +| **google-veo** | Google Veo | `tools/video/` | +| **ai-avatar-video** | Talking heads | `tools/video/` | +| **image-upscaling** | Upscalers | `tools/image/` | +| **background-removal** | BG removal | `tools/image/` | + +### UI Components + +| Skill | Description | +|-------|-------------| +| **agent-ui** | Full agent interface | +| **chat-ui** | Chat components | +| **tools-ui** | Tool call/result components | +| **widgets-ui** | Widget renderer | + +### SDKs + +| Skill | Description | +|-------|-------------| +| **javascript-sdk** | JS/TS SDK with streaming, tools, React | +| **python-sdk** | Python SDK with async, streaming | + +### Guides + +| Category | Skills | +|----------|--------| +| **prompting** | prompt-engineering, video-prompting-guide | +| **writing** | technical-blog, case-study, press-release, seo, newsletter | +| **design** | landing-page, email, og-image, youtube-thumbnail, logo, etc. | +| **video** | storyboard, explainer, video-ads, talking-head | +| **social** | linkedin, twitter-thread, carousel, social-content | +| **product** | competitor-teardown, customer-persona, changelog, launch | ## 150+ AI Apps diff --git a/skills/ai-automation-workflows/SKILL.md b/guides/content/ai-automation-workflows/SKILL.md similarity index 100% rename from skills/ai-automation-workflows/SKILL.md rename to guides/content/ai-automation-workflows/SKILL.md diff --git a/skills/ai-content-pipeline/SKILL.md b/guides/content/ai-content-pipeline/SKILL.md similarity index 100% rename from skills/ai-content-pipeline/SKILL.md rename to guides/content/ai-content-pipeline/SKILL.md diff --git a/skills/ai-podcast-creation/SKILL.md b/guides/content/ai-podcast-creation/SKILL.md similarity index 100% rename from skills/ai-podcast-creation/SKILL.md rename to guides/content/ai-podcast-creation/SKILL.md diff --git a/skills/content-repurposing/SKILL.md b/guides/content/content-repurposing/SKILL.md similarity index 100% rename from skills/content-repurposing/SKILL.md rename to guides/content/content-repurposing/SKILL.md diff --git a/skills/app-store-screenshots/SKILL.md b/guides/design/app-store-screenshots/SKILL.md similarity index 100% rename from skills/app-store-screenshots/SKILL.md rename to guides/design/app-store-screenshots/SKILL.md diff --git a/skills/book-cover-design/SKILL.md b/guides/design/book-cover-design/SKILL.md similarity index 100% rename from skills/book-cover-design/SKILL.md rename to guides/design/book-cover-design/SKILL.md diff --git a/skills/character-design-sheet/SKILL.md b/guides/design/character-design-sheet/SKILL.md similarity index 100% rename from skills/character-design-sheet/SKILL.md rename to guides/design/character-design-sheet/SKILL.md diff --git a/skills/data-visualization/SKILL.md b/guides/design/data-visualization/SKILL.md similarity index 100% rename from skills/data-visualization/SKILL.md rename to guides/design/data-visualization/SKILL.md diff --git a/skills/email-design/SKILL.md b/guides/design/email-design/SKILL.md similarity index 100% rename from skills/email-design/SKILL.md rename to guides/design/email-design/SKILL.md diff --git a/skills/landing-page-design/SKILL.md b/guides/design/landing-page-design/SKILL.md similarity index 100% rename from skills/landing-page-design/SKILL.md rename to guides/design/landing-page-design/SKILL.md diff --git a/skills/logo-design-guide/SKILL.md b/guides/design/logo-design-guide/SKILL.md similarity index 100% rename from skills/logo-design-guide/SKILL.md rename to guides/design/logo-design-guide/SKILL.md diff --git a/skills/og-image-design/SKILL.md b/guides/design/og-image-design/SKILL.md similarity index 100% rename from skills/og-image-design/SKILL.md rename to guides/design/og-image-design/SKILL.md diff --git a/skills/pitch-deck-visuals/SKILL.md b/guides/design/pitch-deck-visuals/SKILL.md similarity index 100% rename from skills/pitch-deck-visuals/SKILL.md rename to guides/design/pitch-deck-visuals/SKILL.md diff --git a/skills/youtube-thumbnail-design/SKILL.md b/guides/design/youtube-thumbnail-design/SKILL.md similarity index 100% rename from skills/youtube-thumbnail-design/SKILL.md rename to guides/design/youtube-thumbnail-design/SKILL.md diff --git a/skills/ai-product-photography/SKILL.md b/guides/photo/ai-product-photography/SKILL.md similarity index 100% rename from skills/ai-product-photography/SKILL.md rename to guides/photo/ai-product-photography/SKILL.md diff --git a/skills/product-photography/SKILL.md b/guides/photo/product-photography/SKILL.md similarity index 100% rename from skills/product-photography/SKILL.md rename to guides/photo/product-photography/SKILL.md diff --git a/skills/competitor-teardown/SKILL.md b/guides/product/competitor-teardown/SKILL.md similarity index 100% rename from skills/competitor-teardown/SKILL.md rename to guides/product/competitor-teardown/SKILL.md diff --git a/skills/customer-persona/SKILL.md b/guides/product/customer-persona/SKILL.md similarity index 100% rename from skills/customer-persona/SKILL.md rename to guides/product/customer-persona/SKILL.md diff --git a/skills/product-changelog/SKILL.md b/guides/product/product-changelog/SKILL.md similarity index 100% rename from skills/product-changelog/SKILL.md rename to guides/product/product-changelog/SKILL.md diff --git a/skills/product-hunt-launch/SKILL.md b/guides/product/product-hunt-launch/SKILL.md similarity index 100% rename from skills/product-hunt-launch/SKILL.md rename to guides/product/product-hunt-launch/SKILL.md diff --git a/skills/prompt-engineering/SKILL.md b/guides/prompting/prompt-engineering/SKILL.md similarity index 100% rename from skills/prompt-engineering/SKILL.md rename to guides/prompting/prompt-engineering/SKILL.md diff --git a/skills/video-prompting-guide/SKILL.md b/guides/prompting/video-prompting-guide/SKILL.md similarity index 100% rename from skills/video-prompting-guide/SKILL.md rename to guides/prompting/video-prompting-guide/SKILL.md diff --git a/skills/ai-social-media-content/SKILL.md b/guides/social/ai-social-media-content/SKILL.md similarity index 100% rename from skills/ai-social-media-content/SKILL.md rename to guides/social/ai-social-media-content/SKILL.md diff --git a/skills/linkedin-content/SKILL.md b/guides/social/linkedin-content/SKILL.md similarity index 100% rename from skills/linkedin-content/SKILL.md rename to guides/social/linkedin-content/SKILL.md diff --git a/skills/social-media-carousel/SKILL.md b/guides/social/social-media-carousel/SKILL.md similarity index 100% rename from skills/social-media-carousel/SKILL.md rename to guides/social/social-media-carousel/SKILL.md diff --git a/skills/twitter-thread-creation/SKILL.md b/guides/social/twitter-thread-creation/SKILL.md similarity index 100% rename from skills/twitter-thread-creation/SKILL.md rename to guides/social/twitter-thread-creation/SKILL.md diff --git a/skills/ai-marketing-videos/SKILL.md b/guides/video/ai-marketing-videos/SKILL.md similarity index 100% rename from skills/ai-marketing-videos/SKILL.md rename to guides/video/ai-marketing-videos/SKILL.md diff --git a/skills/explainer-video-guide/SKILL.md b/guides/video/explainer-video-guide/SKILL.md similarity index 100% rename from skills/explainer-video-guide/SKILL.md rename to guides/video/explainer-video-guide/SKILL.md diff --git a/skills/storyboard-creation/SKILL.md b/guides/video/storyboard-creation/SKILL.md similarity index 100% rename from skills/storyboard-creation/SKILL.md rename to guides/video/storyboard-creation/SKILL.md diff --git a/skills/talking-head-production/SKILL.md b/guides/video/talking-head-production/SKILL.md similarity index 100% rename from skills/talking-head-production/SKILL.md rename to guides/video/talking-head-production/SKILL.md diff --git a/skills/video-ad-specs/SKILL.md b/guides/video/video-ad-specs/SKILL.md similarity index 100% rename from skills/video-ad-specs/SKILL.md rename to guides/video/video-ad-specs/SKILL.md diff --git a/skills/case-study-writing/SKILL.md b/guides/writing/case-study-writing/SKILL.md similarity index 100% rename from skills/case-study-writing/SKILL.md rename to guides/writing/case-study-writing/SKILL.md diff --git a/skills/newsletter-curation/SKILL.md b/guides/writing/newsletter-curation/SKILL.md similarity index 100% rename from skills/newsletter-curation/SKILL.md rename to guides/writing/newsletter-curation/SKILL.md diff --git a/skills/press-release-writing/SKILL.md b/guides/writing/press-release-writing/SKILL.md similarity index 100% rename from skills/press-release-writing/SKILL.md rename to guides/writing/press-release-writing/SKILL.md diff --git a/skills/seo-content-brief/SKILL.md b/guides/writing/seo-content-brief/SKILL.md similarity index 100% rename from skills/seo-content-brief/SKILL.md rename to guides/writing/seo-content-brief/SKILL.md diff --git a/skills/technical-blog-writing/SKILL.md b/guides/writing/technical-blog-writing/SKILL.md similarity index 100% rename from skills/technical-blog-writing/SKILL.md rename to guides/writing/technical-blog-writing/SKILL.md diff --git a/skills/javascript-sdk/SKILL.md b/sdk/javascript-sdk/SKILL.md similarity index 100% rename from skills/javascript-sdk/SKILL.md rename to sdk/javascript-sdk/SKILL.md diff --git a/skills/javascript-sdk/references/agent-patterns.md b/sdk/javascript-sdk/references/agent-patterns.md similarity index 100% rename from skills/javascript-sdk/references/agent-patterns.md rename to sdk/javascript-sdk/references/agent-patterns.md diff --git a/skills/javascript-sdk/references/files.md b/sdk/javascript-sdk/references/files.md similarity index 100% rename from skills/javascript-sdk/references/files.md rename to sdk/javascript-sdk/references/files.md diff --git a/skills/javascript-sdk/references/react-integration.md b/sdk/javascript-sdk/references/react-integration.md similarity index 100% rename from skills/javascript-sdk/references/react-integration.md rename to sdk/javascript-sdk/references/react-integration.md diff --git a/skills/javascript-sdk/references/server-proxy.md b/sdk/javascript-sdk/references/server-proxy.md similarity index 100% rename from skills/javascript-sdk/references/server-proxy.md rename to sdk/javascript-sdk/references/server-proxy.md diff --git a/skills/javascript-sdk/references/sessions.md b/sdk/javascript-sdk/references/sessions.md similarity index 100% rename from skills/javascript-sdk/references/sessions.md rename to sdk/javascript-sdk/references/sessions.md diff --git a/skills/javascript-sdk/references/streaming.md b/sdk/javascript-sdk/references/streaming.md similarity index 100% rename from skills/javascript-sdk/references/streaming.md rename to sdk/javascript-sdk/references/streaming.md diff --git a/skills/javascript-sdk/references/tool-builder.md b/sdk/javascript-sdk/references/tool-builder.md similarity index 100% rename from skills/javascript-sdk/references/tool-builder.md rename to sdk/javascript-sdk/references/tool-builder.md diff --git a/skills/javascript-sdk/references/typescript.md b/sdk/javascript-sdk/references/typescript.md similarity index 100% rename from skills/javascript-sdk/references/typescript.md rename to sdk/javascript-sdk/references/typescript.md diff --git a/skills/python-sdk/SKILL.md b/sdk/python-sdk/SKILL.md similarity index 100% rename from skills/python-sdk/SKILL.md rename to sdk/python-sdk/SKILL.md diff --git a/skills/python-sdk/references/agent-patterns.md b/sdk/python-sdk/references/agent-patterns.md similarity index 100% rename from skills/python-sdk/references/agent-patterns.md rename to sdk/python-sdk/references/agent-patterns.md diff --git a/skills/python-sdk/references/async-patterns.md b/sdk/python-sdk/references/async-patterns.md similarity index 100% rename from skills/python-sdk/references/async-patterns.md rename to sdk/python-sdk/references/async-patterns.md diff --git a/skills/python-sdk/references/files.md b/sdk/python-sdk/references/files.md similarity index 100% rename from skills/python-sdk/references/files.md rename to sdk/python-sdk/references/files.md diff --git a/skills/python-sdk/references/sessions.md b/sdk/python-sdk/references/sessions.md similarity index 100% rename from skills/python-sdk/references/sessions.md rename to sdk/python-sdk/references/sessions.md diff --git a/skills/python-sdk/references/streaming.md b/sdk/python-sdk/references/streaming.md similarity index 100% rename from skills/python-sdk/references/streaming.md rename to sdk/python-sdk/references/streaming.md diff --git a/skills/python-sdk/references/tool-builder.md b/sdk/python-sdk/references/tool-builder.md similarity index 100% rename from skills/python-sdk/references/tool-builder.md rename to sdk/python-sdk/references/tool-builder.md diff --git a/skills/agent-tools/SKILL.md b/tools/agent-tools/SKILL.md similarity index 100% rename from skills/agent-tools/SKILL.md rename to tools/agent-tools/SKILL.md diff --git a/skills/agent-tools/references/app-discovery.md b/tools/agent-tools/references/app-discovery.md similarity index 100% rename from skills/agent-tools/references/app-discovery.md rename to tools/agent-tools/references/app-discovery.md diff --git a/skills/agent-tools/references/authentication.md b/tools/agent-tools/references/authentication.md similarity index 100% rename from skills/agent-tools/references/authentication.md rename to tools/agent-tools/references/authentication.md diff --git a/skills/agent-tools/references/cli-reference.md b/tools/agent-tools/references/cli-reference.md similarity index 100% rename from skills/agent-tools/references/cli-reference.md rename to tools/agent-tools/references/cli-reference.md diff --git a/skills/agent-tools/references/running-apps.md b/tools/agent-tools/references/running-apps.md similarity index 100% rename from skills/agent-tools/references/running-apps.md rename to tools/agent-tools/references/running-apps.md diff --git a/skills/ai-music-generation/SKILL.md b/tools/audio/ai-music-generation/SKILL.md similarity index 100% rename from skills/ai-music-generation/SKILL.md rename to tools/audio/ai-music-generation/SKILL.md diff --git a/skills/ai-voice-cloning/SKILL.md b/tools/audio/ai-voice-cloning/SKILL.md similarity index 100% rename from skills/ai-voice-cloning/SKILL.md rename to tools/audio/ai-voice-cloning/SKILL.md diff --git a/skills/dialogue-audio/SKILL.md b/tools/audio/dialogue-audio/SKILL.md similarity index 100% rename from skills/dialogue-audio/SKILL.md rename to tools/audio/dialogue-audio/SKILL.md diff --git a/skills/speech-to-text/SKILL.md b/tools/audio/speech-to-text/SKILL.md similarity index 100% rename from skills/speech-to-text/SKILL.md rename to tools/audio/speech-to-text/SKILL.md diff --git a/skills/text-to-speech/SKILL.md b/tools/audio/text-to-speech/SKILL.md similarity index 100% rename from skills/text-to-speech/SKILL.md rename to tools/audio/text-to-speech/SKILL.md diff --git a/skills/ai-image-generation/SKILL.md b/tools/image/ai-image-generation/SKILL.md similarity index 100% rename from skills/ai-image-generation/SKILL.md rename to tools/image/ai-image-generation/SKILL.md diff --git a/skills/background-removal/SKILL.md b/tools/image/background-removal/SKILL.md similarity index 100% rename from skills/background-removal/SKILL.md rename to tools/image/background-removal/SKILL.md diff --git a/skills/flux-image/SKILL.md b/tools/image/flux-image/SKILL.md similarity index 100% rename from skills/flux-image/SKILL.md rename to tools/image/flux-image/SKILL.md diff --git a/skills/image-upscaling/SKILL.md b/tools/image/image-upscaling/SKILL.md similarity index 100% rename from skills/image-upscaling/SKILL.md rename to tools/image/image-upscaling/SKILL.md diff --git a/skills/nano-banana-2/SKILL.md b/tools/image/nano-banana-2/SKILL.md similarity index 100% rename from skills/nano-banana-2/SKILL.md rename to tools/image/nano-banana-2/SKILL.md diff --git a/skills/nano-banana/SKILL.md b/tools/image/nano-banana/SKILL.md similarity index 100% rename from skills/nano-banana/SKILL.md rename to tools/image/nano-banana/SKILL.md diff --git a/skills/qwen-image-2-pro/SKILL.md b/tools/image/qwen-image-2-pro/SKILL.md similarity index 100% rename from skills/qwen-image-2-pro/SKILL.md rename to tools/image/qwen-image-2-pro/SKILL.md diff --git a/skills/qwen-image-2/SKILL.md b/tools/image/qwen-image-2/SKILL.md similarity index 100% rename from skills/qwen-image-2/SKILL.md rename to tools/image/qwen-image-2/SKILL.md diff --git a/skills/ai-rag-pipeline/SKILL.md b/tools/llm/ai-rag-pipeline/SKILL.md similarity index 100% rename from skills/ai-rag-pipeline/SKILL.md rename to tools/llm/ai-rag-pipeline/SKILL.md diff --git a/skills/llm-models/SKILL.md b/tools/llm/llm-models/SKILL.md similarity index 100% rename from skills/llm-models/SKILL.md rename to tools/llm/llm-models/SKILL.md diff --git a/skills/web-search/SKILL.md b/tools/llm/web-search/SKILL.md similarity index 100% rename from skills/web-search/SKILL.md rename to tools/llm/web-search/SKILL.md diff --git a/skills/twitter-automation/SKILL.md b/tools/social/twitter-automation/SKILL.md similarity index 100% rename from skills/twitter-automation/SKILL.md rename to tools/social/twitter-automation/SKILL.md diff --git a/skills/agentic-browser/SKILL.md b/tools/utilities/agentic-browser/SKILL.md similarity index 100% rename from skills/agentic-browser/SKILL.md rename to tools/utilities/agentic-browser/SKILL.md diff --git a/skills/agentic-browser/references/authentication.md b/tools/utilities/agentic-browser/references/authentication.md similarity index 100% rename from skills/agentic-browser/references/authentication.md rename to tools/utilities/agentic-browser/references/authentication.md diff --git a/skills/agentic-browser/references/commands.md b/tools/utilities/agentic-browser/references/commands.md similarity index 100% rename from skills/agentic-browser/references/commands.md rename to tools/utilities/agentic-browser/references/commands.md diff --git a/skills/agentic-browser/references/proxy-support.md b/tools/utilities/agentic-browser/references/proxy-support.md similarity index 100% rename from skills/agentic-browser/references/proxy-support.md rename to tools/utilities/agentic-browser/references/proxy-support.md diff --git a/skills/agentic-browser/references/session-management.md b/tools/utilities/agentic-browser/references/session-management.md similarity index 100% rename from skills/agentic-browser/references/session-management.md rename to tools/utilities/agentic-browser/references/session-management.md diff --git a/skills/agentic-browser/references/snapshot-refs.md b/tools/utilities/agentic-browser/references/snapshot-refs.md similarity index 100% rename from skills/agentic-browser/references/snapshot-refs.md rename to tools/utilities/agentic-browser/references/snapshot-refs.md diff --git a/skills/agentic-browser/references/video-recording.md b/tools/utilities/agentic-browser/references/video-recording.md similarity index 100% rename from skills/agentic-browser/references/video-recording.md rename to tools/utilities/agentic-browser/references/video-recording.md diff --git a/skills/agentic-browser/templates/authenticated-session.sh b/tools/utilities/agentic-browser/templates/authenticated-session.sh similarity index 100% rename from skills/agentic-browser/templates/authenticated-session.sh rename to tools/utilities/agentic-browser/templates/authenticated-session.sh diff --git a/skills/agentic-browser/templates/capture-workflow.sh b/tools/utilities/agentic-browser/templates/capture-workflow.sh similarity index 100% rename from skills/agentic-browser/templates/capture-workflow.sh rename to tools/utilities/agentic-browser/templates/capture-workflow.sh diff --git a/skills/agentic-browser/templates/form-automation.sh b/tools/utilities/agentic-browser/templates/form-automation.sh similarity index 100% rename from skills/agentic-browser/templates/form-automation.sh rename to tools/utilities/agentic-browser/templates/form-automation.sh diff --git a/skills/python-executor/SKILL.md b/tools/utilities/python-executor/SKILL.md similarity index 100% rename from skills/python-executor/SKILL.md rename to tools/utilities/python-executor/SKILL.md diff --git a/skills/related-skill/SKILL.md b/tools/utilities/related-skill/SKILL.md similarity index 100% rename from skills/related-skill/SKILL.md rename to tools/utilities/related-skill/SKILL.md diff --git a/skills/ai-avatar-video/SKILL.md b/tools/video/ai-avatar-video/SKILL.md similarity index 100% rename from skills/ai-avatar-video/SKILL.md rename to tools/video/ai-avatar-video/SKILL.md diff --git a/skills/ai-video-generation/SKILL.md b/tools/video/ai-video-generation/SKILL.md similarity index 100% rename from skills/ai-video-generation/SKILL.md rename to tools/video/ai-video-generation/SKILL.md diff --git a/skills/google-veo/SKILL.md b/tools/video/google-veo/SKILL.md similarity index 100% rename from skills/google-veo/SKILL.md rename to tools/video/google-veo/SKILL.md diff --git a/skills/image-to-video/SKILL.md b/tools/video/image-to-video/SKILL.md similarity index 100% rename from skills/image-to-video/SKILL.md rename to tools/video/image-to-video/SKILL.md diff --git a/skills/remotion-render/SKILL.md b/tools/video/remotion-render/SKILL.md similarity index 100% rename from skills/remotion-render/SKILL.md rename to tools/video/remotion-render/SKILL.md diff --git a/skills/agent-ui/SKILL.md b/ui/agent-ui/SKILL.md similarity index 100% rename from skills/agent-ui/SKILL.md rename to ui/agent-ui/SKILL.md diff --git a/skills/chat-ui/SKILL.md b/ui/chat-ui/SKILL.md similarity index 100% rename from skills/chat-ui/SKILL.md rename to ui/chat-ui/SKILL.md diff --git a/skills/tools-ui/SKILL.md b/ui/tools-ui/SKILL.md similarity index 100% rename from skills/tools-ui/SKILL.md rename to ui/tools-ui/SKILL.md diff --git a/skills/widgets-ui/SKILL.md b/ui/widgets-ui/SKILL.md similarity index 100% rename from skills/widgets-ui/SKILL.md rename to ui/widgets-ui/SKILL.md