بنقرة واحدة
skill-generator
Create complete Claude Skills from a short brief, with templates and checks.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Create complete Claude Skills from a short brief, with templates and checks.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Manage Gmail - send, read, search emails, manage labels and drafts. Use when user wants to interact with their Gmail account for email operations.
Analyzes UXR report PDFs and generates structured analysis documents with key findings, recommendations, and strategic connections. Use when given a UXR report to analyze.
Render a video clip with captions overlaid, using the Remotion captioner at `/Users/jvincent/Projects/remotion-captioner/`. Use when user provides a video file and wants to add captions/subtitles, mentions "caption this video", "add captions", "burn in subtitles", or provides a video + SRT file pair.
Create and iterate on MARP Markdown slide decks with HubSpot styling (two themes available — Trellis product palette and HubSpot brand-identity palette), AI-generated images via LiteLLM/Gemini, and slidegauge linting. Use when the user wants to create a presentation, build slides, make a slide deck, or work on a talk.
Generate a self-improving "autoresearch" loop for any Claude skill. Given a skill to improve and 3-5 quality constraints, scaffolds a standalone project (modeled on karpathy/autoresearch) that iterates on the skill's prompt by generating N samples per cycle, evaluating them against the constraints, and editing the skill to fix recurring failures — up to 30 cycles or until results are consistently perfect. Use when the user says something like "make an autoresearcher for my X skill" or "build a self-improving loop for skill Y".
Manage Google Calendar - search, create, update events and answer calendar questions. Use when user wants to interact with their Google Calendar for scheduling and calendar operations.
| name | Skill Generator |
| description | Create complete Claude Skills from a short brief, with templates and checks. |
| version | 1.0.0 |
| allowed-tools | ["Read","Write","Glob"] |
This Skill helps you rapidly author high‑quality Claude Skills from a short prompt. It converts a brief into a complete Skill folder structure that follows official guidelines, including correct YAML frontmatter, focused scope, clear instructions, examples, and optional resources/scripts. It enforces naming and description limits so Claude selects and loads generated Skills appropriately.
resources/ files (templates, references, examples, checklists)name and descriptionresources/ for long or situational contentPhase 1: Plan and Review
name (≤64 chars) and description (≤200 chars) that explicitly states when to use it.Skill.md structure using resources/SKILL_TEMPLATE.md:
resources/ files that will increase clarity:
dependencies:.resources/CHECKLIST.md).Phase 2: Generate Files (only after user approval) 8) Use the Write tool to create each file:
Skill.md (include YAML frontmatter)resources/ filesSkill.md; move long details to resources/.User: Create a 'Meeting Notetaker' Skill that extracts action items and owners from transcripts.
Claude: I'll create a Meeting Notetaker skill. Here's my plan:
**Skill Details:**
- Name: meeting-notetaker (17 chars ✓)
- Description: Extract action items and owners from meeting transcripts. Use when user provides meeting transcript and asks to identify action items, tasks, or follow-ups. (184 chars ✓)
**File Structure:**
meeting-notetaker/
├── Skill.md (main skill instructions)
├── README.md (user documentation)
└── resources/
├── EXAMPLES.md (3 examples: basic extraction, complex meeting, unclear owners)
└── CHECKLIST.md (validation checklist)
**Skill.md will include:**
- Overview: Purpose and what the skill does
- When to Apply: Trigger phrases and in/out of scope
- Inputs: Meeting transcript (text or markdown), optional format preference
- Outputs: Structured list of action items with owners, deadlines, status
- Instructions for Claude:
1. Parse transcript for imperative statements and commitments
2. Identify person names or roles as owners
3. Extract deadlines or time references
4. Format as checklist or table based on user preference
5. Flag unclear action items for user clarification
- Examples: 3 detailed scenarios
- Security: No PII logging, keep meeting content private
**Key Features:**
- Handles multiple formats (plain text, markdown, SRT)
- Identifies explicit and implicit action items
- Flags ambiguous owners
- Supports different output formats
Does this plan look good? Should I proceed with creating the files?