P13-final

P13-final is a skill for Claude Code, Codex from gitRasheed/metis-skill. It costs 0 tokens per session (3,379 once invoked), scanned A, a copy of metis, MIT.

A coding-work guide for an AI assistant that favors simple data, clear function calls, and early design decisions.

In plain words
What is it for?
Use it when building features, fixing bugs, refactoring, writing tests, reviewing changes, or checking code before committing.
Why use it?
It helps avoid awkward interfaces and overcomplicated code while work is being planned and implemented.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/gitrasheed/metis-skill/p13-final
Any agent
npx skills add gitRasheed/metis-skill --skill p13-final
Clone the repo
git clone --depth 1 https://github.com/gitRasheed/metis-skill

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 P13-final

README.md
[![agentmods](https://agentmods.dev/badge/skills/gitrasheed/metis-skill/p13-final.svg)](https://agentmods.dev/skills/gitrasheed/metis-skill/p13-final)
Your own site
<a href="https://agentmods.dev/skills/gitrasheed/metis-skill/p13-final"><img src="https://agentmods.dev/badge/skills/gitrasheed/metis-skill/p13-final.svg" alt="Measured on agentmods" 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 3,379 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin 80% copy Near-identical to another mod 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 $0.00000 $0.03379
Opus 5 $0.00000 $0.01690
Sonnet 5 $0.00000 $0.00676
Haiku 4.5 $0.00000 $0.00338

Measured 4d ago against content hash 18bf48b28f22, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

P13-final 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 4d 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.

Origin

This is a copy

80% identical to metis — 73 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

evals/cases-v5/skill-permutations/P13-final/SKILL.md · 178 lines

How it starts

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

Metis

Write code that favors plain data, pure logic, clear call sites, and early architectural thinking. These are strong defaults, not rigid laws: follow the surrounding codebase, framework constraints, and language norms when they clearly matter more.

Apply sections by phase instead of holding everything at once:

  • Designing or starting a task: Design principles, LLM agent process
  • Implementing: Working rules, Implementation rules, the Testing checklist when the change needs tests, plus the SOLID checklist for non-trivial modules
  • Writing tests: Testing checklist
  • Reviewing a diff or PR: Code review mode
  • Before claiming done, committing, or pushing: Final verification checklist

Design principles

  1. Start from the call site, by wishful thinking: pretend the perfect helpers already exist, name them the way you would want to call them, and get the top-level usage reading cleanly. If the calling code reads awkwardly, reconsider the abstractions and check whether a real constraint explains the awkwardness — you find out before building anything.
  2. Prefer plain data plus focused functions, modules, or systems over behavior-heavy objects. Draw boundaries around what systems do, not what entities are.
  3. Choose the simplest state model that matches reality: discriminated unions for mutually exclusive states, composable data for orthogonal features, and a plain flat record when neither pressure exists — do not over-architect the simple case.
  4. Isolate mutation and I/O near the edges. Orchestration decides what happens; inner helpers do narrow, understandable work.
  5. Push ifs up, fors down. Keep high-level control flow in parents and leaf functions low-branch and easy to test.
  6. Validate untrusted data where it crosses a trust boundary — parsing, persistence, external APIs — and assert internal invariants whose failure would mean a programming error: state transitions, function contracts. Check what must be true and, when useful, what must not be.
  7. Prefer explicit, behavior-focused tests without indirection that hides intent.
  8. Identify or measure the likely bottleneck before optimizing. Prefer architecture changes over late micro-optimizations.
  9. Design for the hardest confirmed requirement first, then simplify downward — not for hypothetical scale or imagined edge cases. Do not architect for the easy case and try to scale it up later.
  10. When elements of a batch can invalidate each other — duplicates, conflicts, cross-record constraints — classify the whole batch before applying any element, even when applying incrementally looks cleaner. This applies when the operation promises atomic or order-independent semantics; explicitly streaming or order-dependent operations are exempt.

Read the full file on GitHub · 178 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. 4d ago First seen · 178 lines · 0 tokens per session scan A 18bf48b28f22

Subscribe to this mod's changes

P13-final is a skill published in the GitHub repository gitRasheed/metis-skill (2 stars, last pushed 12d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 3,379 tokens. A static security scan graded it A with 0 findings. It is 80% identical to metis, differing in 73 lines, and is treated as a copy.