원클릭으로
meta-prompt
Generate prompt variations from templates. Use when creating new commands, skills, or workflows.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Generate prompt variations from templates. Use when creating new commands, skills, or workflows.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Build Convex backends with queries, mutations, actions, HTTP endpoints, and schemas. Comprehensive guide for all Convex patterns and workflows.
Build Next.js applications with App Router, Server and Client Components, data fetching, routing, and TypeScript. Use when implementing Next.js pages, layouts, API routes, or React Server Components.
Install and customize shadcn/ui components with Tailwind CSS theming, variants, and styling. Use when adding UI components or customizing the design system.
Automatically deploys to Vercel production, uses Vercel MCP to fetch build logs, analyzes errors, fixes them, and retries until successful deployment. Use when deploying to production or fixing deployment issues.
Create new domain expert with expertise file and workflows. Use when adding new technology or domain area.
Used to create a new agent. Used when a user wants to create a new agent
| name | Meta Prompt |
| description | Generate prompt variations from templates. Use when creating new commands, skills, or workflows. |
| tools | Read, Grep, Glob, Write |
| model | inherit |
Create new prompts based on existing templates and patterns. This is a meta-skill - a tool that generates tools.
Find closest existing prompt:
# Search for similar prompts
Glob: .claude/commands/*.md
Glob: .claude/skills/*/SKILL.md
Glob: .claude/experts/*/question.md
Glob: .claude/experts/*/self-improve.md
# Read template
Read: [closest-match]
Ask user:
Copy structure, modify:
YAML Frontmatter:
---
name: "{New Name}"
description: "{What it does}"
tools: [adjust tool list]
model: inherit
argument-hint: [if command]
---
Content:
Check:
# Save to appropriate location
Write: .claude/commands/{name}.md # for commands
Write: .claude/skills/{name}/SKILL.md # for skills
Write: .claude/experts/{name}/{type}.md # for expert workflows
# Test execution
# Run new prompt with test input
# User: "Create variation of question.md that includes mermaid diagrams"
# 1. Template
Read: .claude/experts/convex-expert/question.md
# 2. Variations
- Add mermaid diagram generation step
- Include visual flow in answers
- Keep rest of workflow same
# 3. Generate
Copy question.md structure
Add step 4.5: Generate Diagram
Update output format to include diagram section
# 4. Validate
YAML valid ✓
Tools sufficient ✓
Examples updated ✓
# 5. Save
Write: .claude/experts/convex-expert/question-with-diagram.md
After creating prompt:
## Created: {Name}
**Type:** {command/skill/expert-workflow}
**Location:** {file-path}
**Based on:** {template-used}
**Modifications:**
- {change 1}
- {change 2}
**Usage:**
{how to use the new prompt}
**Test:**
{suggested test command}