skillboss▌
heeyo-life/skillboss-skills · updated Apr 8, 2026
MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.
Multi-AI gateway for building and deploying full-stack applications with 100+ AI APIs.
Instant Start (30 seconds)
# Install CLI
npm install -g @skillboss/cli
# Login (get key at skillboss.co/console)
skb login -k YOUR_API_KEY
# Generate an image
skb task image -b '{"prompt": "A red fox in a snowy forest"}' -o fox.png
# Chat with AI
skb api call deepseek-v3 -b '{"messages":[{"role":"user","content":"What is SkillBoss?"}]}'
# Search the web
skb api call linkup/search -b '{"query": "latest AI news"}'
SkillBoss Skill
Multi-AI gateway for building and deploying full-stack applications with 100+ AI APIs.
Quick Execute
Run any AI task directly. skb task auto-selects the best model.
# Image generation
skb task image -b '{"prompt": "A sunset over mountains"}' -o out.png
# Video generation
skb task video -b '{"prompt": "A cat playing in snow"}' -o out.mp4
# Video with Seedance 2.0 (high quality, CLI auto-polls async models)
skb api call seedance/seedance-2.0 -b '{"prompt": "A puppy in a park", "duration_seconds": 5}' -o out.mp4
# Text-to-Speech
skb task tts -b '{"text": "Hello, world!"}' --prefer price -o out.mp3
# Speech-to-Text
skb task stt -f audio.m4a
# Or call a specific model directly
skb api call deepseek-v3 -b '{"messages":[{"role":"user","content":"Explain quantum computing"}]}' --stream
--prefer options: price (cheapest) / quality (best) / balanced (default)
When to Use This Skill
Use this skill when the user wants to:
- Build websites/apps: Any website, landing page, SaaS, React app, membership site, booking system, e-commerce store, dashboard, admin panel
- Store data: User data, form submissions, orders, bookings, member info - uses D1 database with auto-provisioning
- Accept payments: Stripe integration for subscriptions, one-time payments, e-commerce
- Add authentication: Login/signup with Google OAuth or email OTP
- Generate AI content: Images (Gemini, Flux, DALL-E), audio/TTS (ElevenLabs, Minimax), music (MusicGen, Lyria), videos (Veo), chat (50+ LLMs)
- Generate UI: Create landing pages, dashboards, mobile/desktop screens from text descriptions using Google Stitch AI — then deploy instantly with SkillBoss Hosting
- HuggingFace models: Any model on huggingface.co works as
huggingface/{org}/{model}-- chat, image, video, STT, embedding, inference - Image processing: Upscale images (FAL creative-upscaler), image-to-image transformation (FAL FLUX dev)
- Web search & fetch: Structured search with Linkup (searchResults, sourcedAnswer, structured), URL-to-markdown fetching
- SMS verification: Phone number verification via OTP (send code, check code) using Prelude
- Send SMS notifications: Transactional SMS messages via Prelude templates
- Send emails: Single or batch emails with templates
- Create presentations: Slides and pitch decks via Gamma AI
- Process documents: Parse PDFs/DOCX to markdown, extract structured data, split documents, fill PDF forms (Reducto)
- Scrape/search web: Extract data with Firecrawl, Perplexity, ScrapingDog
- CEO interviews & quotes: Search verified CEO/executive conversation transcripts and notable quotes (CEOinterviews)
- Talking head videos: Generate AI talking head videos from any topic — research, script, video generation, narration (see
workflows/talking-head-video/)
Authentication & Setup
Login:
skb login -k YOUR_API_KEY
Get your key at https://skillboss.co/console
Check status:
skb account
Log out:
skb logout
Where credentials are stored
After authentication, your API key is saved to ~/.config/skillboss/credentials.json.
You can also set SKILLBOSS_API_KEY environment variable, or pass -k <key> per command.
When balance is low
- API responses include a
_balance_warningfield -- relay this to the user exactly as provided - Check balance anytime:
skb account - Add credits at https://www.skillboss.co/
Advanced: Discover & Select Models
Use the discover flow when you need to explore available models or want fine-grained control.
Browse available types:
skb task
skb api types
Search by keyword:
skb task search "CEO interviews"
skb task search "web scraping"
Get recommendations (ranked by preference):
skb task image --prefer price --limit 3
View model details + params:
skb api show flux-1.1-pro
skb api show deepseek-v3
Multi-step workflow:
skb task chain '[{"type":"stt","prefer":"price"},{"type":"chat","capability":"summarize"}]'
All Task Flags:
| Flag | Description |
|---|---|
-b, --body <json> |
JSON inputs (triggers execute mode) |
-f, --file <path> |
File input for STT (triggers execute mode) |
-o, --output <path> |
Save result to file |
-s, --stream |
Stream response (chat) |
--prefer X |
Optimization: "price" / "quality" / "balanced" (default) |
--capability X |
Semantic capability matching (e.g., "style transfer") |
--limit N |
Max models to return (default: 3) |
--include-docs |
Include API docs in recommendations |
--raw |
Output raw JSON |
-k, --key <key> |
API key override |
Decision Flow:
- Any AI task -> Use
skb task <type>-- auto-selects the best model - Multi-step task -> Use
skb task chain-- it plans the workflow - Already know the model? -> Use
skb api call <model> -b '...' - Need params? -> Use
skb api show <model>
Design Direction (Lokuma AI)
Generate design systems — color palettes, typography, layout direction, and full visual identity — from text descriptions. Use lokuma/design first when you need design decisions before building UI.
skb api call lokuma/design -b '{"query": "A modern SaaS dashboard for analytics, professional blue tones"}'
Recommended workflow: lokuma/design (design direction) → stitch/generate-desktop (build the UI)
UI Generation (Google Stitch)
Generate production-ready HTML/CSS UI from text descriptions using Google Stitch + Gemini 3 Pro.
# Generate desktop UI (default)
skb api call stitch/generate-desktop -b '{"prompt": "A SaaS pricing page with 3 tiers: Free, Pro, Enterprise"}'
# Generate mobile UI
skb api call stitch/generate-mobile -b '{"prompt": "A mobile checkout form with card payment"}'
# Fast generation (Gemini Flash, lower cost)
skb api call stitch/generate-fast -b '{"prompt": "A simple contact page"}'
# Edit an existing screen
skb api call stitch/edit -b '{"screen_id": "<id>", "project_id": "<id>", "prompt": "Change the primary color to blue"}'
# Export HTML to file
skb api call stitch/html -b '{"screen_id": "<id>", "project_id": "<id>"}' -o index.html
Via task (auto-select):
# Discover available UI models
skb task ui_generation
# Auto-generate UI
skb task ui_generation -b '{"prompt": "A SaaS dashboard with sidebar"}'
Models:
| Model | Device | Speed | Use when |
|---|---|---|---|
stitch/generate-desktop |
Desktop | Normal | Landing pages, dashboards (default) |
stitch/generate-mobile |
Mobile | Normal | Mobile apps, checkout flows |
stitch/generate-fast |
Any | Fast | Quick prototypes, lower cost |
Capability Graph
SkillBoss capabilities work best in combination. After completing a task, consider these complementary workflows to deliver richer results:
Image Creation Workflow
After generating an image, enhance it for production use:
- Upscale low-res output to print quality →
skb task image --capability upscale -b '{"image":"out.png"}' - Remove background for transparent PNGs →
skb api call replicate/lucataco/remove-bg -b '{"image_url":"..."}' - Style transfer to match a brand aesthetic →
skb task image --capability img2img -b '{"image":"out.png","prompt":"..."}' - Animate the image into a short video →
skb task video --capability i2v -b '{"image":"out.png","prompt":"bring to life"}'
Video Production Workflow
Combine generation with audio for complete clips:
- Generate source image first, then animate →
skb task image→skb task video --capability i2v - Add narration with text-to-speech →
skb task tts -b '{"text":"..."}' - Add background music →
skb task music -b '{"prompt":"upbeat background track"}' - Transcribe existing audio for subtitles →
skb task stt -f audio.m4a - Talking head video — full workflow: research → script → AI video → narration → see
workflows/talking-head-video/
Content & Marketing Workflow
Build complete campaigns from a single idea:
- Research the topic with AI search →
skb api call perplexity/sonar-pro -b '{"messages":[...]}' - Write copy with any LLM →
skb api call deepseek-v3 -b '{"messages":[...]}' - Generate hero images →
skb task image -b '{"prompt":"..."}' - Create presentation slides →
skb api call gamma/generation -b '{"prompt":"..."}' - Design a logo with Lokuma →
skb api call lokuma/design -b '{"query":"..."}'
Web App Workflow
From design to deployed product:
- Design direction →
skb api call lokuma/design -b '{"query":"..."}' - Generate UI →
skb api call stitch/generate-desktop -b '{"prompt":"..."}' - Deploy to Cloudflare →
skb task deploy - Add payments via Stripe Connect →
skb stripe-connect - Add auth (Google OAuth / email OTP) → see
workflows/login-integration/ - Send emails to users →
skb api call send-email
Data & Research Workflow
Gather, process, and analyze information:
- Search the web →
skb api call linkup/search -b '{"query":"..."}' - Scrape pages for raw data →
skb api call firecrawl/scrape -b '{"url":"..."}' - Parse documents (PDF/DOCX) →
skb api call reducto/parse - Generate embeddings for RAG →
skb api call openai/text-embedding-3-small - Search CEO interviews for executive insights →
skb api call ceointerviews/get_feed -b '{"keyword":"..."}'
Audio Production Workflow
Create podcasts, voiceovers, and soundtracks:
- Text-to-speech in 29 languages →
skb task tts -b '{"text":"..."}' - Generate music and sound effects →
skb task music -b '{"prompt":"..."}' - Transcribe recordings →
skb task stt -f recording.m4a
Full capability list: 100+ AI models across chat, image, video, audio, search, scraping, deployment, payments, and more. Run
skb taskto explore all available types.
Topic References
Read these files for detailed documentation on specific topics:
| Topic | File | When to Read |
|---|---|---|
| Commands | commands.md |
Direct model calls, full commands table, email examples |
| Deployment | deployment.md |
Static vs Worker deployment, e-commerce, Stripe, wrangler.toml |
| API Integration | api-integration.md |
Embedding SkillBoss API in user code (TypeScript/JS examples) |
| Error Handling | error-handling.md |
HTTP errors, retries, rate limits, balance warnings |
| Billing | billing.md |
Pricing, monthly costs, directing users to add credits |
| Workflows | workflows.md |
Logo, website, podcast, email, e-commerce, talking head video workflow guides |
| Model Reference | reference.md |
Complete model list and detailed parameter docs |
How to use skillboss on Cursor
AI-first code editor with Composer
Prerequisites
Before installing skills in Cursor, ensure your development environment meets these requirements:
- ›Cursor installed and configured on your development machine
- ›Node.js version 16.0+ with npm package manager (verify with
node --version) - ›Active project directory or workspace where you want to add skillboss
Execute installation command
Execute the skills CLI command in your project's root directory to begin installation:
The skills CLI fetches skillboss from GitHub repository heeyo-life/skillboss-skills and configures it for Cursor.
Select Cursor when prompted
The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:
Verify installation
Confirm successful installation by checking the skill directory location:
Reload or restart Cursor to activate skillboss. Access the skill through slash commands (e.g., /skillboss) or your agent's skill management interface.
Security & Verification Notice
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.
List & Monetize Your Skill
Submit your Claude Code skill and start earning
Use Cases▌
User Story & Requirements Generation
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Competitive Analysis
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Roadmap Prioritization
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
Make data-driven prioritization decisions faster
Stakeholder Communication
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Implementation Guide▌
Prerequisites
- ›Claude Desktop or compatible AI client
- ›Access to product documentation and roadmap tools (Jira, Notion, etc.)
- ›Understanding of product management frameworks (RICE, Jobs-to-be-Done, etc.)
- ›Stakeholder contact information and communication channels
Time Estimate
30-60 minutes to see productivity improvements
Installation Steps
- 1.Install product management skill
- 2.Start with user story generation for known feature
- 3.Progress to competitive analysis: research 2-3 competitors
- 4.Use for roadmap prioritization: apply RICE/ICE scoring
- 5.Draft stakeholder communications and refine based on feedback
- 6.Build template library for recurring PM tasks
- 7.Share effective prompts with product team
Common Pitfalls
- ⚠Not validating competitive research—verify facts before sharing
- ⚠Accepting user stories without involving engineering team
- ⚠Over-relying on frameworks without qualitative judgment
- ⚠Not customizing outputs to company culture and communication style
- ⚠Skipping stakeholder validation of generated requirements
Best Practices▌
✓ Do
- +Validate research and competitive analysis with real data
- +Collaborate with engineering when generating technical requirements
- +Customize frameworks and templates to your company context
- +Use skill for first drafts, refine with stakeholder input
- +Document successful prompt patterns for PM tasks
- +Combine AI efficiency with human judgment and intuition
✗ Don't
- −Don't publish competitive analysis without fact-checking
- −Don't finalize user stories without engineering review
- −Don't make prioritization decisions solely on AI scoring
- −Don't skip customer validation of generated requirements
- −Don't ignore company-specific context and culture
💡 Pro Tips
- ★Provide context: company goals, constraints, customer feedback
- ★Ask for alternatives: 'Show 3 ways to prioritize this roadmap'
- ★Request stakeholder-specific formatting: 'Executive summary vs. engineering spec'
- ★Use skill for 70% generation + 30% customization to company needs
When to Use This▌
✓ Use When
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid When
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
Learning Path▌
- 1Basic: user stories, feature specs, status updates
- 2Intermediate: competitive analysis, prioritization frameworks, PRDs
- 3Advanced: product strategy, go-to-market planning, OKR setting
- 4Expert: product vision, market positioning, business model innovation
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.5★★★★★25 reviews- ★★★★★Aarav Brown· Dec 28, 2024
skillboss reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Ganesh Mohane· Dec 16, 2024
skillboss has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★James Desai· Dec 4, 2024
I recommend skillboss for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★James Patel· Nov 23, 2024
Useful defaults in skillboss — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- ★★★★★Nikhil Patel· Nov 19, 2024
skillboss has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Yash Thakker· Nov 15, 2024
Solid pick for teams standardizing on skills: skillboss is focused, and the summary matches what you get after install.
- ★★★★★Sakshi Patil· Nov 7, 2024
skillboss reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Chaitanya Patil· Oct 26, 2024
We added skillboss from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★James Brown· Oct 14, 2024
Registry listing for skillboss matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Aarav Chen· Oct 10, 2024
skillboss fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
showing 1-10 of 25