standards-to-tooling

standards-to-tooling is a skill for Claude Code, Codex from pantheon-org/tekhne. It costs 76 tokens per session (2,219 once invoked), scanned A, original, MIT.

A guide for turning written coding conventions into automatic linting and formatting rules. Linting checks code for defined problems, while formatting keeps its layout consistent.

In plain words
What is it for?
Use it to configure ESLint, Prettier, Biome, TypeScript, or similar tools for JavaScript, TypeScript, Vue, and monorepo projects.
Why use it?
It reduces style drift and catches enforceable convention violations before they reach code review.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions AGENTS.md.

Good fit Use it to configure ESLint, Prettier, Biome, TypeScript, or similar tools for JavaScript, TypeScript, Vue, and monorepo projects.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/pantheon-org/tekhne/standards-to-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 pantheon-org/tekhne --skill standards-to-tooling
Clone the repo
git clone --depth 1 https://github.com/pantheon-org/tekhne

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 standards-to-tooling

README.md
[![agentmods](https://agentmods.dev/badge/skills/pantheon-org/tekhne/standards-to-tooling/github.svg)](https://agentmods.dev/skills/pantheon-org/tekhne/standards-to-tooling)
Your own site
<a href="https://agentmods.dev/skills/pantheon-org/tekhne/standards-to-tooling"><img src="https://agentmods.dev/badge/skills/pantheon-org/tekhne/standards-to-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 standards-to-tooling

Your own site · 80×15
<a href="https://agentmods.dev/skills/pantheon-org/tekhne/standards-to-tooling"><img src="https://agentmods.dev/badge/skills/pantheon-org/tekhne/standards-to-tooling.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 76 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,219 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 6 findings, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Excessive Agency · line 194
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
  • medium MCP Rug Pull · line 138
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
  • medium MCP Rug Pull · line 147
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
  • medium MCP Rug Pull · line 141
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
  • medium MCP Rug Pull · line 148
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
  • medium MCP Rug Pull · line 144
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
How audits are shown
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.00076 $0.02219
Opus 5 $0.00038 $0.01110
Sonnet 5 $0.00015 $0.00444
Haiku 4.5 $0.00008 $0.00222

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

Security

Grade A, and why

standards-to-tooling scanned grade A with 0 findings 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/software-engineering/standards-to-tooling/SKILL.md · 209 lines

How it starts

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

Standards to Tooling

Maps project-specific coding conventions to linting/formatting tool configuration. For the Stars project: JS/TS/Vue codebase with ESLint 10 + Prettier, migrating to full TypeScript.

Mindset

A convention that cannot be auto-enforced will drift. Before implementing any standard, always ask: Can a tool catch this? If yes, configure it. If no, document it as a code review checklist item.

Prefer tools that provide fix-on-save or --fix support — adoption is higher when enforcement is automatic rather than manual.

When to Use

  • Onboarding a new project and need to set up linting/formatting from scratch
  • Adding a new code convention that should be machine-enforced
  • Reviewing a PR where a convention was violated and a tool should catch it
  • Migrating a codebase (e.g., JS → TS) and need to update or add tooling
  • Standardising tooling across multiple projects or monorepo workspaces

Workflow

1. Discovery — Extract actionable standards

Source the project's conventions from:

Source What to look for
AGENTS.md Naming, import style, component conventions, file structure
.github/CONTRIBUTING.md PR requirements, commit style
Existing configs Patterns already configured (eslint.config.js, .prettierrc, tsconfig.json)
Code review history Repeated comments about the same issue
Project language docs Best practices for the language/framework (Vue 3 style guide, etc.)

For each convention, classify it:

Category Example Tool
Naming kebab-case files, PascalCase components ESLint, lint-staged
Imports type imports, .js extensions, ordering ESLint, Prettier plugins
Formatting single quotes, trailing commas, print width Prettier
Types no implicit any, strict null checks TypeScript tsconfig.json
Unused code no unused vars, params, imports ESLint
Style no-var, prefer-const, no console.log ESLint
Vue <script setup> only, component name casing eslint-plugin-vue

Read the full file on GitHub · 209 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. 6d ago First seen · 209 lines · 76 tokens per session scan A 62e7f3a55fa5

Subscribe to this mod's changes

standards-to-tooling is a skill published in the GitHub repository pantheon-org/tekhne (10 stars, last pushed yesterday), licensed MIT. It adds 76 tokens to every session and 2,219 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.