mcpbeat Sign in

Create Package Skill

Interactive wizard that walks service teams through creating a package-specific skill for their Azure SDK package. Scans the package, detects customization patterns, scaffolds a SKILL.md with references, and validates with vally lint. The skill is placed inside the package''s .github/skills/ directory so find-package-skill discovers it automatically. WHEN: create package skill; add service skill; bootstrap skill for package; new package skill; skill for my SDK package; write skill for search; write skill for cosmos.

6k tokens
context cost
the whole folder, loaded on every use
8
files
instructions only
0
copies elsewhere
how many repositories repackaged it
2294
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/Azure/azure-sdk-for-python --skill create-package-skill

What comes with it

19 791 bytes besides the instruction
phases/00-scan-package.md
phases/01-scaffold-skill.md
phases/02-generate-references.md
phases/03-validate.md
phases/04-finalize.md
references/skill-template.md
references/validation-tools.md

The instruction itself

6 sections, as written by the author

Create Package Skill Wizard

> Minimal beats comprehensive. Human-written beats auto-generated. Scaffold and iterate.

> Skills encode tribal knowledge — the "I wish someone had told me" stuff that's hard to learn from just reading code. Focus on what's non-obvious and package-specific.

Interaction Protocols

CONFIRM Protocol (asset-producing steps — creating files):

  • PRESENT the proposed assets and explain why.
  • ASK exactly one question: "Create now (recommended), edit first, or skip?"
  • ACT immediately. Create → write files this turn. Edit → refine, re-ask. Skip → move on.

DECIDE Protocol (informational/correction steps — no files created):

  • PRESENT the information or findings.
  • ASK one specific question appropriate to the decision.
  • PROCEED based on the answer.

One question at a time. Respect "skip" — never re-ask or defer.

Wizard Flow

Run each phase in order. Progressive loading: Read only the current phase file.

| Phase | Description | Instructions |

|---|---|---|

| Phase 0 | 🧭 Scan Package — detect architecture, customizations, key files | phases/00-scan-package.md |

| Phase 1 | 📝 Scaffold SKILL.md — generate skill with common pitfalls, architecture, workflow | phases/01-scaffold-skill.md |

| Phase 2 | 📚 Generate References — create architecture.md and customization.md | phases/02-generate-references.md |

| Phase 3 | ✅ Validate — run vally lint | phases/03-validate.md |

| Phase 4 | 📋 Finalize — confirm discoverable location, summarize | phases/04-finalize.md |

Guardrails

Content:

  • Every line must be non-obvious and package-specific. No generic TypeScript/SDK patterns.
  • SKILL.md should be under 500 tokens (soft limit). Move details to references/.
  • References under 1000 tokens each. Split if larger.
  • Never duplicate what's already in AGENTS.md or shared skills.

Relationship to existing SDK tools:

  • Package skills complement the Azure SDK MCP tools (azsdk_package_generate_code, azsdk_package_build_code, etc.) and the sdk-workflow shared skill — they do NOT replace them.
  • MCP tools handle deterministic operations (generate, build, test). Package skills provide the reasoning context an agent needs to use those tools correctly for a specific package.
  • Never redefine how generation, building, or testing works — reference the existing tools instead (e.g., "Run npm run generate:client", not custom generation steps).
  • If a workflow step is already handled by an MCP tool or shared skill, just reference it — don't re-document it.

Structure:

  • Skill directory: sdk/<service>/<package>/.github/skills/<skill-name>/
  • Directory name MUST match name field in frontmatter (vally lint enforces this).
  • Use semicolons to separate trigger phrases in description (YAML-safe).

Security:

  • Never embed secrets or credentials in skill content.
  • Never instruct agents to bypass CI, linters, or eslint rules.
  • Never instruct agents to edit files in generated/ directly — always route through the customization workflow or TypeSpec decorators.

Key Principles (from eval data)

Our eval showed that skill structure matters more than volume:

| Pattern | Impact |

|---|---|

| "Common Pitfalls" section at the TOP | Agent reads pitfalls before analyzing errors → correct diagnosis |

| "Check X FIRST" directives | Changes agent default from "fix the error location" to "check the customization layer" |

| Error categorization tables | Gives agent a decision framework, not just procedures |

| generated/ vs src/ distinction | Agent knows which files are safe to edit and which will be overwritten |

References (load on demand)

  • references/skill-template.md — SKILL.md template with required sections
  • references/validation-tools.md — vally lint, CI workflow setup

Other skills for the same job

different authors, same section of the catalogue
MCP Builder
by anthropics
vendor ×13

Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).

30k tokens scripts
Changelog Generator
by frostant
×9

Automatically creates user-facing changelogs from git commits by analyzing commit history, categorizing changes, and transforming technical commits into clear, customer-friendly release notes. Turns hours of manual changelog writing into minutes of automated generation.

774 tokens
Finishing A Development Branch
by ZhanlinCui
×7

Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - guides completion of development work by presenting structured options for merge, PR, or cleanup

1k tokens
MCP Builder
by JayZeeDesign
×7

Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).

37k tokens scripts
Vercel React Native Skills
by vercel-labs
vendor ×6

React Native and Expo best practices for building performant mobile apps. Use when building React Native components, optimizing list performance, implementing animations, or working with native modules. Triggers on tasks involving React Native, Expo, mobile performance, or native platform APIs.

39k tokens
Vercel React Best Practices
by ratacat
×5

React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements.

34k tokens
Next Best Practices
by vercel-labs
vendor ×4

Next.js best practices - file conventions, RSC boundaries, data patterns, async APIs, metadata, error handling, route handlers, image/font optimization, bundling

20k tokens
Using Git Worktrees
by ZhanlinCui
×4

Use when starting feature work that needs isolation from current workspace or before executing implementation plans - creates isolated git worktrees with smart directory selection and safety verification

1k tokens

How to use it

Copy the folder

Take azure/create-package-skill from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.