dokploy-mcp-server: Skill for Claude Code

.claude/skills/typescript-standards/SKILL.md

typescript-standards is a skill for Claude Code from sapientsai/dokploy-mcp-server. It costs 62 tokens per session (2,434 once invoked), scanned C, original, MIT.

A guide for building and standardizing TypeScript libraries, which are reusable packages written in TypeScript. It follows a template using tools such as tsup, Vitest, ESLint, and Prettier, and supports both CommonJS and ES modules.

In plain words
What is it for?
For creating npm packages, updating existing TypeScript libraries, configuring their tooling, or preparing them for publication.
Why use it?
It provides consistent project structure and build, test, formatting, and linting practices. This reduces the setup work and differences between TypeScript packages.

Skill for Claude Code

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

This is sapientsai/dokploy-mcp-server's own configuration. It tells Claude Code how to work on dokploy-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 dokploy-mcp-server configures →

Reuse

Borrowing it

Nothing to install: this file belongs to sapientsai/dokploy-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/sapientsai/dokploy-mcp-server/main/.claude/skills/typescript-standards/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/sapientsai/dokploy-mcp-server

Made for: Claude Code.

Its marketplace also offers this one on its own, as the plugin typescript-standards/plugin install typescript-standards 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 typescript-standards

README.md
[![agentmods](https://agentmods.dev/badge/skills/sapientsai/dokploy-mcp-server/typescript-standards.svg)](https://agentmods.dev/skills/sapientsai/dokploy-mcp-server/typescript-standards)
Your own site
<a href="https://agentmods.dev/skills/sapientsai/dokploy-mcp-server/typescript-standards"><img src="https://agentmods.dev/badge/skills/sapientsai/dokploy-mcp-server/typescript-standards.svg" alt="Measured on agentmods" height="20"></a>
Per session 62 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,434 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 original No closer match found 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.00062 $0.02434
Opus 5 $0.00031 $0.01217
Sonnet 5 $0.00012 $0.00487
Haiku 4.5 $0.00006 $0.00243

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

Security

Grade C, and why

typescript-standards 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 6d 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

Copies of this mod

1 near-identical copy found in the catalogue:

.claude/skills/typescript-standards/SKILL.md · 372 lines

How it starts

The opening of the file, as written. The whole thing — 372 lines — stays where its author put it; the contents beside it link to each section on GitHub.

TypeScript Project Standards

Overview

This skill helps you create professional TypeScript libraries using the typescript-library-template pattern and apply these standards to existing projects. It provides a modern, production-ready setup with dual module format support, comprehensive testing, and consistent code quality tooling.

When to Use This Skill

Trigger this skill when:

  • Creating a new TypeScript library or npm package
  • Standardizing build scripts across TypeScript projects
  • Setting up or migrating to dual module format (CommonJS + ES modules)
  • Configuring modern tooling (tsup, Vitest, ESLint, Prettier)
  • Applying consistent code quality standards
  • Publishing packages to npm
  • Migrating from older build tools (webpack, rollup, tsc alone)

Quick Start

Scenario 1: Creating a New Project

# Clone the template
git clone https://github.com/jordanburke/typescript-library-template.git my-library
cd my-library

# Remove template's git history
rm -rf .git
git init

# Install dependencies
pnpm install

# Customize (see references/template-setup.md for checklist)
# - Update package.json (name, description, repository)
# - Update README.md
# - Add your code to src/

# Validate everything works
pnpm validate

Scenario 2: Applying Standards to Existing Project

See references/standardization.md for detailed migration guide. Quick version:

  1. Update scripts in package.json to standardized pattern
  2. Install tooling: tsup, vitest, eslint, prettier
  3. Copy configs: tsup.config.ts, vitest.config.ts, eslint.config.mjs
  4. Update build outputs: Dual module format with proper exports
  5. Run validation: pnpm validate

Core Standards

Script Commands

The template follows a consistent command pattern:

Main validation command:

pnpm validate    # Format → Lint → Test → Build (use before commits)

Individual operations:

# Formatting
pnpm format           # Write formatted code
pnpm format:check     # Validate formatting only

# Linting
pnpm lint             # Fix ESLint issues
pnpm lint:check       # Check ESLint issues only

# Testing
pnpm test             # Run tests once
pnpm test:watch       # Watch mode
pnpm test:coverage    # With coverage report
pnpm test:ui          # Interactive UI

# Building
pnpm build            # Production build (dist/)
pnpm dev              # Development watch (lib/)
pnpm ts-types         # Type check only

Read the full file on GitHub · 372 lines

Files

What ships with it

4 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. 6d ago First seen · 372 lines · 62 tokens per session scan C f2235c713060

Subscribe to this mod's changes

typescript-standards is a skill published in the GitHub repository sapientsai/dokploy-mcp-server (2 stars, last pushed 4d ago), licensed MIT. It adds 62 tokens to every session and 2,434 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

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. Use when writing or editing sst.config.ts, building infra/ modules (sst.aws.Function/Bucket/Dynamo/Cron/Service/Router, sst.Secret, sst.Linkable, raw aws. Pulumi resources), wiring resource links,...

sickn33/agentic-awesome-skills · 75 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

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

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