build-tooling

build-tooling is a skill for Claude Code, Codex from CaseMark/casedotdev-starter-app. It costs 0 tokens per session (2,636 once invoked), scanned C, original, Apache-2.0.

A development guide for a legal-application starter kit using Bun, TypeScript, and Next.js. Bun is a JavaScript runtime and package manager; TypeScript checks JavaScript code for type errors; Next.js is a web framework.

In plain words
What is it for?
Use it when installing dependencies, running scripts, compiling TypeScript, starting development, linting, or creating a production build for this starter kit.
Why use it?
It gathers the project's commands and development rules in one place. It helps avoid confusion about installing packages, running the development server, checking code, and building the application.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it when installing dependencies, running scripts, compiling TypeScript, starting development, linting, or creating a production build for this starter kit.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/casemark/casedotdev-starter-app/build-tooling
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add CaseMark/casedotdev-starter-app --skill build-tooling
Clone the repo
git clone --depth 1 https://github.com/CaseMark/casedotdev-starter-app

Made for: Claude Code, Codex.

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 build-tooling

README.md
[![agentmods](https://agentmods.dev/badge/skills/casemark/casedotdev-starter-app/build-tooling/github.svg)](https://agentmods.dev/skills/casemark/casedotdev-starter-app/build-tooling)
Your own site
<a href="https://agentmods.dev/skills/casemark/casedotdev-starter-app/build-tooling"><img src="https://agentmods.dev/badge/skills/casemark/casedotdev-starter-app/build-tooling/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 build-tooling

Your own site · 80×15
<a href="https://agentmods.dev/skills/casemark/casedotdev-starter-app/build-tooling"><img src="https://agentmods.dev/badge/skills/casemark/casedotdev-starter-app/build-tooling.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,636 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.00000 $0.02636
Opus 5 $0.00000 $0.01318
Sonnet 5 $0.00000 $0.00527
Haiku 4.5 $0.00000 $0.00264

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

Security

Grade C, and why

build-tooling 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 8d 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 .next
skills/build-tooling/SKILL.md · 533 lines

How it starts

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

Build Tooling Skill

Purpose

This skill covers Bun runtime, build tooling, TypeScript compilation, and development workflows in the create-legal-app starter kit.

Key Concepts

  • Bun: Fast all-in-one JavaScript runtime, bundler, and package manager
  • TypeScript: Type-safe JavaScript with static type checking
  • Next.js Build: Production build optimization
  • Development Server: Hot module replacement and fast refresh

Bun Runtime

Why Bun?

Bun is significantly faster than Node.js and npm:

  • 3x faster package installation
  • Built-in TypeScript support - no ts-node needed
  • Native bundler - no webpack/rollup configuration
  • Fast module resolution and execution
  • Drop-in replacement for Node.js

Bun Commands

# Package management
bun install                  # Install dependencies
bun add [package]           # Add package
bun add -D [package]        # Add dev dependency
bun remove [package]        # Remove package
bun update                  # Update all packages

# Running scripts
bun run dev                 # Run development server
bun run build               # Build for production
bun run start               # Start production server
bun run lint                # Run ESLint

# Direct execution
bun index.ts                # Run TypeScript directly
bunx [package]              # Run package without installing

package.json Scripts

{
  "scripts": {
    "dev": "next dev",
    "build": "next build",
    "start": "next start",
    "lint": "next lint",
    "type-check": "tsc --noEmit",
    "db:generate": "drizzle-kit generate",
    "db:migrate": "drizzle-kit migrate",
    "db:push": "drizzle-kit push",
    "db:studio": "drizzle-kit studio"
  }
}

TypeScript

Configuration

// tsconfig.json
{
  "compilerOptions": {
    "lib": ["dom", "dom.iterable", "esnext"],
    "allowJs": true,
    "skipLibCheck": true,
    "strict": true,
    "noEmit": true,
    "esModuleInterop": true,
    "module": "esnext",
    "moduleResolution": "bundler",
    "resolveJsonModule": true,
    "isolatedModules": true,
    "jsx": "preserve",
    "incremental": true,
    "plugins": [
      {
        "name": "next"
      }
    ],
    "paths": {
      "@/*": ["./*"]
    }
  },
  "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
  "exclude": ["node_modules"]
}

Read the full file on GitHub · 533 lines

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. 8d ago First seen · 533 lines · 0 tokens per session scan C e01534e9471e

Subscribe to this mod's changes

build-tooling is a skill published in the GitHub repository CaseMark/casedotdev-starter-app (2 stars, last pushed 2mo ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 2,636 tokens. 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.

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

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

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