一键导入
skill-creator
Use this skill when creating new Claude Code skills, defining skill structures, or helping users build custom auto-invoked skills.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use this skill when creating new Claude Code skills, defining skill structures, or helping users build custom auto-invoked skills.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use this skill when creating, testing, or securing API endpoints. Activates for REST API routes, authentication, rate limiting, and API documentation tasks.
Use this skill for code review, testing, refactoring, and optimization. Activates for security review, test generation, performance analysis, and code cleanup tasks.
Use this skill for database schema design, migrations, queries, and optimization. Activates for Supabase, Prisma, Drizzle, and PostgreSQL tasks.
Use this skill for deployment, CI/CD, Docker, and infrastructure tasks. Activates for GitHub Actions, Vercel, containerization, and environment management.
Use this skill when creating UI components, pages, or frontend features. Activates for React components, Next.js pages, styling, state management, and accessibility tasks.
Use this skill when creating Model Context Protocol (MCP) servers, adding tools to extend Claude's capabilities, or integrating external APIs as MCP tools.
| name | skill-creator |
| description | Use this skill when creating new Claude Code skills, defining skill structures, or helping users build custom auto-invoked skills. |
You have expertise in creating Claude Code skills - auto-invoked capabilities that activate based on context.
This skill activates for:
---
name: skill-name
description: When Claude should auto-invoke this skill. Be specific about triggers.
---
# Skill Name
Brief description of your expertise.
## When to Use
Bullet points of scenarios that trigger this skill:
- Scenario 1
- Scenario 2
- Scenario 3
## Core Capabilities
### Capability 1
Explanation and code examples...
### Capability 2
Explanation and code examples...
## Patterns & Templates
Code templates that users commonly need...
## Best Practices
1. **Practice 1** - Explanation
2. **Practice 2** - Explanation
## Common Pitfalls
- Pitfall 1: How to avoid
- Pitfall 2: How to avoid
---
name: kebab-case-name # Required: unique identifier
description: | # Required: triggers auto-invocation
Detailed description of when Claude should use this skill.
Include keywords that users might mention.
disable-model-invocation: false # Optional: set true for manual-only
---
.claude/skills/
├── api-development/ # REST API, GraphQL, webhooks
├── frontend-development/ # React, Vue, components
├── database-operations/ # SQL, ORMs, migrations
├── testing/ # Unit, E2E, integration
└── devops/ # CI/CD, Docker, deployment
.claude/skills/
├── fintech/ # Payments, compliance, security
├── healthcare/ # HIPAA, HL7, medical systems
├── ecommerce/ # Carts, checkout, inventory
└── analytics/ # Metrics, dashboards, tracking
.claude/skills/
├── mcp-builder/ # Creating MCP servers
├── playwright/ # Browser automation
├── prisma/ # ORM operations
└── supabase/ # BaaS integration
description: |
Use this skill when creating REST API endpoints, handling HTTP requests,
implementing authentication/authorization, or adding rate limiting.
Activates for Next.js API routes, Express handlers, and Fastify routes.
description: Helps with backend development
Include keywords users might say:
## Quick Start
\`\`\`typescript
// Immediately useful code snippet
export function example() {
// Implementation
}
\`\`\`
## Templates
### Basic Template
\`\`\`typescript
// Copy-paste ready code
\`\`\`
### Advanced Template
\`\`\`typescript
// More complex example
\`\`\`
## Configuration
### package.json
\`\`\`json
{
"dependencies": { ... }
}
\`\`\`
### Environment Variables
- `API_KEY` - Your API key
- `DATABASE_URL` - Connection string
## Common Patterns
### Pattern 1: Name
Use when: [scenario]
\`\`\`typescript
// Implementation
\`\`\`
### Pattern 2: Name
Use when: [scenario]
\`\`\`typescript
// Implementation
\`\`\`
Bundle related capabilities:
.claude/skills/fullstack-nextjs/
├── SKILL.md # Main skill file
├── api-patterns.md # Additional context
├── component-library.md # Reference material
└── deployment.md # Deployment patterns
Main SKILL.md references others:
## Related Resources
See also:
- [API Patterns](./api-patterns.md)
- [Component Library](./component-library.md)
.claude/skills/skill-name/SKILL.mdAdd to plugin structure:
.claude/skills/
└── my-skill/
└── SKILL.md
Share skill file directly - users place in their .claude/skills/ directory.
name: react-forms
description: |
Use when building forms in React: form validation with react-hook-form,
Zod schemas, error handling, form submission, and field components.
name: fullstack-development
description: |
Use for full-stack web development: Next.js pages and API routes,
database integration, authentication, deployment, and DevOps.