Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
warpdotdev avatar

Update Skill

  • 16.1k installs
  • 148 repo stars
  • Updated July 24, 2026
  • warpdotdev/common-skills

A structured SKILL.md file with valid YAML frontmatter and markdown body that clearly defines what a skill does, when to use it, and how to apply it.

About

update-skill is a workflow for creating and maintaining skill definitions in the Warp repository. Developers use it to generate new skills or refactor existing skill documentation by authoring SKILL.md files with required YAML frontmatter (name, description) and structured markdown content. The skill enforces naming conventions (kebab-case), description best practices (action verb + use case), and file organization rules (keep simple skills under 200 lines in SKILL.md, split complex skills into references/ subdirectories). Key workflows include validating frontmatter with skills-ref, formatting code examples, and following progressive disclosure patterns for clarity.

  • Defines YAML frontmatter requirements: name (kebab-case), description (action verb + use case, non-empty)
  • Enforces description best practices with concrete examples (git-commit, pdf-processing patterns)
  • Specifies skill structure: title, overview, main content, best practices, examples - flexible based on needs
  • Provides file organization rules: keep simple skills under 200 lines, split complex skills into references/ subdirectory
  • Includes validation tooling (skills-ref) and references to best-practices.md for conciseness and code formatting

Update Skill by the numbers

  • 16,114 all-time installs (skills.sh)
  • +1,938 installs in the week ending Jul 28, 2026 (Skillselion tracking)
  • Ranked #29 of 1,901 Documentation skills by installs in the Skillselion catalog
  • Security screen: LOW risk (skills.sh audit)
  • Data as of Jul 28, 2026 (Skillselion catalog sync)
From the docs

What update-skill says it does

Every skill is a directory containing a `SKILL.md` file with YAML frontmatter and markdown body
SKILL.md
npx skills add https://github.com/warpdotdev/common-skills --skill update-skill

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs16.1k
repo stars148
Security audit3 / 3 scanners passed
Last updatedJuly 24, 2026
Repositorywarpdotdev/common-skills

What it does

Author and maintain skill definitions by creating or updating SKILL.md files with proper frontmatter and markdown structure.

Who is it for?

Creating new skill definitions, refactoring existing skill documentation, ensuring skill discovery through proper naming and descriptions, maintaining consistent skill structure across repositories.

Skip if: Running skills in agents, consuming skills as an end user, building feature implementations outside skill documentation context.

When should I use this skill?

Authoring a new skill, revising skill frontmatter or structure, updating skill descriptions for better discovery, splitting complex skill content into references.

What you get

Developer can create or update a skill definition following Warp conventions, with validated frontmatter, descriptive content, and proper file organization.

  • Valid SKILL.md file with frontmatter
  • Markdown body with structured sections
  • Optional references/ subdirectory for complex content

By the numbers

  • Simple skills: keep to <=200 lines in SKILL.md
  • Complex skills: split into references/ subdirectory when exceeding 200 lines
  • Frontmatter: minimum 2 required fields (name, description)

Files

SKILL.mdMarkdownGitHub ↗

update-skill

This guide provides instructions for creating or updating skills in this repository. It covers the required structure, frontmatter, and best practices for skills.

Quick Start

Every skill is a directory containing a SKILL.md file with YAML frontmatter and markdown body:

---
name: pdf-processing
description: Extract text and tables from PDF files, fill forms, merge documents.
---

# PDF Processing

## When to use this skill
Use this skill when the user needs to work with PDF files...

## How to extract text
1. Use pdfplumber for text extraction...

## How to fill forms
...

Requirements

Frontmatter (Required)

Every SKILL.md must start with YAML frontmatter containing:

  • name: Kebab-case identifier (lowercase letters, numbers, hyphens only)
  • Example: add-feature-flag, pdf-processing, update-skill
  • description: Specific description of what the skill does and when to use it
  • Must be non-empty
  • Should include key terms for skill discovery
  • Begin with an action verb to clearly state what the skill accomplishes (e.g., "Adds feature flags..." instead of "Helps with features..."), and immediately follow with a specific use case or context (e.g., "Use when working with feature flags")
  • Write in third person (e.g., "Adds feature flags..." not "I can help you add...")

Writing Effective Descriptions

The description field is critical for skill discovery. Include both what the skill does and when to use it. Some good examples:

  • git-commit: "Generate descriptive commit messages by analyzing git diffs. Use when the user asks for help writing commit messages or reviewing staged changes."
  • pdf-processing: "Extract text and tables from PDF files, fill forms, merge documents. Use when working with PDF files or when the user mentions PDFs, forms, or document extraction."

Avoid vague descriptions like "Helps with code" or "Does development tasks". For more context, see "Description Best Practices" in references/best-practices.md.

Skill Structure

Typical sections in Warp skills:

1. Title and brief summary – Clear title and a concise overview of the skill's purpose and primary use cases. Link to sections, reference files or related skills if useful 2. Overview - Context about the skill's purpose (optional but common), extends the summary with more details and context 3. Main content - Steps, usage instructions, or workflow guidance 4. Best Practices - Guidelines and recommendations (optional) 5. Examples / Reference PRs - Links to real examples (optional)

Keep the structure flexible based on the skill's needs. Simple skills can omit the optional sections.

Validation

Optionally, use the skills-ref reference library to validate your skills:

skills-ref validate ./my-skill

This checks that your SKILL.md frontmatter is valid and follows all naming conventions. If not installed, use the WebSearch tool to get context around this package.

Main Content Best Practices

  • For guidance on what qualifies as good main content, see "Conciseness Principles" in references/best-practices.md
  • When formatting code examples, see "Code Example Formatting" in references/best-practices.md.

File Organization

  • Simple skills (<=200 lines): Keep everything in SKILL.md
  • Complex skills (>200 lines): Split detailed content into references/ subdirectory
  • Reference files from SKILL.md with clear links
  • Example: "See references/best-practices.md for detailed guidance"

When to Split Content

Create references/ subdirectory when:

  • SKILL.md approaches 200+ lines
  • Skill covers multiple domains or workflows that can be loaded independently
  • Detailed reference material would clutter the main instructions

Keep only essential workflow and procedural instructions in SKILL.md. Move detailed reference material, schemas, and extensive examples to references/ files.

Examples from Existing Skills

For reference on structure and style:

  • .agents/skills/add-feature-flag/SKILL.md - Multi-step workflow with clear sequential steps
  • .agents/skills/remove-feature-flag/SKILL.md - Cleanup workflow with search commands

Best Practices

See references/best-practices.md for detailed authoring guidance including:

  • Progressive disclosure patterns
  • Writing concise, effective instructions
  • Code example formatting
  • Common anti-patterns to avoid

Related skills

How it compares

Pick update-skill over general documentation skills when the artifact is an agent SKILL.md pack, not README or API docs.

FAQ

What must every SKILL.md frontmatter contain?

name (kebab-case identifier) and description (non-empty, action verb + specific use case, written in third person).

When should I split skill content into references/ subdirectory?

When SKILL.md approaches 200+ lines, covers multiple independent domains, or has detailed reference material that clutters main instructions.

What makes an effective skill description?

Begin with action verb (e.g., 'Extracts...', 'Generates...'), state what the skill does, then specify when to use it (e.g., 'Use when working with PDF files'). Avoid vague language like 'Helps with code'.

Is Update Skill safe to install?

skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

Documentationdocsdevops

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.