temporal-mcp-server: Skill for Claude Code

.claude/skills/ts-builds-template/SKILL.md

ts-builds-template is a skill for Claude Code from jordanburke/temporal-mcp-server. It costs 51 tokens per session (1,208 once invoked), scanned C, a copy of ts-builds-template, MIT.

A setup guide for creating TypeScript libraries—reusable JavaScript or TypeScript packages—from the ts-builds-template.

In plain words
What is it for?
Use it to start an npm package, customize its files, understand its structure, develop it, and publish it to npm.
Why use it?
It gives a new package a known project layout and development workflow, so you do not have to decide every setup detail yourself.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: mentions CLAUDE.md; mentions Claude Code.

This is jordanburke/temporal-mcp-server's own configuration. It tells Claude Code how to work on temporal-mcp-server itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything temporal-mcp-server configures →

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/jordanburke/temporal-mcp-server/main/.claude/skills/ts-builds-template/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/jordanburke/temporal-mcp-server

Made for: Claude Code.

Its marketplace also offers this one on its own, as the plugin ts-builds-template/plugin install ts-builds-template after adding the marketplace above.

Wrote 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.

agentmods badge for ts-builds-template

README.md
[![agentmods](https://agentmods.dev/badge/skills/jordanburke/temporal-mcp-server/ts-builds-template/github.svg)](https://agentmods.dev/skills/jordanburke/temporal-mcp-server/ts-builds-template)
Your own site
<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.

agentmods 80×15 button for ts-builds-template

Your own site · 80×15
<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>
Per session 51 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,208 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 10d ago against content hash b2ae4c3e119d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

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
Origin

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.

.claude/skills/ts-builds-template/SKILL.md · 167 lines

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-template in the badge URLs to your package name:
    [![npm version](https://img.shields.io/npm/v/YOUR-PACKAGE-NAME.svg)](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

Read the full file on GitHub · 167 lines

Files

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.

Changes

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.

  1. 10d ago First seen · 167 lines · 51 tokens per session scan C b2ae4c3e119d

Subscribe to this mod's changes

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.

Related

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.

prisma/orm · 52 tokens

aws-sst-development

SST v4 (Ion) expert for managing AWS resources as code with the Pulumi-backed framework.

sickn33/agentic-awesome-skills · 26 tokens

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.

LeagueAkari/LeagueAkari · 58 tokens

dd-code-generation

Use pup CLI for immediate Datadog operations or generate code for integration into applications.

DataDog/pup · 16 tokens

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…

internet-development/www-sacred · 84 tokens

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.

dmmulroy/better-result · 52 tokens