Claude Code, Droid, etc. Skills Ability
npx skills add https://github.com/julianromli/ai-skills --skill task-generatorCLI を使用してこのスキルをインストールし、ワークスペースで SKILL.md ワークフローの使用を開始します。
A curated collection of AI agent skills designed to enhance Claude's capabilities with specialized knowledge, workflows, and tool integrations. These skills transform Claude from a general-purpose assistant into a domain-specific expert. Made by Faiz Intifada (@faizntfd)
Skills are modular, self-contained packages that provide:
| Skill | Description | Category |
|---|---|---|
| clone-website | Vibe-clone any website into production-ready Next.js 16 code using Firecrawl MCP | Frontend |
| frontend-design | Create distinctive, production-grade frontend interfaces with high design quality | Frontend |
| frontend-ui-animator | Implement purposeful UI animations for Next.js + Tailwind + React projects | Frontend |
| frontend-ui-integration | Extend user-facing workflows integrating with existing backend APIs | Frontend |
| shadcn-management | Manage shadcn/ui components using MCP tools | Frontend |
| rsc-data-optimizer | Optimize Next.js data fetching with React Server Components | Frontend |
| backend-dev | Comprehensive backend development from API design to deployment | Backend |
| gemini-to-seedream-migration | Migrate AI image generation from Gemini 2.5 Flash to BytePlus SeeDream v4.5 | Migration |
| product-management | PRDs, feature analysis, user research synthesis, and roadmap planning | Planning |
| task-generator | Generate structured task lists from specs or requirements | Planning |
| agents-md-generator | Generate hierarchical AGENTS.md structures for codebases | Documentation |
| browser | Chrome DevTools Protocol tools for browser automation and scraping | Automation |
| skill-creator | Guide for creating effective AI skills | Meta |
| template-skill | Basic template for creating new skills | Meta |
clone-websiteVibe-clone any website into production-ready Next.js 16 code using Firecrawl MCP. Features:
frontend-designCreate distinctive, memorable frontend interfaces that avoid generic "AI slop" aesthetics. Features:
frontend-ui-animatorImplement purposeful, performant UI animations. Includes:
useScrollReveal hookprefers-reduced-motion supportfrontend-ui-integrationImplement or extend user-facing workflows with existing backend APIs. Covers:
shadcn-managementManage shadcn/ui components via MCP tools:
rsc-data-optimizerOptimize slow client-side data fetching to instant server-side rendering:
backend-devEnd-to-end backend development workflow:
gemini-to-seedream-migrationMigrate AI image generation from Google Gemini 2.5 Flash to BytePlus SeeDream v4.5. Features:
product-managementCore product management activities:
task-generatorGenerate structured task lists from specs or requirements:
agents-md-generatorGenerate hierarchical AGENTS.md structures optimized for AI coding agents:
browserMinimal Chrome DevTools Protocol tools:
skill-creatorGuide for creating effective AI skills:
template-skillBasic template for creating new skills:
Copy desired skill folders to your Factory skills directory:
# Copy a single skill
cp -r skills/frontend-ui-animator ~/.factory/skills/
# Or copy all skills
cp -r skills/* ~/.factory/skills/
Each skill follows a consistent structure:
skill-name/
├── SKILL.md # Main skill instructions (required)
├── references/ # Additional documentation loaded on-demand
│ └── *.md
├── scripts/ # Executable code (Python/Bash)
│ └── *.py
└── assets/ # Templates, images, boilerplate
└── *
---
name: skill-name
description: What the skill does and when to use it
---
# Skill Instructions
Markdown content with workflows, patterns, and guidelines.
User: "Clone the landing page from stripe.com"
→ Skill scrapes the page using Firecrawl MCP
→ Analyzes structure, design tokens, and components
→ Presents analysis report for user review
→ After confirmation, generates Next.js 16 code:
- app/layout.tsx, app/page.tsx, app/globals.css
- components/landing/Hero.tsx, Features.tsx, etc.
- Downloads images to public/images/
User: "Add animations to my landing page"
→ Skill analyzes pages and components
→ Creates animation audit table
→ Implements phased animations (hero → hover → scroll reveals)
→ Adds Tailwind config presets
→ Ensures accessibility compliance
User: "Create a REST API for user management"
→ Skill coordinates expert systems
→ Designs API contracts and database schema
→ Implements secure authentication
→ Sets up testing and CI/CD
→ Generates deployment documentation
User: "Write a PRD for a new search feature"
→ Skill gathers context and constraints
→ Structures problem statement and goals
→ Defines user stories and requirements
→ Documents technical considerations
→ Identifies risks and launch plan
User: "Migrate my image generation from Gemini to BytePlus SeeDream"
→ Skill provides 6-phase workflow
→ Updates environment variables (.env.example, validators)
→ Creates production-ready BytePlus REST client
→ Migrates API routes with error handling
→ Removes Gemini SDK dependency
→ Provides testing checklist and troubleshooting guide
→ Result: Working BytePlus integration in 3-4 hours
Contributions are welcome! When adding new skills:
SKILL.md under 500 linesreferences/ for detailed documentationIndividual skills may have their own licenses. Check each skill's directory for specific licensing information.
Built for Factory AI and compatible AI coding assistants.
Curated & Created by Faiz Intifada (@faizntfd)