skill-creator — for Claude Code skill-creator, LivingArchitectModel, community, for Claude Code, ide skills, description, license, metadata, compatibility, Creator

v1.0.0

À propos de ce Skill

Scenario recommande : Ideal for AI agents that need this skill provides guidance for creating effective skills. Resume localise : # Skill Creator This skill provides guidance for creating effective skills. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Fonctionnalités

This skill provides guidance for creating effective skills.
Skills are modular, self-contained packages that extend Claude's capabilities by providing
specialized knowledge, workflows, and tools. Think of them as "onboarding guides" for specific
domains or tasks—they transform Claude from a general-purpose agent into a specialized agent
equipped with procedural knowledge that no model can fully possess.

# Sujets clés

sougetuOte sougetuOte
[1]
[0]
Mis à jour: 3/17/2026

Skill Overview

Start with fit, limitations, and setup before diving into the repository.

Scenario recommande : Ideal for AI agents that need this skill provides guidance for creating effective skills. Resume localise : # Skill Creator This skill provides guidance for creating effective skills. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Pourquoi utiliser cette compétence

Recommandation : skill-creator helps agents this skill provides guidance for creating effective skills. Skill Creator This skill provides guidance for creating effective skills. This AI agent skill supports Claude

Meilleur pour

Scenario recommande : Ideal for AI agents that need this skill provides guidance for creating effective skills.

Cas d'utilisation exploitables for skill-creator

Cas d'usage : Applying This skill provides guidance for creating effective skills
Cas d'usage : Applying Skills are modular, self-contained packages that extend Claude's capabilities by providing
Cas d'usage : Applying specialized knowledge, workflows, and tools. Think of them as "onboarding guides" for specific

! Sécurité et Limitations

  • Limitation : Only add context Claude doesn't already have
  • Limitation : Only name and description are read by Claude to determine when the skill triggers, so be clear and comprehensive abo
  • Limitation : Requires repository-specific context from the skill documentation

About The Source

The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Démo Labs

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ et étapes d’installation

These questions and steps mirror the structured data on this page for better search understanding.

? Questions fréquentes

Qu’est-ce que skill-creator ?

Scenario recommande : Ideal for AI agents that need this skill provides guidance for creating effective skills. Resume localise : # Skill Creator This skill provides guidance for creating effective skills. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Comment installer skill-creator ?

Exécutez la commande : npx killer-skills add sougetuOte/LivingArchitectModel. Elle fonctionne avec Cursor, Windsurf, VS Code, Claude Code et plus de 19 autres IDE.

Quels sont les cas d’usage de skill-creator ?

Les principaux cas d’usage incluent : Cas d'usage : Applying This skill provides guidance for creating effective skills, Cas d'usage : Applying Skills are modular, self-contained packages that extend Claude's capabilities by providing, Cas d'usage : Applying specialized knowledge, workflows, and tools. Think of them as "onboarding guides" for specific.

Quels IDE sont compatibles avec skill-creator ?

Cette skill est compatible avec Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Utilisez la CLI Killer-Skills pour une installation unifiée.

Y a-t-il des limites pour skill-creator ?

Limitation : Only add context Claude doesn't already have. Limitation : Only name and description are read by Claude to determine when the skill triggers, so be clear and comprehensive abo. Limitation : Requires repository-specific context from the skill documentation.

Comment installer ce skill

  1. 1. Ouvrir le terminal

    Ouvrez le terminal ou la ligne de commande dans le dossier du projet.

  2. 2. Lancer la commande d’installation

    Exécutez : npx killer-skills add sougetuOte/LivingArchitectModel. La CLI détectera automatiquement votre IDE ou votre agent et configurera la skill.

  3. 3. Commencer à utiliser le skill

    Le skill est maintenant actif. Votre agent IA peut utiliser skill-creator immédiatement dans le projet.

! Source Notes

This page is still useful for installation and source reference. Before using it, compare the fit, limitations, and upstream repository notes above.

Upstream Repository Material

The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Upstream Source

skill-creator

# Skill Creator This skill provides guidance for creating effective skills. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows. This

SKILL.md
Readonly
Upstream Repository Material
The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.
Upstream Source

Skill Creator

This skill provides guidance for creating effective skills.

About Skills

Skills are modular, self-contained packages that extend Claude's capabilities by providing specialized knowledge, workflows, and tools. Think of them as "onboarding guides" for specific domains or tasks—they transform Claude from a general-purpose agent into a specialized agent equipped with procedural knowledge that no model can fully possess.

What Skills Provide

  1. Specialized workflows - Multi-step procedures for specific domains
  2. Tool integrations - Instructions for working with specific file formats or APIs
  3. Domain expertise - Company-specific knowledge, schemas, business logic
  4. Bundled resources - Scripts, references, and assets for complex and repetitive tasks

Core Principles

Concise is Key

The context window is a public good. Skills share the context window with everything else Claude needs: system prompt, conversation history, other Skills' metadata, and the actual user request.

Default assumption: Claude is already very smart. Only add context Claude doesn't already have. Challenge each piece of information: "Does Claude really need this explanation?" and "Does this paragraph justify its token cost?"

Prefer concise examples over verbose explanations.

Set Appropriate Degrees of Freedom

Match the level of specificity to the task's fragility and variability:

