iso-24495-code

iso-24495-code is a skill for Claude Code, Codex from GaZmagik/iso-24495. It costs 61 tokens per session (1,382 once invoked), scanned A, original, MIT.

Plain-language rules for source code, based on ISO 24495-1:2023. They guide the order and naming of code units, as well as comments and error messages, so people can read code more easily.

In plain words
What is it for?
Use them when writing or restructuring code, choosing names, arranging public entry points, adding comments, or improving error messages.
Why use it?
They reduce the effort needed to find, understand, and act on information in a codebase. The rules focus on readability and maintainability, not on changing program behavior or performance.

Skill for Claude CodeCodex

Written for Claude Code and Codex: shipped in a Claude Code plugin, but also agents/openai.yaml present.

Part of the iso-24495-plain-language plugin — 8 skills shipped together

Good fit Use them when writing or restructuring code, choosing names, arranging public entry points, adding comments, or improving error messages.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/gazmagik/iso-24495/iso-24495-code
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 GaZmagik/iso-24495 --skill iso-24495-code
Clone the repo
git clone --depth 1 https://github.com/GaZmagik/iso-24495

Made for: Claude Code, Codex.

Or install iso-24495-plain-language, the plugin that ships this one along with the rest of its 8 skills.

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 iso-24495-code

README.md
[![agentmods](https://agentmods.dev/badge/skills/gazmagik/iso-24495/iso-24495-code/github.svg)](https://agentmods.dev/skills/gazmagik/iso-24495/iso-24495-code)
Your own site
<a href="https://agentmods.dev/skills/gazmagik/iso-24495/iso-24495-code"><img src="https://agentmods.dev/badge/skills/gazmagik/iso-24495/iso-24495-code/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 iso-24495-code

Your own site · 80×15
<a href="https://agentmods.dev/skills/gazmagik/iso-24495/iso-24495-code"><img src="https://agentmods.dev/badge/skills/gazmagik/iso-24495/iso-24495-code.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 61 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,382 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 pass 7 Sept 2026
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.00061 $0.01382
Opus 5 $0.00030 $0.00691
Sonnet 5 $0.00012 $0.00276
Haiku 4.5 $0.00006 $0.00138

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

Security

Grade A, and why

iso-24495-code 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 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.

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/iso-24495-code/SKILL.md · 123 lines

How it starts

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

Plain language in code

Extends ISO 24495-1 to source code. Code is read far more often than it is written, so the person reading it is the reader the standard is about.

Scope. This skill governs what a reader reads: the order units appear in, what they are called, what the comments say, and what an error tells the person who hits it.

It does not govern correctness, performance, or system design. It does govern local organisation, in rules 1 and 2, because where a unit sits and how far it reaches decide what a reader must hold in their head. For maintainability weaknesses such as complexity and dead code, use a code quality skill built on ISO/IEC 5055.

This is an interpretation of ISO 24495-1 applied by analogy, not a conformance claim.

The four principles, in code

Principle In prose In code
Findable The reader can find what they need The public entry point appears first
Understandable The reader understands it Names say what the thing is, in the reader's words
Relevant The reader gets what they need A comment says why; interface documentation says what
Usable The reader can act on it An error names the problem and shows a safe value

Rules

1. Front-load the main path

Put the public entry point at the top of the file, before the helpers it calls. A reader opening the file meets the thing it does, then the detail, in that order. This is the code form of leading with the outcome.

Where a language forces declarations before use, put a short delegating entry point first and the implementation below it.

Measured on 30 generated implementations of one specification. Without this rule the public function landed anywhere in the file, and in half the files it was the last thing in it. With the rule it sat in the first fifth of the file every time.

The measure was chosen after those runs rather than before them, and the effect appeared in one model family but not in the two others tested. Treat it as a hypothesis with a clean separation, not a settled result.

Read the full file on GitHub · 123 lines

Files

What ships with it

1 file 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. 9d ago First seen · 123 lines · 61 tokens per session scan A ec33521f6d43

Subscribe to this mod's changes

iso-24495-code is a skill published in the GitHub repository GaZmagik/iso-24495 (171 stars, last pushed yesterday), licensed MIT. It adds 61 tokens to every session and 1,382 once invoked, about $0.0003 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-08-30.

Related

Other skills, from other repositories

iso-24495

Use when text must be easy for its intended reader to find, understand, and act on — reports, emails, documentation, UI text, announcements, explanations, AI output that reads as dense or bureaucratic. Applies ISO 24495-1 plain language principles with dedicated technique layers for English and Traditional Chinese.…

danyuchn/iso-24495-skill · 123 tokens

radin-execute

Work through a project's whole backlog: prioritize every task, execute each via a sub-agent, commit after each. Use when the user wants the entire backlog processed ("work through my backlog"), not one named task. Delegates all implementation to sub-agents; clarifies ambiguity by asking the user rather than guessing.

shortcuts/radin · 71 tokens

radin-record

Log feedback, bugs, follow-ups, or ideas raised mid-session as structured backlog entries, so they survive past the conversation. Use for /radin-record, "log this to the backlog", "add as follow-up/bug/idea", "record what we just found", "note this for later", "add findings to backlog". Triggers even on vague asks…

shortcuts/radin · 99 tokens

radin-plan

Write a step-by-step implementation plan for one backlog entry, without touching code. Scope is one task (a title/keyword), not the whole backlog. Use for /radin-plan, "plan this backlog entry", "write a plan for X before we execute it". radin-execute delegates here for any entry too complex to implement directly.

shortcuts/radin · 78 tokens

radin-review

Run a thermo-nuclear code quality review over a scope (commit, PR, directory, or a range like "since yesterday") and log each finding as a backlog entry instead of printing to terminal. Use for /radin-review, "review and log to backlog", "audit this commit/PR/directory and file backlog entries", "turn this review into…

shortcuts/radin · 83 tokens

radin-doctor

Check that radin's own install under /.claude is complete and its optional companion tools are reachable. Use for /radin-doctor, "check my radin install", "is radin installed correctly", "radin doctor", "verify radin install".

shortcuts/radin · 62 tokens