ankle-sprain

ankle-sprain is a skill for Claude Code, Codex from CyrilLeMat/temper-skills. It costs 121 tokens per session (673 once invoked), scanned A, original, Apache-2.0.

A fixed-rule ankle-injury checker that suggests a response such as urgent care, imaging, or a clinician visit from reported symptoms and patient details.

In plain words
What is it for?
Use it to assess ankle injuries using pain location, bone tenderness, weight-bearing ability, deformity, injury timing, age, and patient profile.
Why use it?
It applies the same triage rules consistently and highlights situations that may need prompt medical attention.

Skill for Claude CodeCodex

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

Good fit Use it to assess ankle injuries using pain location, bone tenderness, weight-bearing ability, deformity, injury timing, age, and patient profile.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/cyrillemat/temper-skills/ankle-sprain
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 CyrilLeMat/temper-skills --skill ankle-sprain
Clone the repo
git clone --depth 1 https://github.com/CyrilLeMat/temper-skills

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 ankle-sprain

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/cyrillemat/temper-skills/ankle-sprain"><img src="https://agentmods.dev/badge/skills/cyrillemat/temper-skills/ankle-sprain.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 121 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 673 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.
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.00121 $0.00673
Opus 5 $0.00060 $0.00336
Sonnet 5 $0.00024 $0.00135
Haiku 4.5 $0.00012 $0.00067

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

Security

Grade A, and why

ankle-sprain 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 11d ago.

The scan reads SKILL.md. This mod also ships 4 executable files (assets/assess_ankle.schema.py, scripts/assess_ankle.py, scripts/test_assess_ankle_ratified.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

examples/ankle_sprain/output/ankle-sprain/SKILL.md · 40 lines

How it starts

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

assess_ankle — skill (tempered by temper-skills)

You are an assistant.

The decision is frozen. Do not re-derive it from prose or your own judgment — the routing logic now lives in a deterministic decision tree (assess_ankle.assess_ankle, zero LLM calls, reviewed and version-controlled). Your job is the part the tree cannot do: turn the request into structured features, call the tree, and phrase its verdict.

How to answer

  1. Extract these structured features from the request:

    • pain_malleolar_zone
    • bone_tenderness_lateral_malleolus
    • bone_tenderness_medial_malleolus
    • can_bear_weight
    • visible_deformity
    • sprain_grade
    • hours_since_injury
    • age_years
    • patient_profile
  2. Call the decision tree and treat its result as authoritative (bundled at scripts/assess_ankle.py):

    from scripts.assess_ankle import assess_ankle
    verdict = assess_ankle({"pain_malleolar_zone": pain_malleolar_zone, "bone_tenderness_lateral_malleolus": bone_tenderness_lateral_malleolus, "bone_tenderness_medial_malleolus": bone_tenderness_medial_malleolus, "can_bear_weight": can_bear_weight, "visible_deformity": visible_deformity, "sprain_grade": sprain_grade, "hours_since_injury": hours_since_injury, "age_years": age_years, "patient_profile": patient_profile})
    
  3. Relay verdict to the user. Do not override it. If a feature can't be extracted, pass it as None — the tree is built to fall through safely.

Gray zones to surface

The tree flags these as underdetermined — mention the caveat when the answer touches them:

  • (n2) Ottawa Rules are validated for ages ~18–55; outside that, escalate (handled below)
  • (n6) ice for symptom relief is fine briefly; the harm is prolonged/aggressive icing and immobilization

Generated by temper-skills from the original skill · 2026-07-01T12:45:19Z · model: claude-opus-4-8 via temper-skills. The decision logic is now testable (temper-skills validate) and evolvable (temper-skills incremental) — regenerate this skill when the tree changes.

Read the full file on GitHub · 40 lines

Files

What ships with it

5 files 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. 11d ago First seen · 40 lines · 121 tokens per session scan A 13035f44472d

Subscribe to this mod's changes

ankle-sprain is a skill published in the GitHub repository CyrilLeMat/temper-skills (4 stars, last pushed 29d ago), licensed Apache-2.0. It adds 121 tokens to every session and 673 once invoked, about $0.0006 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-31.

Related

Other skills, from other repositories

anatomia-cc

ES: Te dice qué construir en Claude Code y te da el esqueleto de archivos: skill y en qué modo, subagente, hook, servidor MCP, plugin, rutina, artefacto, app con el Agent SDK, una línea en CLAUDE.md, o nada. Corré esto antes del primer archivo. Se dispara con «esto lo hago como skill o como agente», «necesito un MCP o…

Hainrixz/claude-anatomy · 267 tokens

grill-me-store-decisions

Interview the user relentlessly about a plan or design until reaching shared understanding, resolving each branch of the decision tree, AND persist the full decision tree (selected + rejected options, recommendations, AND cost tradeoffs) to decision-tree.md in the current repo so choices can be revisited later. Use…

vbalasu/grill-me-store-decisions · 84 tokens

exploratory-data-analysis

Perform bounded, local exploratory analysis of explicitly supported scientific files. Use for redacted CSV/TSV/JSON profiles; optional NumPy, HDF5, FASTA/FASTQ, and basic image metadata inspection; missingness/leakage audits; outlier and transformation sensitivity; and rigorous EDA report scaffolds. Other domain…

K-Dense-AI/scientific-agent-skills · 83 tokens

google-ads-audit

Google Ads account audit and business context setup. Use for account-health audits and business-context setup. Trigger on "audit my ads", "ads audit", "set up my ads", "onboard", "account overview", "how's my account", "ads health check", "what should I fix in my ads", or when the user is new to NotFair and hasn't run…

nowork-studio/notfair-plugin · 86 tokens

data-charts-tako

Search and visualize the world's data - get charts, insights, and embeddable knowledge cards for finance, economics, demographics, sports, and more.

gooseworks-ai/goose-skills · 35 tokens

webhook-management

Configure and validate CCAM webhook targets across supported chat, incident, automation, and generic providers. Use when listing provider requirements, creating or updating a target, scoping it to alert rules, sending a test notification, reviewing delivery history, or deleting a target.

hoangsonww/Claude-Code-Agent-Monitor · 56 tokens