tessl install github:digital-stoic-org/agent-skills --skill edit-skillCreates and modifies Claude Code skills following Anthropic best practices. Use when user requests creating, updating, modifying, improving, or editing skills. Triggers include "create/make/new skill", "skill for X", file paths ending in /skills/*/SKILL.md, "update/modify/improve skill Y". Handles skill structure, YAML frontmatter, progressive disclosure (SKILL.md + reference.md + scripts/), token optimization (<500 ideal), validation checklist, Anthropic patterns. Delegates to edit-tool orchestrator if uncertain about tool type. For plugins use edit-plugin instead.
Review Score
84%
Validation Score
14/16
Implementation Score
70%
Activation Score
100%
STOP: Before proceeding, you MUST explicitly answer these questions:
Answer each question with YES or NO:
Q1: Will this be auto-invoked frequently enough to justify context pollution?
Q2: Can this be kept under 500 tokens (concise capability)?
Q3: Is this a specific capability rather than a workflow?
If ANY answer is NO: → STOP. Do NOT create a skill. → Explain why it's not appropriate. → Recommend one of these alternatives:
If ALL answers are YES: → Proceed to "Creating New Skills" section below.
If unsure whether this should be a skill vs command vs agent vs script, see the edit-tool orchestrator for comprehensive decision matrix.
Quick checks:
See reference.md and edit-tool/reference.md for detailed decision frameworks.
CREATE: New skill requested MODIFY: Update existing skill (keywords: "update", "modify", "improve", "add to", "fix")
.claude/skills/ for project skills or plugin skills/ directorymkdir -p .claude/skills/skill-nameFrontmatter fields:
name - Skill identifier (lowercase-hyphens)description - Triggers and use cases (max 1024 chars)allowed-tools - Tool restrictions (optional)model - Model selection (optional, defaults to sonnet):
haiku - Simple deterministic tasks (token counting, format conversion)sonnet - Default for most skills requiring reasoningopus - Complex multi-file refactoring, architectural decisionscontext - Context execution mode (optional, defaults to main):
main (default) - Runs in main conversation (fast, shares context)fork - Runs in isolated sub-agent context (prevents pollution, parallel-safe)scripts/ - Executable code (0 tokens when run)references/ - Docs for Claude to load (on-demand)assets/ - Output files (templates, images)See reference.md for SKILL.md template, model selection matrix, and naming rules.
reference/claude-plugins/common/skills/ and read SKILL.mdSee reference.md for modification best practices and common patterns.
❌ README.md, CHANGELOG.md, INSTALLATION.md - human documentation ✅ Only AI-needed instructions in SKILL.md
--- markersSee reference.md for detailed examples, templates, common mistakes, and best practices.