skill-developer

Create and manage Claude Code skills with Anthropic best practices.

1|Updated Feb 15, 2026
One-click install
npx skills add https://github.com/lastdays03/team-standards --skill skill-developer-lastdays03
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: skill-developer
Source: https://github.com/lastdays03/team-standards/tree/main/.claude/skills/skill-developer
Command: npx skills add https://github.com/lastdays03/team-standards --skill skill-developer-lastdays03

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Create and manage Claude Code skills following Anthropic best practices, covering skill structure, YAML frontmatter, trigger types, enforcement levels, hook mechanisms, session tracking, and the 500-line rule.

Core Features & Use Cases

  • Structured skill templates (SKILL.md) with frontmatter and content guidelines
  • Trigger definitions (keywords, intent patterns, file paths, content patterns) and skip conditions
  • Two-hook architecture overview (UserPromptSubmit and PreToolUse) with session tracking and progressive disclosure
  • Guidance to test, troubleshoot, and ensure skills stay under 500 lines

Quick Start

Create a new skill under .claude/skills/{name}/SKILL.md with frontmatter, register it in .claude/skills/skill-rules.json, then run manual trigger tests to verify activation.

Frequently Asked Questions about skill-developer

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create a Claude Code skill with the correct YAML frontmatter and structure?

To create a Claude Code skill, define a SKILL.md file under .claude/skills/{name}/ with proper YAML frontmatter, then register it in .claude/skills/skill-rules.json following Anthropic best practices for naming conventions and documentation structure.

What trigger patterns and skip conditions can I use for Claude Code skill activation?

Claude Code skill triggers support keywords, intent patterns, file paths, and content patterns. You can also define skip conditions in the skill-rules.json configuration to control activation behavior and prevent unnecessary enforcement during unrelated sessions.

How does the two-hook architecture work for Claude Code skill governance and session tracking?

Claude Code skills use a two-hook architecture combining UserPromptSubmit and PreToolUse hooks to manage session tracking and progressive disclosure, ensuring governance rules are enforced at the right execution stage without overwhelming the context window.

Why is my Claude Code skill not activating when I test the trigger keywords?

Skill activation issues often stem from misconfigured trigger patterns in skill-rules.json or exceeding the 500-line limit in SKILL.md. Debug by verifying frontmatter syntax, checking enforcement levels, and running manual trigger tests to isolate the configuration failure.

What are the enforcement levels and skip conditions available in skill-rules.json?

Skill-rules.json supports configurable enforcement levels and skip conditions that dictate how strictly trigger patterns apply. These settings govern whether a skill actively modifies tool calls or passively provides context based on matching intent patterns and file paths.

Do I need to follow the 500-line rule when building a Claude Code skill?

The 500-line rule is a best practice guideline for Claude Code skills to maintain optimal context processing. Keeping your SKILL.md under 500 lines ensures efficient progressive disclosure and prevents trigger activation delays caused by oversized content.