Claude-skill-registry claude-pilot-standards

Author reference for claude-pilot components. Skills, commands, agents, rules documentation patterns. VIBE coding compliance.

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/claude-pilot-standards" ~/.claude/skills/majiayu000-claude-skill-registry-claude-pilot-standards && rm -rf "$T"
manifest: skills/data/claude-pilot-standards/SKILL.md
source content

SKILL: Claude-Pilot Standards

Purpose: Author reference for creating plugin components Target: Contributors creating skills, commands, agents

Quick Reference

ComponentLocationPurposeSize Limit
Skills
.claude/skills/{name}/
Auto-discoverable capabilitiesSKILL: 200, REF: 300
Commands
.claude/commands/
Slash commands150 lines
Agents
.claude/agents/
Specialized configs200 lines
Rules
.claude/rules/
Delegation patterns200 lines

Component Taxonomy

Skills

Structure:

{name}/SKILL.md
(≤200) +
REFERENCE.md
(≤300)

Required:

name
,
description
with trigger keywords

Examples: @.claude/skills/tdd/SKILL.md | @.claude/skills/vibe-coding/SKILL.md

Commands

Structure: Single

.md
with description frontmatter

Required:

description
with action verbs + scenarios

Examples: @.claude/commands/00_plan.md | @.claude/commands/02_execute.md

Agents

Required:

name
,
description
,
model
,
tools

Examples: @.claude/agents/coder.md | @.claude/agents/plan-reviewer.md

Rules

Structure:

core/
,
delegator/
,
documentation/

Examples: @.claude/rules/core/workflow.md | @.claude/rules/delegator/triggers.md

VIBE Coding Standards

TargetLimit
Function≤50 lines
File≤200 lines
Nesting≤3 levels

Principles: SRP, DRY, KISS, Early Return

Full: @.claude/skills/vibe-coding/SKILL.md

Cross-References

Format:

@.claude/{path}/{file}

Best: Absolute paths, specific files, descriptive text

Frontmatter Patterns

Skill:

name
,
description
(trigger keywords) Command:
description
(action verbs + scenarios) Agent:
name
,
description
,
model
,
tools

Common Patterns

Methodology extraction:

> **Methodology**: @.claude/skills/tdd/SKILL.md

MANDATORY marker:

> **⚠️ MANDATORY ACTION**: YOU MUST {action} NOW

Completion markers:

<AGENT_COMPLETE>
,
<AGENT_BLOCKED>

Further Reading

Internal: @.claude/skills/claude-pilot-standards/REFERENCE.md | @.claude/skills/claude-pilot-standards/TEMPLATES.md | @.claude/skills/claude-pilot-standards/EXAMPLES.md

External: Claude Code Best Practices