Getting it into your agent
It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.
git clone --depth 1 https://github.com/jhlee0409/claude-pluginsnpx agentmods add skills/jhlee0409/claude-plugins/scaffold-templatesWrote 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/jhlee0409/claude-plugins/scaffold-templates)<a href="https://agentmods.dev/skills/jhlee0409/claude-plugins/scaffold-templates"><img src="https://agentmods.dev/badge/skills/jhlee0409/claude-plugins/scaffold-templates/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/jhlee0409/claude-plugins/scaffold-templates"><img src="https://agentmods.dev/badge/skills/jhlee0409/claude-plugins/scaffold-templates.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.00013 | $0.03534 |
| Opus 5 | $0.00006 | $0.01767 |
| Sonnet 5 | $0.00003 | $0.00707 |
| Haiku 4.5 | $0.00001 | $0.00353 |
Grade A, and why
scaffold-templates scanned grade A 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 9d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
this.api = axios.create({ How it starts
The opening of the file, as written. The whole thing — 556 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Scaffold Templates
Defines production-ready templates for different tech stacks and architectural patterns.
EXECUTION INSTRUCTIONS
When this skill is invoked, Claude MUST:
- Receive stack info from calling command (framework, httpClient, dataFetching)
- Match to template based on stack
- Return template definition with file structures and code patterns
Template Registry
Template: react-query-fsd
Best for: React + TypeScript + React Query v5 + Medium-Large apps
Stack Match:
- framework:
react - dataFetching:
@tanstack/react-queryorreact-query - language:
typescript
Structure:
src/
├── shared/
│ └── api/
│ ├── create-api.ts
│ ├── api-error.ts
│ └── index.ts
│
└── entities/
└── {domain}/
├── api/
│ ├── {domain}-api.ts
│ ├── {domain}-paths.ts
│ ├── {domain}-keys.ts
│ └── {domain}-queries.ts
├── model/
│ └── types.ts
└── index.ts
File Templates:
create-api.ts
const BASE_URL = process.env.NEXT_PUBLIC_API_URL ?? process.env.VITE_API_URL ?? '';
export interface ApiRequestConfig {
headers?: Record<string, string>;
signal?: AbortSignal;
}
export interface ApiError {
status: number;
message: string;
code?: string;
details?: unknown;
}
class ApiClient {
private baseUrl: string;
private defaultHeaders: Record<string, string>;
constructor(baseUrl: string = BASE_URL) {
this.baseUrl = baseUrl;
this.defaultHeaders = {
'Content-Type': 'application/json',
};
}
private async request<T>(
method: string,
path: string,
body?: unknown,
config?: ApiRequestConfig
): Promise<T> {
const response = await fetch(`${this.baseUrl}${path}`, {
method,
headers: { ...this.defaultHeaders, ...config?.headers },
body: body ? JSON.stringify(body) : undefined,
signal: config?.signal,
});
if (!response.ok) {
throw await this.parseError(response);
}
if (response.status === 204) {
return undefined as T;
}
return response.json();
}
private async parseError(response: Response): Promise<ApiError> {
try {
const data = await response.json();
return {
status: response.status,
message: data.message ?? response.statusText,
code: data.code,
details: data.details,
};
} catch {
return { status: response.status, message: response.statusText };
}
}
get<T>(path: string, config?: ApiRequestConfig): Promise<T> {
return this.request<T>('GET', path, undefined, config);
}
post<T>(path: string, body?: unknown, config?: ApiRequestConfig): Promise<T> {
return this.request<T>('POST', path, body, config);
}
put<T>(path: string, body?: unknown, config?: ApiRequestConfig): Promise<T> {
return this.request<T>('PUT', path, body, config);
}
patch<T>(path: string, body?: unknown, config?: ApiRequestConfig): Promise<T> {
return this.request<T>('PATCH', path, body, config);
}
delete<T>(path: string, config?: ApiRequestConfig): Promise<T> {
return this.request<T>('DELETE', path, undefined, config);
}
}
export const createApi = () => new ApiClient();
export const api = new ApiClient();
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.
- 9d ago First seen · 556 lines · 13 tokens per session scan A a5490236a026
scaffold-templates is a skill published in the GitHub repository jhlee0409/claude-plugins (4 stars, last pushed 7mo ago), licensed MIT. It adds 13 tokens to every session and 3,534 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
api-design
API contract design for REST and GraphQL, covering resource shape, URL and header versioning with deprecation windows, RFC 9457 Problem Details error handling, and OpenAPI specs. Use when specifying the wire contract an endpoint exposes, choosing a versioning scheme, or standardizing error response bodies across…
fastapi
FastAPI best practices and conventions. Use when working with FastAPI APIs, Pydantic models, dependencies, streaming responses including Server-Sent Events (SSE), and serving frontend apps. Keeps FastAPI code clean and up to date with the latest features and patterns.
printing-press-amend
Amend a published CLI from one of two input sources: (1) dogfood mode mines the active Claude Code session transcript for friction (missing flags, hand- rolled API payloads, silent-null returns); (2) direct-input mode accepts user-supplied asks (rename a command, add commands or feeds, fix a named bug, optionally…
datamodel-code-generator
Use this skill when the user wants Python data models, Pydantic models, dataclasses, TypedDicts, msgspec structs, or type-safe Python classes generated from OpenAPI, AsyncAPI, JSON Schema, GraphQL, JSON/YAML/CSV sample data, MCP tool schemas, Protocol Buffers, XML Schema, Apache Avro, or existing Python model objects.…
printing-press
Set up a new integration, connector, or CLI binding for any API. Wrap or generate a ship-ready Go CLI from an OpenAPI, HAR, or Postman spec via the lean research -> generate -> build -> shipcheck loop. Use when the user says build a CLI, wrap this API, set up a new integration, add a connector, integrate with a…
implementing-api-schema-validation-security
Implement API schema validation using OpenAPI specifications and JSON Schema to enforce input/output contracts and prevent injection, data exposure, and mass assignment attacks.