What problem does it solve?
This Skill turns a TypeScript library-from-scratch into a production-grade npm SDK by standardizing workspace layout, build output, module boundaries, verification, and a safe release lifecycle.
Core Features & Use Cases
- Public API design with enforceable boundaries: Define what consumers can import via
src/api re-exports and keep internal/ unexported.
- Dual ESM+CJS packaging with correct declarations: Generate the right
package.json#exports map for modern TypeScript and multiple runtimes.
- Monorepo pipeline and release engineering: Integrate Turborepo caching, publint verification, attw type-resolution checks, changesets prerelease channels, and npm dist-tags.
Quick Start
Use this skill when you want to build a new npm-published TypeScript SDK package inside a pnpm monorepo, and ask the AI to produce the workspace layout, build config (tsdown or equivalent), exports map, verification steps, and changesets prerelease-to-stable flow for your package.