一键导入
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}