← ClaudeAtlas

generate-skilllisted

Create well-structured Claude Code skills following Anthropic best practices. Generates SKILL.md files with proper frontmatter, workflow structure, and prompt engineering patterns for Claude 4.6. Use when building new skills, refactoring existing ones, or when user says "create a skill", "new skill", "generate skill", "make a command".
fysoul17/devlyn-cli · ★ 1 · AI & Automation · score 67
Install: claude install-skill fysoul17/devlyn-cli
# Generate Skill — Claude Code Skill Authoring Create production-quality Claude Code skills with correct frontmatter, structured workflows, and Claude 4.6 prompt patterns. Reference files in this skill directory: - `REFERENCE.md` — Complete frontmatter field catalog and validation rules - `PROMPT-PATTERNS.md` — Claude 4.6 prompt engineering patterns for skill bodies - `CHECKLIST.md` — Quality verification checklist ## Workflow ### Step 1: Gather Requirements Parse `$ARGUMENTS` for the skill description or name. If `$ARGUMENTS` is empty or vague, ask the user: > What skill do you want to create? Describe: > 1. **What problem** does it solve? > 2. **When** should it trigger? (user command, proactive, or both) > 3. **What tools** does it need? (read-only, code modification, web access, etc.) Determine the **degree of freedom**: - **High** — Skill makes decisions autonomously (e.g., code generation, refactoring) - **Medium** — Skill follows a workflow but adapts to context (e.g., review, analysis) - **Low** — Skill executes a fixed procedure (e.g., scan, validate, format) ### Step 2: Choose Structure Estimate the total line count for the skill content: | Estimated Lines | Structure | |---|---| | Under 200 | Single `SKILL.md` file | | 200–500 | `SKILL.md` + reference files (e.g., `REFERENCE.md`, `PATTERNS.md`) | | Over 500 | Split into multiple separate skills | Rules for reference files: - One level deep only (no nested references) - Add a table of contents if a refer