followup-tracking

followup-tracking is a skill for Claude Code, Codex from aizech/clinical-skills. It costs 43 tokens per session (2,099 once invoked), scanned A, original, MIT.

A workflow for recording incidental medical findings, arranging follow-up imaging, and managing reminders for patients who need further checks. Incidental findings are unexpected findings discovered during an examination for another reason.

In plain words
What is it for?
Use it to track findings such as lung nodules or renal masses, identify suggested CT, MRI, mammography, or other follow-up, and manage surveillance schedules.
Why use it?
It helps prevent recommended scans and surveillance checks from being forgotten after an initial radiology report. It also organizes follow-up by finding type and time interval.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

Good fit Use it to track findings such as lung nodules or renal masses, identify suggested CT, MRI, mammography, or other follow-up, and manage surveillance schedules.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/aizech/clinical-skills/followup-tracking
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 aizech/clinical-skills --skill followup-tracking
Clone the repo
git clone --depth 1 https://github.com/aizech/clinical-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 followup-tracking

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/aizech/clinical-skills/followup-tracking"><img src="https://agentmods.dev/badge/skills/aizech/clinical-skills/followup-tracking.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 43 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,099 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.00043 $0.02099
Opus 5 $0.00022 $0.01050
Sonnet 5 $0.00009 $0.00420
Haiku 4.5 $0.00004 $0.00210

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

Security

Grade A, and why

followup-tracking 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 12d 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.

.agents/skills/followup-tracking/SKILL.md · 313 lines

How it starts

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

Follow-up Tracking

You are an expert in radiology follow-up tracking. Your role is to help manage incidental findings, schedule follow-up studies, and ensure patients receive appropriate surveillance.

Follow-up Categories

Incidental Findings

Common incidental findings requiring follow-up:

Finding Typical Follow-up
Lung nodule <6mm No routine follow-up
Lung nodule 6-8mm CT at 6-12 months
Lung nodule >8mm CT, consider PET, possible biopsy
Renal cyst Usually no follow-up if simple
Renal mass >1cm MRI or CT characterization
Adrenal nodule <1cm No follow-up typically
Adrenal nodule >1cm CT/MRI for characterization
Thyroid nodule Based on TI-RADS

Surveillance Programs

Program Population Modality Interval
Lung cancer screening High-risk smokers Low-dose CT Annual
LI-RADS surveillance Cirrhosis MRI Every 6 months
Breast screening Women 40+ Mammography Annual
Colonoscopy Adults 45+ Colonoscopy Every 10 years

Follow-up Protocols

Lung Nodule Follow-up

LUNG_NODULE_PROTOCOL = {
    "baseline_ct": {
        "indication": "New lung nodule detected",
        "protocol": "CT Chest with contrast (thin section)",
        "report_additional": "Nodule characteristics"
    },
    "followup_intervals": {
        "<4mm": {"action": "No routine follow-up", "category": "Lung-RADS 2"},
        "4-6mm": {"action": "CT at 12 months", "category": "Lung-RADS 2"},
        "6-8mm": {"action": "CT at 6-12 months", "category": "Lung-RADS 3"},
        "8mm solid": {"action": "CT at 3 months, PET, or biopsy", "category": "Lung-RADS 4"},
        "Ground glass": {
            "<6mm": {"action": "CT at 6-12 months"},
            ">=6mm": {"action": "CT at 6-12 months"},
            ">=20mm or growing": {"action": "Consider biopsy"}
        }
    }
}

Incidental Adrenal Nodule

ADRENAL_NODULE_PROTOCOL = {
    "<1cm": {"action": "No routine follow-up"},
    "1-2cm": {
        "action": "MRI or CT protocol for characterization",
        "indications": ["History of malignancy", "Imaging features concerning"]
    },
    ">2cm or concerning": {
        "action": "Dedicated adrenal CT/MRI, consider biopsy",
        "additional": "Chemical shift imaging"
    }
}

Read the full file on GitHub · 313 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. 12d ago First seen · 313 lines · 43 tokens per session scan A 06ff64220cbd

Subscribe to this mod's changes

followup-tracking is a skill published in the GitHub repository aizech/clinical-skills (5 stars, last pushed 2mo ago), licensed MIT. It adds 43 tokens to every session and 2,099 once invoked, about $0.0002 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

flux-analyzer

Analyse FBA flux distributions to extract biological insights. Covers gene essentiality, phenotypic phase planes, flux sampling, pathway-level aggregation, secretion product prediction, and production of publication- quality figures.

aiming-lab/AutoResearchClaw · 44 tokens

statistical-method-design

Design statistical methods, baselines, diagnostics, variants, and ablations that directly address a formal problem formulation.

aiming-lab/AutoResearchClaw · 27 tokens

experimental-design

Best practices for designing reproducible ML experiments. Use when planning ablations, baselines, or controlled experiments.

aiming-lab/AutoResearchClaw · 25 tokens

meta-harness

Run one iteration of memory system evolution. Called by metaharness.py or interactively via /meta-harness.

stanford-iris-lab/meta-harness · 27 tokens

proof-derivation-forensics

Family-G proof & derivation integrity forensics: does a THIRD PARTY's written proof/derivation actually establish its theorem, or does it skip an obligation, assume its own conclusion, take an invalid step, drift a symbol's meaning, or smuggle an unstated assumption? Decides from the WRITTEN proof/derivation …

wanshuiyin/Anti-Autoresearch · 222 tokens

building

Implementation skill for writing production code with TDD. Covers the RED-GREEN-REFACTOR cycle, false-RED detection, vertical slicing, scope escalation, test process discipline, and code generation patterns. Loaded by component-builder and bug-investigator.

romiluz13/cc10x · 53 tokens