> a changeset, and push. This skill is specifically for the language emitter packages (http-client-python, http-client-csharp, http-client-java) - NOT for core TypeSpec packages like compiler, http, openapi3, etc. Use when the user wants to finalize emitter changes, says things like "prep for pr", "prepare for PR", "validate and push", "add changeset", or "finalize changes".
npx skills add https://github.com/microsoft/typespec --skill emitter-prep-for-pr
Prepares language emitter changes for pull request by running build/format/lint,
checking for a changeset, and pushing to the remote branch.
This skill is for language emitter packages only:
http-client-pythonhttp-client-csharphttp-client-javaDo NOT use this skill for core TypeSpec packages (compiler, http, openapi3, etc.).
Figure out which emitter package the user is working on from context (cwd, recent
changes, or ask). The package will be under packages/<package-name>/.
cd ~/Desktop/github/typespec/packages/PACKAGE_NAME
# Build
npm run build
# Format (includes both TypeScript and Python formatting)
npm run format
# Lint (emitter-only is fine for quick validation)
npm run lint -- --emitter
If any step fails, report the error and stop. Do not proceed.
cd ~/Desktop/github/typespec
pnpm format
Important: pnpm format may touch files outside the emitter package (e.g.,
.devcontainer/, other packages). When staging changes in Step 6, **only stage
files within the emitter package directory** (packages/PACKAGE_NAME/) and
.chronus/changes/ and .github/skills/. Discard any formatting changes to
unrelated files with git checkout -- <file>.
Check if a changeset already exists for the current branch:
cd ~/Desktop/github/typespec
BRANCH=$(git rev-parse --abbrev-ref HEAD)
ls .chronus/changes/ | grep -i "$BRANCH" || echo "NO_CHANGESET"
Ask the user what kind of change this is, or infer from context:
internal, fix, feature, deprecation, breaking, dependenciesThen create the file:
cd ~/Desktop/github/typespec
BRANCH=$(git rev-parse --abbrev-ref HEAD)
TIMESTAMP=$(date +"%Y-%m-%d-%H-%M-%S")
FILENAME=".chronus/changes/${BRANCH}-${TIMESTAMP}.md"
---
changeKind: <KIND>
packages:
- "<PACKAGE>"
---
<MESSAGE>
cd ~/Desktop/github/typespec
git add -A
git status
Show the user what will be committed and ask for confirmation. Then:
BRANCH=$(git rev-parse --abbrev-ref HEAD)
git commit -m "<COMMIT_MESSAGE>
Co-authored-by: Copilot <[email protected]>"
# Always push to origin (user's fork), never upstream
git push origin "$BRANCH"
internal: "Improve CI pipeline performance and test infrastructure"fix: "Fix incorrect deserialization of nullable enum properties"feature: "Add support for XML serialization in request bodies"| Folder | Package Name |
| -------------------- | ------------------------------ |
| http-client-python | @typespec/http-client-python |
| http-client-csharp | @typespec/http-client-csharp |
| http-client-java | @typespec/http-client-java |
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).
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.
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
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).
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.
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.
Next.js best practices - file conventions, RSC boundaries, data patterns, async APIs, metadata, error handling, route handlers, image/font optimization, bundling
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
Take microsoft/emitter-prep-for-pr from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
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.