High freedom (text-based instructions): Use when multiple approaches are valid, decisions depend on context, or heuristics guide the approach.

Medium freedom (pseudocode or scripts with parameters): Use when a preferred pattern exists, some variation is acceptable, or configuration affects behavior.

Low freedom (specific scripts, few parameters): Use when operations are fragile and error-prone, consistency is critical, or a specific sequence must be followed.

Think of Claude as exploring a path: a narrow bridge with cliffs needs specific guardrails (low freedom), while an open field allows many routes (high freedom).

Anatomy of a Skill

Every skill consists of a required SKILL.md file and optional bundled resources:

skill-name/
├── SKILL.md (required)
│   ├── YAML frontmatter metadata (required)
│   │   ├── name: (required)
│   │   ├── description: (required)
│   │   └── compatibility: (optional, rarely needed)
│   └── Markdown instructions (required)
└── Bundled Resources (optional)
    ├── scripts/          - Executable code (Python/Bash/etc.)
    ├── references/       - Documentation intended to be loaded into context as needed
    └── assets/           - Files used in output (templates, icons, fonts, etc.)

SKILL.md (required)

Every SKILL.md consists of:

  • Frontmatter (YAML): Contains name and description fields (required), plus optional fields like license, metadata, and compatibility. Only name and description are read by Claude to determine when the skill triggers, so be clear and comprehensive about what the skill is and when it should be used. The compatibility field is for noting environment requirements (target product, system packages, etc.) but most skills don't need it.
  • Body (Markdown): Instructions and guidance for using the skill. Only loaded AFTER the skill triggers (if at all).

Bundled Resources (optional)

Scripts (scripts/)

Executable code (Python/Bash/etc.) for tasks that require deterministic reliability or are repeatedly rewritten.

  • When to include: When the same code is being rewritten repeatedly or deterministic reliability is needed
  • Benefits: Token efficient, deterministic, may be executed without loading into context
References (references/)

Documentation and reference material intended to be loaded as needed into context to inform Claude's process and thinking.

  • When to include: For documentation that Claude should reference while working
  • Benefits: Keeps SKILL.md lean, loaded only when Claude determines it's needed
  • Best practice: If files are large (>10k words), include grep search patterns in SKILL.md
  • Avoid duplication: Information should live in either SKILL.md or references files, not both.
Assets (assets/)

Files not intended to be loaded into context, but rather used within the output Claude produces.

  • When to include: When the skill needs files that will be used in the final output
  • Benefits: Separates output resources from documentation

What to Not Include in a Skill

Do NOT create extraneous documentation or auxiliary files (README.md, CHANGELOG.md, etc.). The skill should only contain the information needed for an AI agent to do the job at hand.

Progressive Disclosure Design Principle

Skills use a three-level loading system to manage context efficiently:

  1. Metadata (name + description) - Always in context (~100 words)
  2. SKILL.md body - When skill triggers (<5k words)
  3. Bundled resources - As needed by Claude (Unlimited)

Keep SKILL.md body to the essentials and under 500 lines. Split content into separate files when approaching this limit. Reference them from SKILL.md and describe clearly when to read them.

Key principle: Keep only the core workflow and selection guidance in SKILL.md. Move variant-specific details into separate reference files.

Skill Creation Process

  1. Understand the skill with concrete examples
  2. Plan reusable skill contents (scripts, references, assets)
  3. Create the skill directory and SKILL.md
  4. Edit the skill (implement resources and write SKILL.md)
  5. Iterate based on real usage

Step 1: Understanding the Skill with Concrete Examples

Clearly understand concrete examples of how the skill will be used. Ask:

  • "What functionality should the skill support?"
  • "Can you give some examples of how this skill would be used?"
  • "What would a user say that should trigger this skill?"

Step 2: Planning the Reusable Skill Contents

Analyze each example to identify what scripts, references, and assets would be helpful when executing these workflows repeatedly.

Step 3: Create the Skill

Create the skill directory under .claude/skills/{skill-name}/ with SKILL.md.

Step 4: Edit the Skill

Remember that the skill is being created for another instance of Claude to use. Include information that would be beneficial and non-obvious to Claude.

Learn Proven Design Patterns

Consult these helpful guides based on your skill's needs:

Update SKILL.md

Writing Guidelines: Always use imperative/infinitive form.

Frontmatter

Write the YAML frontmatter with name and description:

  • name: The skill name
  • description: Primary triggering mechanism. Include both what the Skill does and specific triggers/contexts for when to use it. Include all "when to use" information here — not in the body.
Body

Write instructions for using the skill and its bundled resources.

Step 5: Iterate

  1. Use the skill on real tasks
  2. Notice struggles or inefficiencies
  3. Identify how SKILL.md or bundled resources should be updated
  4. Implement changes and test again

Compétences associées

Looking for an alternative to skill-creator or another community skill for your workflow? Explore these related open-source skills.

Voir tout

openclaw-release-maintainer

Logo of openclaw
openclaw

Resume localise : 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

widget-generator

Logo of f
f

Resume localise : Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat . It covers ai, artificial-intelligence, awesome-list workflows. This AI agent skill supports Claude Code, Cursor, and

flags

Logo of vercel
vercel

Resume localise : The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
Navigateur

pr-review

Logo of pytorch
pytorch

Resume localise : Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review . It covers autograd, deep-learning, gpu workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

98.6k
0
Développeur