training-status

A status report showing the patterns, rules, glossary entries, and standards that an AI teammate has learned.

In plain words
What is it for?
Use it to review learned training, inspect recent additions, see frequently applied guidance, and find commands for adding or removing training.
Why use it?
It gives you a clear view of the guidance currently available to the AI, including recently learned items and the guidance it uses most often.

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/altimateai/altimate-code/training-status
Any agent
npx skills add AltimateAI/altimate-code --skill training-status
Clone the repo
git clone --depth 1 https://github.com/AltimateAI/altimate-code

Made for: Claude Code, Codex.

Per session 19 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 323 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00019 $0.00323
Opus 5 $0.00010 $0.00161
Sonnet 5 $0.00004 $0.00065
Haiku 4.5 $0.00002 $0.00032

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

Security

Grade A, and why

training-status 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 3d 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.

.opencode/skills/training-status/SKILL.md · 46 lines

What it actually says

Training Status

Purpose

Display a comprehensive overview of everything your AI teammate has been trained on.

Workflow

  1. Fetch all training: Use the training_list tool with no filters to get all training entries.

  2. Present the dashboard: Format the output as a clean status report:

Training Status

Patterns:   X  (staging-model, incremental-config, ...)
Rules:      X  (no-float, no-select-star, ...)
Glossary:   X  (arr, mrr, churn-date, ...)
Standards:  X  (sql-style-guide, review-checklist, ...)

Recent Training:
  - 2 days ago: Learned rule "no-float" (from user correction)
  - 5 days ago: Learned pattern "staging-model" (from stg_orders.sql)
  - 1 week ago: Loaded standard "sql-style-guide" (from docs/sql-style.md)

Most Applied:
  - "staging-model" pattern — applied 12 times
  - "no-float" rule — applied 8 times
  1. Offer actions: After showing status, suggest:
    • /teach to learn new patterns
    • /train to load standards from documents
    • training_remove to remove outdated entries
    • training_list with filters for detailed views

Usage

/training-status
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. 3d ago First seen · 46 lines · 19 tokens per session scan A 103b54836200

Subscribe to this mod's changes

training-status is a skill published in the GitHub repository AltimateAI/altimate-code (803 stars, last pushed 3d ago), licensed MIT. It adds 19 tokens to every session and 323 once invoked, about $0.0001 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

data-divergence

Investigate why two datasets that should agree don't — two pipelines writing the same logical table, a rollup vs the detail it aggregates, a dashboard vs its source, one environment vs another. Use when row counts, totals, or date ranges disagree and the question is what happened rather than just what differs. Covers…

andre-salvati/databricks-template · 123 tokens

sql-diagram

Diagram a SQL query and explain what it shows — either its execution steps (mode=plan) or its column lineage (mode=lineage) — then trace it through small data so the defects the picture cannot show become visible. Use when asked to visualize, diagram, explain or review what a query does, how it joins its tables, or…

andre-salvati/databricks-template · 121 tokens

project-costs

Run the project cost report and write the analysis into it. Use when asked about this project's cloud spend, cost anomalies, spikes or trends, DBU/DSU consumption, per-job or per-pipeline cost, or the AWS vs Databricks split. Runs make project-costs (AWS Cost Explorer + Databricks system.billing), then analyses the…

andre-salvati/databricks-template · 93 tokens

explore

Use this whenever you need to know what is actually in a database, warehouse, or DuckDB file before you trust it: ranked inventory of what exists, column profiles, PII detection, grain and data-quality problems, verified join inference, Mermaid ER diagrams, guarded ad-hoc SQL probes, and k-means segmentation…

exmergo/dex · 309 tokens

transform

Use this to author and change a dbt project: bootstrap a project in a repo that has none (transform init), write or refactor model SQL from staging to marts, add tests and docs in schema.yml, manage dependencies, and define or update the semantic layer (dbt semantic models / MetricFlow: entities, dimensions, measures…

exmergo/dex · 317 tokens

maintain

Use this to keep a dbt project correct as the warehouse and the business change. It detects drift on four axes and proposes the fix: schema drift (source columns and tables added, dropped, retyped, or renamed), volume drift (a row count that collapsed, a table that emptied, a load that half-failed), grain drift (a key…

exmergo/dex · 300 tokens