code stringlengths 38 143 | detail stringlengths 0 167k | name stringlengths 10 99 | description stringlengths 0 2.07k | skill_name stringlengths 1 66 |
|---|---|---|---|---|
npx skills add https://github.com/1103837067/ue5-editor-control --skill ue5-editor-control | # UE5 Editor Control
HTTP API for the UE5 editor. Plugin `UE5AIAssistant` runs on `localhost:58080`.
## Auto-Setup Flow (MUST follow on first use)
Every time you need to use this skill, **start here** :
### Step 1: Check if plugin is already running
curl -s --max-time 3 http://localhost:58080/api/ping... | 1103837067/ue5-editor-control/ue5-editor-control | Control Unreal Engine 5 editor via HTTP commands. Spawn/delete/transform actors, manage blueprints, materials, animation blueprints, and any UObject property via reflection. Use when the user asks to create, modify, or query anything in UE5 editor, or mentions UE5, Unreal, actors, blueprints, levels, materials, animati... | ue5-editor-control |
npx skills add https://github.com/199-biotechnologies/claude-deep-research-skill --skill deep-research | # Deep Research
## Core System Instructions
**Purpose:** Deliver citation-backed, verified research reports through 8-phase pipeline (Scope → Plan → Retrieve → Triangulate → Synthesize → Critique → Refine → Package) with source credibility scoring and progressive context management.
**Context Strategy:** This skill ... | 199-biotechnologies/claude-deep-research-skill/deep-research | Conduct enterprise-grade research with multi-source synthesis, citation tracking, and verification. Use when user needs comprehensive analysis requiring 10+ sources, verified claims, or comparison of approaches. Triggers include "deep research", "comprehensive analysis", "research report", "compare X vs Y", or "analyze... | deep-research |
npx skills add https://github.com/199-biotechnologies/claude-skill-seo-geo-optimizer --skill seo-geo-optimizer | # SEO/GEO/AEO Optimizer Guide
## Overview
This skill analyzes content for SEO/GEO/AEO optimization across traditional search engines, AI platforms, and answer engines. Use it to audit content files, generate schema markup, validate metadata, extract keywords, and produce comprehensive reports with actionable recommen... | 199-biotechnologies/claude-skill-seo-geo-optimizer/seo-geo-optimizer | Comprehensive SEO/GEO/AEO analysis toolkit for optimizing content visibility across traditional search engines (Google, Bing), AI platforms (ChatGPT, Perplexity, Claude, Gemini, Grokipedia), answer engines (Google AI Overviews, Bing Copilot, featured snippets), voice assistants (Google Assistant, Siri, Alexa), and soci... | seo-geo-optimizer |
npx skills add https://github.com/1999azzar/iot-architect-skill --skill iot-architect | # IoT Architect
## Setup (Hardware)
1. Use `assets/templates/esp32/secrets.h.example` as a template.
2. Rename to `secrets.h` and fill in credentials.
3. Include `#include "secrets.h"` in your main `.ino`/`.cpp` file.
4. Ensure `secrets.h` is in `.gitignore`.
## Usage
* **Role** : Embedded Systems Archi... | 1999azzar/iot-architect-skill/iot-architect | Expert in IoT system design, hardware selection (ESP32, LoRa), and firmware architecture (Arduino, PlatformIO). Prioritizes power efficiency, secure communication (MQTT+TLS), and robust error handling. | iot-architect |
npx skills add https://github.com/1mangesh1/dev-skills-collection --skill ai-prompting | # AI Prompting & LLM Patterns
Prompt engineering techniques and LLM interaction patterns for Claude, GPT, and other AI models.
## Prompt Techniques
### Basic Structure
Role: [Specify role/expertise]
Task: [Clear, specific task]
Context: [Relevant background]
Format: [Desired output format]
... | 1mangesh1/dev-skills-collection/ai-prompting | AI prompt engineering and LLM interaction patterns. Use when user asks to "write prompts", "optimize prompts", "design system prompts", "few-shot prompting", "chain-of-thought", "prompt techniques", "LLM patterns", "prompt best practices", "model interactions", "AI assistant design", or mentions prompt optimization, LL... | ai-prompting |
npx skills add https://github.com/1mangesh1/dev-skills-collection --skill database-indexing | # Database Indexing & Query Optimization
Strategies for optimizing database queries through proper indexing and schema design.
## Index Types
### B-Tree Index
* Default for most databases (MySQL, PostgreSQL)
* Balanced tree structure
* Good for range queries and sorting
### Hash Index
* O(1) lookup for ... | 1mangesh1/dev-skills-collection/database-indexing | Database indexing strategies and query optimization. Use when user asks to "optimize queries", "create indexes", "database performance", "query analysis", "explain plans", "index selection", "slow queries", "database tuning", "schema optimization", or mentions database performance and query optimization. | database-indexing |
npx skills add https://github.com/1mangesh1/dev-skills-collection --skill dependency-audit | # Dependency Audit
Audit, update, and manage dependencies safely.
## npm / Node.js
### Audit
# Run security audit
npm audit
npm audit --json # Machine-readable
npm audit --production # Production deps only
# Fix automatically
npm audit fix
npm audit fix ... | 1mangesh1/dev-skills-collection/dependency-audit | Dependency auditing, updating, and vulnerability management for npm, pip, and other package managers. Use when user asks to "audit dependencies", "update packages", "fix vulnerabilities", "check outdated", "npm audit", "pip audit", "upgrade dependencies safely", or any dependency management tasks. | dependency-audit |
npx skills add https://github.com/1mangesh1/dev-skills-collection --skill microservices-architecture | # Microservices Architecture
Patterns and best practices for designing and implementing microservices architectures.
## Core Patterns
### Service Decomposition
* Domain-driven design (bounded contexts)
* Business capability based
* Ownership clarity
* Technology diversity
### API Gateway Pattern
... | 1mangesh1/dev-skills-collection/microservices-architecture | Microservices architecture patterns and design. Use when user asks to "design microservices", "service decomposition", "API gateway", "distributed transactions", "circuit breaker", "service mesh", "event-driven architecture", "saga pattern", "service discovery", or mentions microservices design patterns and distributed... | microservices-architecture |
npx skills add https://github.com/1mangesh1/dev-skills-collection --skill pytest | # pytest
Complete Python testing toolkit with pytest.
## Running Tests
# Run all tests
pytest
# Run specific file/directory
pytest tests/test_api.py
pytest tests/
# Run specific test
pytest tests/test_api.py::test_login
pytest tests/test_api.py::TestUserClass::test_... | 1mangesh1/dev-skills-collection/pytest | Python testing mastery with pytest, fixtures, parametrize, mocking, and coverage. Use when user asks to "write tests", "add pytest fixtures", "mock a function", "parametrize tests", "run coverage", "debug failing test", "set up conftest", or any Python testing tasks. | pytest |
npx skills add https://github.com/1mangesh1/dev-skills-collection --skill python-env | # Python Environment Management
Virtual environments, dependency management, and Python version control.
## venv (Built-in)
# Create virtual environment
python -m venv .venv
python3 -m venv .venv
# Activate
source .venv/bin/activate # Linux/macOS
.venv\Scripts\activate ... | 1mangesh1/dev-skills-collection/python-env | Python environment management with venv, Poetry, Pipenv, pyenv, and conda. Use when user asks to "create virtual environment", "set up Poetry", "manage Python versions", "fix pip issues", "install dependencies", "create requirements.txt", or any Python environment tasks. | python-env |
npx skills add https://github.com/1mangesh1/dev-skills-collection --skill redis | # Redis
Caching, data structures, and real-time patterns.
## CLI Basics
# Connect
redis-cli
redis-cli -h hostname -p 6379 -a password
# Ping
redis-cli ping # PONG
# Info
redis-cli info
redis-cli info memory
redis-cli info keyspace
## Strings
... | 1mangesh1/dev-skills-collection/redis | Redis mastery for caching, data structures, pub/sub, and CLI operations. Use when user asks to "set up Redis", "cache data", "redis commands", "pub/sub", "redis data types", "session store", "rate limiting with Redis", or any Redis tasks. | redis |
npx skills add https://github.com/1mangesh1/dev-skills-collection --skill web-performance | # Web Performance Optimization
Strategies and techniques for optimizing web application performance and user experience.
## Core Web Vitals
### Largest Contentful Paint (LCP)
* Time to largest content element visible
* Target: < 2.5 seconds
* Optimize: image size, server response, render-blocking resources
... | 1mangesh1/dev-skills-collection/web-performance | Web and frontend performance optimization. Use when user asks to "optimize performance", "improve loading time", "lazy loading", "code splitting", "bundle size", "Core Web Vitals", "image optimization", "CSS/JS minification", "caching strategies", "performance profiling", or mentions web performance and user experience... | web-performance |
npx skills add https://github.com/1mangesh1/dev-skills --skill fhir-hl7-validator | # FHIR & HL7 Validator
Healthcare data format validation skill for AI agents. Validates FHIR R5 resources, HL7 v2 messages, and CDA clinical documents. Ensures healthcare data interchange compliance with HL7 standards and identifies schema violations, missing required fields, and interoperability issues.
## Capabilit... | 1mangesh1/dev-skills/fhir-hl7-validator | This skill should be used when the user asks to "validate FHIR resources", "check HL7 messages", "validate healthcare data format", "parse FHIR", "HL7 v2 messages", "FHIR R5 validation", "CDA documents", "healthcare data interchange", "FHIR resource schema", "HL7 specifications", or mentions FHIR validation, HL7 messag... | fhir-hl7-validator |
npx skills add https://github.com/1mangesh1/dev-skills --skill healthcare-audit-logger | # Healthcare Audit Logger
Comprehensive HIPAA audit logging and event tracking skill for AI agents. Generates immutable audit trails for healthcare systems, tracks PHI access, monitors authentication events, and ensures compliance with 45 CFR §164.312(b) audit control requirements.
## Capabilities
1. **Audit Log G... | 1mangesh1/dev-skills/healthcare-audit-logger | This skill should be used when the user asks to "generate audit logs", "create HIPAA audit trail", "log healthcare events", "configure audit logging", "track PHI access", "maintain compliance logs", "audit log format", "healthcare event logging", "access control logging", "authentication logging", "HIPAA logging requir... | healthcare-audit-logger |
npx skills add https://github.com/1mangesh1/dev-skills --skill hipaa-guardian | # HIPAA Guardian
A comprehensive PHI/PII detection and HIPAA compliance skill for AI agents, with a strong focus on developer code security patterns. Detects all 18 HIPAA Safe Harbor identifiers in data files and source code, provides risk scoring, maps findings to HIPAA regulations, and generates audit reports with r... | 1mangesh1/dev-skills/hipaa-guardian | This skill should be used when the user asks to "scan for PHI", "detect PII", "HIPAA compliance check", "audit for protected health information", "find sensitive healthcare data", "generate HIPAA audit report", "check code for PHI leakage", "scan logs for PHI", "check authentication on PHI endpoints", "scan FHIR resour... | hipaa-guardian |
npx skills add https://github.com/1mangesh1/hipaa-guardian --skill hipaa-guardian | # HIPAA Guardian
A comprehensive PHI/PII detection and HIPAA compliance skill for AI agents, with a strong focus on developer code security patterns. Detects all 18 HIPAA Safe Harbor identifiers in data files and source code, provides risk scoring, maps findings to HIPAA regulations, and generates audit reports with r... | 1mangesh1/hipaa-guardian/hipaa-guardian | This skill should be used when the user asks to "scan for PHI", "detect PII", "HIPAA compliance check", "audit for protected health information", "find sensitive healthcare data", "generate HIPAA audit report", "check code for PHI leakage", "scan logs for PHI", "check authentication on PHI endpoints", "scan FHIR resour... | hipaa-guardian |
npx skills add https://github.com/1naichii/ai-code-tools --skill convert-url-html-to-md | # Convert URL HTML to Markdown
Extract web content as markdown using a two-phase approach for comprehensive documentation gathering.
## Two-Phase Workflow
For optimal documentation extraction:
1. **Discovery (clean=false)** : Get full page including navigation and sidebars to discover all documentation URLs
2. ... | 1naichii/ai-code-tools/convert-url-html-to-md | Convert HTML web pages to Markdown for documentation extraction. Use when fetching documentation from websites, extracting structured content, getting clean main content (clean=true), or getting full page with nav/sidebar to discover URLs (clean=false). Ideal for learning libraries and building context from web sources... | convert-url-html-to-md |
npx skills add https://github.com/1naichii/ai-code-tools --skill daisyui | # daisyUI 5
## Overview
daisyUI 5 is a CSS component library for Tailwind CSS 4 that provides class names for common UI components. Use it to rapidly build consistent, accessible, and theme-aware web interfaces.
## Installation
daisyUI 5 requires Tailwind CSS 4. The `tailwind.config.js` file is deprecated in Tailwi... | 1naichii/ai-code-tools/daisyui | CSS component library for Tailwind CSS 4 providing pre-built UI components with semantic class names. Use when building web interfaces with HTML/Tailwind that need: (1) Rapid UI development with consistent styling, (2) Accessible component patterns (buttons, forms, modals, etc.), (3) Theme-aware color systems that work... | daisyui |
npx skills add https://github.com/1naichii/ai-code-tools --skill fetch-url-md | # Fetch URL with Markdown Detection
## Overview
Efficiently fetch web content by prioritizing markdown versions when available. Uses curl to check for .md versions first, then falls back to the original URL.
## Workflow
Follow these steps sequentially:
### 1\. Parse the original URL
Extract the base URL and path ... | 1naichii/ai-code-tools/fetch-url-md | fetch-url-md | |
npx skills add https://github.com/1naichii/ai-code-tools --skill inertia | # Inertia.js
Modern monolith framework for building SPAs without APIs. Combine server-side framework power with React/Vue/Svelte frontends.
## Core Concept
Inertia replaces your view layer - controllers return JavaScript page components instead of server-side templates. The `<Link>` component intercepts clicks for X... | 1naichii/ai-code-tools/inertia | Build modern monolith applications with Inertia.js - combining server-side frameworks (Laravel, Rails, etc.) with React/Vue/Svelte frontends without building APIs. Use when creating Inertia pages and layouts, working with Link component for navigation, building forms with Form component or useForm hook, handling valida... | inertia |
npx skills add https://github.com/1naichii/ai-code-tools --skill laravel-livewire | # Laravel Livewire
## Overview
Build dynamic, reactive Laravel interfaces using only PHP. Livewire v4+ handles server-side rendering with automatic client-side updates via hydration/dehydration—no JavaScript required.
## Quick Start
### Installation
composer require livewire/livewire
php artisan l... | 1naichii/ai-code-tools/laravel-livewire | laravel-livewire | |
npx skills add https://github.com/1naichii/ai-code-tools --skill lucide-laravel | # Lucide Laravel
Laravel Blade integration for the [Lucide](https://lucide.dev) icon library - 1,666+ beautiful, consistent SVG icons.
## Installation
composer require mallardduck/blade-lucide-icons
Clear view cache if icons don't appear:
php artisan view:clear
## Quick Start
... | 1naichii/ai-code-tools/lucide-laravel | Lucide icon library integration for Laravel Blade templates. Use when working with Lucide icons in Laravel applications, Blade components with the x-lucide- prefix, icon styling with Tailwind CSS, dynamic icon rendering in Blade, or any Laravel view work requiring SVG icons. Keywords include lucide icons, blade icons, ... | lucide-laravel |
npx skills add https://github.com/1nf-sh/skills --skill agent-browser | # Agentic Browser
Browser automation for AI agents via [inference.sh](https://inference.sh). Uses Playwright under the hood with a simple `@e` ref system for element interaction.

Run 150+ AI apps in the cloud with a simple CLI. No GPU required.

## Install CLI
curl -fsSL h... | 1nf-sh/skills/agent-tools | Run 150+ AI apps via inference.sh CLI - image generation, video creation, LLMs, search, 3D, Twitter automation. Models: FLUX, Veo, Gemini, Grok, Claude, Seedance, OmniHuman, Tavily, Exa, OpenRouter, and many more. Use when running AI apps, generating images/videos, calling LLMs, web search, or automating Twitter. Trigg... | agent-tools |
npx skills add https://github.com/1nf-sh/skills --skill agent-ui | # Agent Component

Batteries-included agent component from [ui.inference.sh](https://ui.inference.sh).
## Quick Start
# Install th... | 1nf-sh/skills/agent-ui | | | agent-ui |
npx skills add https://github.com/1nf-sh/skills --skill ai-avatar-video | # AI Avatar & Talking Head Videos
Create AI avatars and talking head videos via [inference.sh](https://inference.sh) CLI.

## Qu... | 1nf-sh/skills/ai-avatar-video | ai-avatar-video | |
npx skills add https://github.com/1nf-sh/skills --skill ai-image-generation | # AI Image Generation
Generate images with 50+ AI models via [inference.sh](https://inference.sh) CLI.

## Quick Start
# Insta... | 1nf-sh/skills/ai-image-generation | ai-image-generation | |
npx skills add https://github.com/1nf-sh/skills --skill ai-marketing-videos | # AI Marketing Videos
Create professional marketing videos via [inference.sh](https://inference.sh) CLI.

## Quick Start
curl ... | 1nf-sh/skills/ai-marketing-videos | ai-marketing-videos | |
npx skills add https://github.com/1nf-sh/skills --skill ai-music-generation | # AI Music Generation

Generate music and songs via [inference.sh](https://inference.sh) CLI.
## Quick Start
# Install CLI
curl -fsSL htt... | 1nf-sh/skills/ai-music-generation | ai-music-generation | |
npx skills add https://github.com/1nf-sh/skills --skill ai-podcast-creation | # AI Podcast Creation

Create AI-powered podcasts and audio content via [inference.sh](https://inference.sh) CLI.
## Quick Start
curl -fsSL h... | 1nf-sh/skills/ai-podcast-creation | ai-podcast-creation | |
npx skills add https://github.com/1nf-sh/skills --skill ai-product-photography | # AI Product Photography
Generate professional product photography via [inference.sh](https://inference.sh) CLI.

## Quick Start
... | 1nf-sh/skills/ai-product-photography | ai-product-photography | |
npx skills add https://github.com/1nf-sh/skills --skill ai-rag-pipeline | # AI RAG Pipeline

Build RAG (Retrieval Augmented Generation) pipelines via [inference.sh](https://inference.sh) CLI.
## Quick Start
... | 1nf-sh/skills/ai-rag-pipeline | ai-rag-pipeline | |
npx skills add https://github.com/1nf-sh/skills --skill ai-social-media-content | # AI Social Media Content
Create social media content for all platforms via [inference.sh](https://inference.sh) CLI.

## Quick Start
... | 1nf-sh/skills/ai-social-media-content | ai-social-media-content | |
npx skills add https://github.com/1nf-sh/skills --skill ai-video-generation | # AI Video Generation
Generate videos with 40+ AI models via [inference.sh](https://inference.sh) CLI.

## Quick Start
# Insta... | 1nf-sh/skills/ai-video-generation | ai-video-generation | |
npx skills add https://github.com/1nf-sh/skills --skill ai-voice-cloning | # AI Voice Generation

Generate natural AI voices via [inference.sh](https://inference.sh) CLI.
## Quick Start
curl -fsSL https://cli.inferen... | 1nf-sh/skills/ai-voice-cloning | ai-voice-cloning | |
npx skills add https://github.com/1nf-sh/skills --skill app-store-screenshots | # App Store Screenshots
Create app store screenshots and preview videos via [inference.sh](https://inference.sh) CLI.
## Quick Start
curl -fsSL https://cli.inference.sh | sh && infsh login
# Generate a device mockup scene
infsh app run falai/flux-dev-lora --input '{
"prompt": "iPhone ... | 1nf-sh/skills/app-store-screenshots | app-store-screenshots | |
npx skills add https://github.com/1nf-sh/skills --skill background-removal | # Background Removal
Remove backgrounds from images via [inference.sh](https://inference.sh) CLI.

## Quick Start
curl -fsSL https://cli.infer... | 1nf-sh/skills/background-removal | background-removal | |
npx skills add https://github.com/1nf-sh/skills --skill book-cover-design | # Book Cover Design
Create genre-appropriate book covers with AI image generation via [inference.sh](https://inference.sh) CLI.
## Quick Start
curl -fsSL https://cli.inference.sh | sh && infsh login
# Generate a thriller cover concept
infsh app run falai/flux-dev-lora --input '{
"prom... | 1nf-sh/skills/book-cover-design | book-cover-design | |
npx skills add https://github.com/1nf-sh/skills --skill case-study-writing | # Case Study Writing
Create compelling B2B case studies with research and visuals via [inference.sh](https://inference.sh) CLI.
## Quick Start
curl -fsSL https://cli.inference.sh | sh && infsh login
# Research the customer's industry
infsh app run tavily/search-assistant --input '{
"q... | 1nf-sh/skills/case-study-writing | case-study-writing | |
npx skills add https://github.com/1nf-sh/skills --skill character-design-sheet | # Character Design Sheet
Create consistent characters across multiple AI-generated images via [inference.sh](https://inference.sh) CLI.
## Quick Start
curl -fsSL https://cli.inference.sh | sh && infsh login
# Generate a character concept
infsh app run falai/flux-dev-lora --input '{
"p... | 1nf-sh/skills/character-design-sheet | character-design-sheet | |
npx skills add https://github.com/1nf-sh/skills --skill chat-ui | # Chat UI Components

Chat building blocks from [ui.inference.sh](https://ui.inference.sh).
## Quick Start
# Install chat compo... | 1nf-sh/skills/chat-ui | chat-ui | |
npx skills add https://github.com/1nf-sh/skills --skill competitor-teardown | # Competitor Teardown
Structured competitive analysis with research and screenshots via [inference.sh](https://inference.sh) CLI.
## Quick Start
curl -fsSL https://cli.inference.sh | sh && infsh login
# Research competitor landscape
infsh app run tavily/search-assistant --input '{
"qu... | 1nf-sh/skills/competitor-teardown | competitor-teardown | |
npx skills add https://github.com/1nf-sh/skills --skill data-visualization | # Data Visualization
Create clear, effective data visualizations via [inference.sh](https://inference.sh) CLI.
## Quick Start
curl -fsSL https://cli.inference.sh | sh && infsh login
# Generate a chart with Python
infsh app run infsh/python-executor --input '{
"code": "import matplotli... | 1nf-sh/skills/data-visualization | data-visualization | |
npx skills add https://github.com/1nf-sh/skills --skill dialogue-audio | # Dialogue Audio
Create realistic multi-speaker dialogue with Dia TTS via [inference.sh](https://inference.sh) CLI.
## Quick Start
curl -fsSL https://cli.inference.sh | sh && infsh login
# Two-speaker conversation
infsh app run falai/dia-tts --input '{
"prompt": "[S1] Have you tried t... | 1nf-sh/skills/dialogue-audio | dialogue-audio | |
npx skills add https://github.com/1nf-sh/skills --skill email-design | # Email Design
Design high-converting marketing emails with AI-generated visuals via [inference.sh](https://inference.sh) CLI.
## Quick Start
curl -fsSL https://cli.inference.sh | sh && infsh login
# Generate email header banner
infsh app run infsh/html-to-image --input '{
"html": "<d... | 1nf-sh/skills/email-design | email-design | |
npx skills add https://github.com/1nf-sh/skills --skill flux-image | # FLUX Image Generation
Generate images with FLUX models via [inference.sh](https://inference.sh) CLI.

## Quick Start
curl ... | 1nf-sh/skills/flux-image | flux-image | |
npx skills add https://github.com/1nf-sh/skills --skill image-to-video | # Image to Video
Convert still images to animated videos via [inference.sh](https://inference.sh) CLI.
## Quick Start
curl -fsSL https://cli.inference.sh | sh && infsh login
# Generate a still image
infsh app run falai/flux-dev-lora --input '{
"prompt": "serene mountain lake at sunset... | 1nf-sh/skills/image-to-video | image-to-video | |
npx skills add https://github.com/1nf-sh/skills --skill landing-page-design | # Landing Page Design
Design high-converting landing pages with AI-generated visuals via [inference.sh](https://inference.sh) CLI.
## Quick Start
curl -fsSL https://cli.inference.sh | sh && infsh login
# Generate a hero image
infsh app run falai/flux-dev-lora --input '{
"prompt": "pro... | 1nf-sh/skills/landing-page-design | landing-page-design | |
npx skills add https://github.com/1nf-sh/skills --skill linkedin-content | # LinkedIn Content
Write high-engagement LinkedIn posts via [inference.sh](https://inference.sh) CLI.
## Quick Start
curl -fsSL https://cli.inference.sh | sh && infsh login
# Research trending LinkedIn content patterns
infsh app run tavily/search-assistant --input '{
"query": "LinkedI... | 1nf-sh/skills/linkedin-content | linkedin-content | |
npx skills add https://github.com/1nf-sh/skills --skill llm-models | # LLM Models via OpenRouter

Access 100+ language models via [inference.sh](https://inference.sh) CLI.
## Quick Start
cu... | 1nf-sh/skills/llm-models | llm-models | |
npx skills add https://github.com/1nf-sh/skills --skill logo-design-guide | # Logo Design Guide
Design effective logos with AI image generation via [inference.sh](https://inference.sh) CLI.
## Quick Start
curl -fsSL https://cli.inference.sh | sh && infsh login
# Generate a logo concept
infsh app run falai/flux-dev-lora --input '{
"prompt": "flat vector logo o... | 1nf-sh/skills/logo-design-guide | logo-design-guide | |
npx skills add https://github.com/1nf-sh/skills --skill newsletter-curation | # Newsletter Curation
Create and curate high-quality newsletters via [inference.sh](https://inference.sh) CLI.
## Quick Start
curl -fsSL https://cli.inference.sh | sh && infsh login
# Find content to curate
infsh app run tavily/search-assistant --input '{
"query": "most important AI d... | 1nf-sh/skills/newsletter-curation | newsletter-curation | |
npx skills add https://github.com/1nf-sh/skills --skill og-image-design | # OG Image Design
Create social sharing images (Open Graph) via [inference.sh](https://inference.sh) CLI.
## Quick Start
curl -fsSL https://cli.inference.sh | sh && infsh login
# Generate an OG image with HTML-to-image
infsh app run infsh/html-to-image --input '{
"html": "<div style=\... | 1nf-sh/skills/og-image-design | og-image-design | |
npx skills add https://github.com/1nf-sh/skills --skill pitch-deck-visuals | # Pitch Deck Visuals
Create investor-ready pitch deck visuals via [inference.sh](https://inference.sh) CLI.
## Quick Start
curl -fsSL https://cli.inference.sh | sh && infsh login
# Generate a slide background
infsh app run infsh/html-to-image --input '{
"html": "<div style=\"width:192... | 1nf-sh/skills/pitch-deck-visuals | pitch-deck-visuals | |
npx skills add https://github.com/1nf-sh/skills --skill press-release-writing | # Press Release Writing
Write professional press releases with research and fact-checking via [inference.sh](https://inference.sh) CLI.
## Quick Start
curl -fsSL https://cli.inference.sh | sh && infsh login
# Research for fact-checking and context
infsh app run tavily/search-assistant --inp... | 1nf-sh/skills/press-release-writing | press-release-writing | |
npx skills add https://github.com/1nf-sh/skills --skill product-changelog | # Product Changelog
Write changelogs and release notes that users read and care about via [inference.sh](https://inference.sh) CLI.
## Quick Start
curl -fsSL https://cli.inference.sh | sh && infsh login
# Generate a feature announcement visual
infsh app run falai/flux-dev-lora --input '{
... | 1nf-sh/skills/product-changelog | product-changelog | |
npx skills add https://github.com/1nf-sh/skills --skill product-hunt-launch | # Product Hunt Launch
Optimize your Product Hunt launch with research and visuals via [inference.sh](https://inference.sh) CLI.
## Quick Start
curl -fsSL https://cli.inference.sh | sh && infsh login
# Generate gallery hero image
infsh app run falai/flux-dev-lora --input '{
"prompt": "... | 1nf-sh/skills/product-hunt-launch | product-hunt-launch | |
npx skills add https://github.com/1nf-sh/skills --skill product-photography | # Product Photography
Create professional product images with AI via [inference.sh](https://inference.sh) CLI.
## Quick Start
curl -fsSL https://cli.inference.sh | sh && infsh login
# Clean studio packshot
infsh app run bytedance/seedream-4-5 --input '{
"prompt": "professional product... | 1nf-sh/skills/product-photography | product-photography | |
npx skills add https://github.com/1nf-sh/skills --skill prompt-engineering | # Prompt Engineering Guide
Master prompt engineering for AI models via [inference.sh](https://inference.sh) CLI.

## Quick Start
... | 1nf-sh/skills/prompt-engineering | prompt-engineering | |
npx skills add https://github.com/1nf-sh/skills --skill python-sdk | # Python SDK
Build AI applications with the [inference.sh](https://inference.sh) Python SDK.

## Quick Start
pip install inferencesh
... | 1nf-sh/skills/python-sdk | Python SDK for inference.sh - run AI apps, build agents, and integrate with 150+ models. Package: inferencesh (pip install inferencesh). Supports sync/async, streaming, file uploads. Build agents with template or ad-hoc patterns, tool builder API, skills, and human approval. Use for: Python integration, AI apps, agent ... | python-sdk |
npx skills add https://github.com/1nf-sh/skills --skill related-skill | # Related Skills Discovery
Find and install complementary skills to expand your AI agent's capabilities.

## Quick Start
... | 1nf-sh/skills/related-skill | related-skill | |
npx skills add https://github.com/1nf-sh/skills --skill seo-content-brief | # SEO Content Brief
Create data-driven content briefs via [inference.sh](https://inference.sh) CLI.
## Quick Start
curl -fsSL https://cli.inference.sh | sh && infsh login
# Research target keyword
infsh app run tavily/search-assistant --input '{
"query": "best project management tools... | 1nf-sh/skills/seo-content-brief | seo-content-brief | |
npx skills add https://github.com/1nf-sh/skills --skill social-media-carousel | # Social Media Carousel
Design high-engagement carousel posts via [inference.sh](https://inference.sh) CLI.
## Quick Start
curl -fsSL https://cli.inference.sh | sh && infsh login
# Generate a carousel slide
infsh app run infsh/html-to-image --input '{
"html": "<div style=\"width:1080p... | 1nf-sh/skills/social-media-carousel | social-media-carousel | |
npx skills add https://github.com/1nf-sh/skills --skill speech-to-text | # Speech-to-Text

Transcribe audio to text via [inference.sh](https://inference.sh) CLI.
## Quick Start
curl -fsSL https://cli.inference.sh | sh &... | 1nf-sh/skills/speech-to-text | speech-to-text | |
npx skills add https://github.com/1nf-sh/skills --skill talking-head-production | # Talking Head Production
Create talking head videos with AI avatars and lipsync via [inference.sh](https://inference.sh) CLI.
## Quick Start
curl -fsSL https://cli.inference.sh | sh && infsh login
# Generate dialogue audio
infsh app run falai/dia-tts --input '{
"prompt": "[S1] Welcom... | 1nf-sh/skills/talking-head-production | talking-head-production | |
npx skills add https://github.com/1nf-sh/skills --skill technical-blog-writing | # Technical Blog Writing
Write developer-focused technical blog posts via [inference.sh](https://inference.sh) CLI.
## Quick Start
curl -fsSL https://cli.inference.sh | sh && infsh login
# Research topic depth
infsh app run exa/search --input '{
"query": "building REST API Node.js bes... | 1nf-sh/skills/technical-blog-writing | technical-blog-writing | |
npx skills add https://github.com/1nf-sh/skills --skill tools-ui | # Tool UI Components

Tool lifecycle components from [ui.inference.sh](https://ui.inference.sh).
## Quick Start
npx shadcn@late... | 1nf-sh/skills/tools-ui | tools-ui | |
npx skills add https://github.com/1nf-sh/skills --skill twitter-automation | # Twitter/X Automation
Automate Twitter/X via [inference.sh](https://inference.sh) CLI.

## Quick Start
# Install CLI
cur... | 1nf-sh/skills/twitter-automation | twitter-automation | |
npx skills add https://github.com/1nf-sh/skills --skill twitter-thread-creation | # Twitter/X Thread Creation
Write high-engagement Twitter/X threads via [inference.sh](https://inference.sh) CLI.
## Quick Start
curl -fsSL https://cli.inference.sh | sh && infsh login
# Post a tweet
infsh app run x/post-create --input '{
"text": "I analyzed 1,000 landing pages.\n\n90... | 1nf-sh/skills/twitter-thread-creation | twitter-thread-creation | |
npx skills add https://github.com/1nf-sh/skills --skill video-ad-specs | # Video Ad Specs
Create platform-specific video ads via [inference.sh](https://inference.sh) CLI.
## Quick Start
curl -fsSL https://cli.inference.sh | sh && infsh login
# Generate a vertical video ad scene
infsh app run bytedance/seedance-1-5-pro --input '{
"prompt": "vertical video, ... | 1nf-sh/skills/video-ad-specs | video-ad-specs | |
npx skills add https://github.com/1nf-sh/skills --skill video-prompting-guide | # Video Prompting Guide
Best practices for writing effective AI video generation prompts via [inference.sh](https://inference.sh).

## Qui... | 1nf-sh/skills/video-prompting-guide | video-prompting-guide | |
npx skills add https://github.com/1nf-sh/skills --skill web-search | # Web Search & Extraction
Search the web and extract content via [inference.sh](https://inference.sh) CLI.

## Quick Start
... | 1nf-sh/skills/web-search | web-search | |
npx skills add https://github.com/1nf-sh/skills --skill widgets-ui | # Widget Renderer

Declarative UI from JSON via [ui.inference.sh](https://ui.inference.sh).
## Quick Start
npx shadcn@latest add https://ui.infer... | 1nf-sh/skills/widgets-ui | widgets-ui | |
npx skills add https://github.com/1nf-sh/skills --skill youtube-thumbnail-design | # YouTube Thumbnail Design
Create high-CTR YouTube thumbnails with AI image generation via [inference.sh](https://inference.sh) CLI.
## Quick Start
curl -fsSL https://cli.inference.sh | sh && infsh login
# Generate a thumbnail
infsh app run falai/flux-dev-lora --input '{
"prompt": "Yo... | 1nf-sh/skills/youtube-thumbnail-design | youtube-thumbnail-design | |
npx skills add https://github.com/1nference-sh/skills --skill agent-browser | # Agentic Browser
Browser automation for AI agents via [inference.sh](https://inference.sh). Uses Playwright under the hood with a simple `@e` ref system for element interaction.

Run 150+ AI apps in the cloud with a simple CLI. No GPU required.

## Install CLI
curl -fsSL h... | 1nference-sh/skills/agent-tools | Run 150+ AI apps via inference.sh CLI - image generation, video creation, LLMs, search, 3D, Twitter automation. Models: FLUX, Veo, Gemini, Grok, Claude, Seedance, OmniHuman, Tavily, Exa, OpenRouter, and many more. Use when running AI apps, generating images/videos, calling LLMs, web search, or automating Twitter. Trigg... | agent-tools |
npx skills add https://github.com/1nference-sh/skills --skill agent-ui | * * *
## name: agent-ui description: "Batteries-included agent component for React/Next.js from ui.inference.sh. One component with runtime, tools, streaming, approvals, and widgets built in. Capabilities: drop-in agent, human-in-the-loop, client-side tools, form filling. Use for: building AI chat interfaces, agentic ... | 1nference-sh/skills/agent-ui | agent-ui | |
npx skills add https://github.com/1nference-sh/skills --skill ai-automation-workflows | # AI Automation Workflows
Build automated AI workflows via [inference.sh](https://inference.sh) CLI.

## Quick Start
curl ... | 1nference-sh/skills/ai-automation-workflows | ai-automation-workflows | |
npx skills add https://github.com/1nference-sh/skills --skill ai-avatar-video | # AI Avatar & Talking Head Videos
Create AI avatars and talking head videos via [inference.sh](https://inference.sh) CLI.

## Qu... | 1nference-sh/skills/ai-avatar-video | ai-avatar-video | |
npx skills add https://github.com/1nference-sh/skills --skill ai-content-pipeline | # AI Content Pipeline
Build multi-step content creation pipelines via [inference.sh](https://inference.sh) CLI.

## Quick Start
... | 1nference-sh/skills/ai-content-pipeline | ai-content-pipeline | |
npx skills add https://github.com/1nference-sh/skills --skill ai-image-generation | # AI Image Generation
Generate images with 50+ AI models via [inference.sh](https://inference.sh) CLI.

## Quick Start
# Insta... | 1nference-sh/skills/ai-image-generation | ai-image-generation | |
npx skills add https://github.com/1nference-sh/skills --skill ai-marketing-videos | # AI Marketing Videos
Create professional marketing videos via [inference.sh](https://inference.sh) CLI.

## Quick Start
curl ... | 1nference-sh/skills/ai-marketing-videos | ai-marketing-videos | |
npx skills add https://github.com/1nference-sh/skills --skill ai-music-generation | # AI Music Generation
Generate music and songs via [inference.sh](https://inference.sh) CLI.

## Quick Start
# Install CLI
curl -fsSL htt... | 1nference-sh/skills/ai-music-generation | ai-music-generation | |
npx skills add https://github.com/1nference-sh/skills --skill ai-podcast-creation | # AI Podcast Creation
Create AI-powered podcasts and audio content via [inference.sh](https://inference.sh) CLI.

## Quick Start
curl -fsSL h... | 1nference-sh/skills/ai-podcast-creation | ai-podcast-creation | |
npx skills add https://github.com/1nference-sh/skills --skill ai-product-photography | # AI Product Photography
Generate professional product photography via [inference.sh](https://inference.sh) CLI.

## Quick Start
... | 1nference-sh/skills/ai-product-photography | ai-product-photography | |
npx skills add https://github.com/1nference-sh/skills --skill ai-rag-pipeline | # AI RAG Pipeline
Build RAG (Retrieval Augmented Generation) pipelines via [inference.sh](https://inference.sh) CLI.

## Quick Start
... | 1nference-sh/skills/ai-rag-pipeline | ai-rag-pipeline | |
npx skills add https://github.com/1nference-sh/skills --skill ai-social-media-content | # AI Social Media Content
Create social media content for all platforms via [inference.sh](https://inference.sh) CLI.

## Quick Start
... | 1nference-sh/skills/ai-social-media-content | ai-social-media-content | |
npx skills add https://github.com/1nference-sh/skills --skill ai-video-generation | # AI Video Generation
Generate videos with 40+ AI models via [inference.sh](https://inference.sh) CLI.

## Quick Start
# Insta... | 1nference-sh/skills/ai-video-generation | ai-video-generation | |
npx skills add https://github.com/1nference-sh/skills --skill ai-voice-cloning | # AI Voice Generation
Generate natural AI voices via [inference.sh](https://inference.sh) CLI.

## Quick Start
curl -fsSL https://cli.inferen... | 1nference-sh/skills/ai-voice-cloning | ai-voice-cloning | |
npx skills add https://github.com/1nference-sh/skills --skill app-store-screenshots | # App Store Screenshots
Create app store screenshots and preview videos via [inference.sh](https://inference.sh) CLI.
## Quick Start
curl -fsSL https://cli.inference.sh | sh && infsh login
# Generate a device mockup scene
infsh app run falai/flux-dev-lora --input '{
"prompt": "iPhone ... | 1nference-sh/skills/app-store-screenshots | app-store-screenshots | |
npx skills add https://github.com/1nference-sh/skills --skill background-removal | # Background Removal
Remove backgrounds from images via [inference.sh](https://inference.sh) CLI.

## Quick Start
curl -fsSL https://cli.infer... | 1nference-sh/skills/background-removal | background-removal | |
npx skills add https://github.com/1nference-sh/skills --skill case-study-writing | # Case Study Writing
Create compelling B2B case studies with research and visuals via [inference.sh](https://inference.sh) CLI.
## Quick Start
curl -fsSL https://cli.inference.sh | sh && infsh login
# Research the customer's industry
infsh app run tavily/search-assistant --input '{
"q... | 1nference-sh/skills/case-study-writing | case-study-writing | |
npx skills add https://github.com/1nference-sh/skills --skill character-design-sheet | # Character Design Sheet
Create consistent characters across multiple AI-generated images via [inference.sh](https://inference.sh) CLI.
## Quick Start
curl -fsSL https://cli.inference.sh | sh && infsh login
# Generate a character concept
infsh app run falai/flux-dev-lora --input '{
"p... | 1nference-sh/skills/character-design-sheet | character-design-sheet | |
npx skills add https://github.com/1nference-sh/skills --skill chat-ui | * * *
## name: chat-ui description: "Chat UI building blocks for React/Next.js from ui.inference.sh. Components: container, messages, input, typing indicators, avatars. Capabilities: chat interfaces, message lists, input handling, streaming. Use for: building custom chat UIs, messaging interfaces, AI assistants. Trigg... | 1nference-sh/skills/chat-ui | chat-ui | |
npx skills add https://github.com/1nference-sh/skills --skill competitor-teardown | # Competitor Teardown
Structured competitive analysis with research and screenshots via [inference.sh](https://inference.sh) CLI.
## Quick Start
curl -fsSL https://cli.inference.sh | sh && infsh login
# Research competitor landscape
infsh app run tavily/search-assistant --input '{
"qu... | 1nference-sh/skills/competitor-teardown | competitor-teardown | |
npx skills add https://github.com/1nference-sh/skills --skill content-repurposing | # Content Repurposing
Turn one piece of content into many formats via [inference.sh](https://inference.sh) CLI.
## Quick Start
curl -fsSL https://cli.inference.sh | sh && infsh login
# Generate a quote card from a blog pull-quote
infsh app run falai/flux-dev-lora --input '{
"prompt": ... | 1nference-sh/skills/content-repurposing | content-repurposing | |
npx skills add https://github.com/1nference-sh/skills --skill data-visualization | # Data Visualization
Create clear, effective data visualizations via [inference.sh](https://inference.sh) CLI.
## Quick Start
curl -fsSL https://cli.inference.sh | sh && infsh login
# Generate a chart with Python
infsh app run infsh/python-executor --input '{
"code": "import matplotli... | 1nference-sh/skills/data-visualization | data-visualization | |
npx skills add https://github.com/1nference-sh/skills --skill dialogue-audio | # Dialogue Audio
Create realistic multi-speaker dialogue with Dia TTS via [inference.sh](https://inference.sh) CLI.
## Quick Start
curl -fsSL https://cli.inference.sh | sh && infsh login
# Two-speaker conversation
infsh app run falai/dia-tts --input '{
"prompt": "[S1] Have you tried t... | 1nference-sh/skills/dialogue-audio | dialogue-audio | |
npx skills add https://github.com/1nference-sh/skills --skill email-design | # Email Design
Design high-converting marketing emails with AI-generated visuals via [inference.sh](https://inference.sh) CLI.
## Quick Start
curl -fsSL https://cli.inference.sh | sh && infsh login
# Generate email header banner
infsh app run infsh/html-to-image --input '{
"html": "<d... | 1nference-sh/skills/email-design | email-design | |
npx skills add https://github.com/1nference-sh/skills --skill explainer-video-guide | # Explainer Video Guide
Create explainer videos from script to final cut via [inference.sh](https://inference.sh) CLI.
## Quick Start
curl -fsSL https://cli.inference.sh | sh && infsh login
# Generate a scene for an explainer
infsh app run google/veo-3-1-fast --input '{
"prompt": "Cle... | 1nference-sh/skills/explainer-video-guide | explainer-video-guide |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.