AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Skill Authoring

skill-ao92265-claude-code-playbook-skill-authoring · by ao92265

>

No reviews yet
0 installs
5 views
0.0% view→install

Install

$ agentstack add skill-ao92265-claude-code-playbook-skill-authoring

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-ao92265-claude-code-playbook-skill-authoring)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Skill Authoring? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Skill Authoring

How to write a skill that loads at the right time and does the right thing. Source: Anthropic's Complete Guide to Building Skills for Claude.

The mental model: progressive disclosure (3 levels)

  1. Frontmatter (YAML) — always in the system prompt. Just enough for Claude to decide when to load the skill. This is the highest-leverage thing you write.
  2. SKILL.md body — loaded only when Claude judges the skill relevant. The full instructions.
  3. Linked files (references/, scripts/, assets/) — loaded on demand. Push detail here to keep the body lean.

Goal: minimal tokens resident, full expertise available when needed.

Folder structure

your-skill-name/        # kebab-case, matches `name`
├── SKILL.md            # required, exact case
├── scripts/            # optional — executable code
├── references/         # optional — docs loaded as needed
└── assets/             # optional — templates, fonts, icons
  • SKILL.md — exactly that, case-sensitive. No skill.md, SKILL.MD.
  • No README.md inside the skill folder. Docs go in SKILL.md or references/. (A repo-level README for humans is fine when distributing on GitHub — that lives outside the skill folder.)

The description field (get this right first)

Formula: [What it does] + [When to use it / trigger phrases] + [Key capabilities].

Rules:

  • Must state both what and when (the phrases a user actually says).
  • angle brackets** anywhere in frontmatter — they can inject as tags into the system prompt. Write "followed by a URL", not . Write "over 1k RPS", not >1k`.
  • name: kebab-case, no spaces/underscores/capitals, matches the folder. Never contains "claude" or "anthropic" (reserved).
  • Add explicit trigger phrases and, for broad auto-triggering skills, a negative trigger ("Do NOT use this for…").

Good vs bad:

  • Analyzes Figma files and generates dev handoff docs. Use when user uploads .fig files, asks for "design specs", or "design-to-code handoff".
  • Helps with projects. (vague, no triggers)
  • Implements the Project entity model with hierarchical relationships. (technical, no user triggers)

Writing the body

  • Specific and actionable. Run python scripts/validate.py --input {file} — not "validate the data".
  • Always include error handling / troubleshooting (a ## Common Issues section with concrete fixes).
  • Reference bundled files explicitly: "Before X, consult references/api-patterns.md."
  • Keep the body focused; move depth to references/.

Testing (3 areas)

  1. Triggering — loads on obvious + paraphrased requests; does NOT load on unrelated topics. Write an explicit should-trigger / should-NOT-trigger list.
  2. Functional — produces correct outputs; scripts succeed; edge cases covered.
  3. Performance — compare with vs without the skill (tokens consumed, tool/API calls, back-and-forth turns).

Pro tip: iterate on one hard task until it works, then extract the skill. Faster signal than broad testing.

Trigger tuning

  • Under-triggering (skill doesn't load when it should; users enable it manually) → add detail and keywords to the description, especially technical terms.
  • Over-triggering (loads for irrelevant queries; users disable it) → add negative triggers, narrow the description.

Pre-ship checklist + field reference

See references/checklist.md for the full field-requirements table and a copy-paste pre-ship checklist.

Distribution (brief)

Zip the folder → Claude.ai Settings > Capabilities > Skills, or drop in the Claude Code skills directory. For GitHub: public repo, human README at repo root (not in the skill folder), example screenshots. API path needs container.skills + the Code Execution Tool beta. Use the compatibility frontmatter field for platform-specific requirements.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.