Borrowing it
Nothing to install: this file belongs to jordanburke/temporal-mcp-server. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/jordanburke/temporal-mcp-server/main/.claude/skills/ts-builds-template/SKILL.mdgit clone --depth 1 https://github.com/jordanburke/temporal-mcp-serverWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/jordanburke/temporal-mcp-server/ts-builds-template)<a href="https://agentmods.dev/skills/jordanburke/temporal-mcp-server/ts-builds-template"><img src="https://agentmods.dev/badge/skills/jordanburke/temporal-mcp-server/ts-builds-template/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/jordanburke/temporal-mcp-server/ts-builds-template"><img src="https://agentmods.dev/badge/skills/jordanburke/temporal-mcp-server/ts-builds-template.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00051 | $0.01208 |
| Opus 5 | $0.00026 | $0.00604 |
| Sonnet 5 | $0.00010 | $0.00242 |
| Haiku 4.5 | $0.00005 | $0.00121 |
Grade C, and why
ts-builds-template scanned grade C with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
rm -rf .git This is a copy
100% identical to ts-builds-template — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.
How it starts
The opening of the file, as written. The whole thing — 167 lines — stays where its author put it; the contents beside it link to each section on GitHub.
ts-builds-template
Overview
This skill helps you bootstrap new TypeScript libraries from the ts-builds-template. It covers cloning, customizing, developing, and publishing a new library.
For detailed tooling configuration (tsdown, Vitest, ESLint, Prettier, TypeScript), migration guides, and standardization of existing projects, see the ts-builds skill.
When to Use This Skill
- Creating a new TypeScript library or npm package from this template
- Customizing the template for a new project (package.json, README, etc.)
- Understanding the template's project structure and dev workflow
- Publishing a new library to npm for the first time
Quick Start
# Clone the template
git clone https://github.com/jordanburke/ts-builds-template.git my-library
cd my-library
# Remove template's git history
rm -rf .git
git init
# Install dependencies
pnpm install
# Validate everything works
pnpm validate
See references/template-setup.md for the full customization checklist.
Project Structure
my-library/
├── src/
│ └── index.ts # Main entry point — export public API here
├── test/
│ └── *.spec.ts # Vitest tests
├── dist/ # Production builds (gitignored)
│ ├── index.js # ES module
│ └── index.d.ts # TypeScript declarations
├── tsdown.config.ts # Build config (imports from ts-builds)
├── tsconfig.json # TypeScript config (extends ts-builds)
├── package.json # Scripts, exports, dependencies
├── CLAUDE.md # Claude Code project guidance
└── README.md
Customization Checklist
After cloning, update these files for your new library:
-
package.json— name, description, version, repository URL, keywords, author, license -
README.md— describe your library, installation, usage examples, update npm badge to your package name - README npm badge — update
ts-builds-templatein the badge URLs to your package name:[](https://www.npmjs.com/package/YOUR-PACKAGE-NAME) -
CLAUDE.md— project overview, architecture notes, custom workflows -
LICENSE— update if not using MIT -
src/index.ts— replace template code with your library's public API -
test/*.spec.ts— replace template tests
What ships with it
2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 10d ago First seen · 167 lines · 51 tokens per session scan C b2ae4c3e119d
ts-builds-template is a skill published in the GitHub repository jordanburke/temporal-mcp-server (1 stars, last pushed 4d ago), licensed MIT. It adds 51 tokens to every session and 1,208 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). It is 100% identical to ts-builds-template, differing in 0 lines, and is treated as a copy.
Other skills, from other repositories
no-bare-casts
Writing as in TypeScript or TSX production code, modifying a file that contains a bare as cast, silencing a type error with a cast, encountering as unknown as, or reviewing a cast site.
aws-sst-development
SST v4 (Ion) expert for managing AWS resources as code with the Pulumi-backed framework.
league-akari-shard-development
Use when creating, extending, refactoring, splitting, or reviewing League Akari main or renderer shards, including shard file organization, controller/loader/executor/handler boundaries, naming conventions, renderer TSX usage, platform guards, and public contract compatibility.
dd-code-generation
Use pup CLI for immediate Datadog operations or generate code for integration into applications.
fast-typescript-check
Keep www-sacred's TypeScript fast to type-check and fast to run. Use when touching the ASCII/canvas animation components (the only real per-frame code here), tightening type-check wall-clock, or auditing a change for runtime or compiler regressions. Scoped to this repo — a React 19 / Next.js 16 component library plus…
migrate-better-result-3
Migrate a TypeScript codebase from better-result 2.x to 3.0. Use when upgrading better-result across the TaggedError syntax, removed Result serialization helpers, recovery inference, matching, or retry APIs.