learn-progress

learn-progress is a command for coding agents from Sean-xhz/ai-learning-platform. It costs 39 tokens per session (730 once invoked), scanned A, original, MIT.

A command that summarises a study plan’s completion, learning gains, review queue, weak areas, learning dimensions, and role performance.

In plain words
What is it for?
Use it to inspect completion rates, before-and-after test trends, persistent weak points, study-role contributions, and whether the current learning style still fits.
Why use it?
It replaces scattered progress checks with one view of what is finished, improving, repeatedly difficult, or due for review.

Command

Part of the ai-learning-platform plugin — 2 skills, 5 commands, 3 agents, 2 hooks shipped together

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 commands/sean-xhz/ai-learning-platform/learn-progress
Clone the repo
git clone --depth 1 https://github.com/Sean-xhz/ai-learning-platform

Or install ai-learning-platform, the plugin that ships this one along with the rest of its 2 skills, 5 commands, 3 agents, 2 hooks.

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 learn-progress

README.md
[![agentmods](https://agentmods.dev/badge/commands/sean-xhz/ai-learning-platform/learn-progress.svg)](https://agentmods.dev/commands/sean-xhz/ai-learning-platform/learn-progress)
Your own site
<a href="https://agentmods.dev/commands/sean-xhz/ai-learning-platform/learn-progress"><img src="https://agentmods.dev/badge/commands/sean-xhz/ai-learning-platform/learn-progress.svg" alt="Measured on agentmods" height="20"></a>
Per session 39 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 730 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.00039 $0.00730
Opus 5 $0.00019 $0.00365
Sonnet 5 $0.00008 $0.00146
Haiku 4.5 $0.00004 $0.00073

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

Security

Grade A, and why

learn-progress 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.

commands/learn-progress.md · 34 lines

What it actually says

/learn-progress

请给我看一下学习进度总览。

$ARGUMENTS

学习计划进度(锚定每日状态行 - **状态**: 统计——注释行、笔记标题均不会误计):

  • 总天数:grep -Fc -- '- **状态**:' learning-plan.md 2>/dev/null
  • 已完成:grep -Fc -- '- **状态**:✅ 已完成' learning-plan.md 2>/dev/null
  • 进行中:grep -Fc -- '- **状态**:🔄 进行中' learning-plan.md 2>/dev/null
  • 未完成:grep -Fc -- '- **状态**:⬜ 未开始' learning-plan.md 2>/dev/null

学习增益统计(数据源 = progress-dashboard.md「每日进度」表,由 progress-tracker Hook 自动维护;learning-plan.md 不再维护独立增益表):

  • 平均 Pre-test:grep -A 100 '每日进度' progress-dashboard.md 2>/dev/null | awk -F'|' '/Day [0-9]/{split($4,a,"/"); gsub(/[^0-9]/,"",a[1]); if(a[1]!=""){s+=a[1]; n++}} END{if(n>0)printf "%.1f",s/n; else print "N/A"}'
  • 平均 Post-test:grep -A 100 '每日进度' progress-dashboard.md 2>/dev/null | awk -F'|' '/Day [0-9]/{split($5,a,"/"); gsub(/[^0-9]/,"",a[1]); if(a[1]!=""){s+=a[1]; n++}} END{if(n>0)printf "%.1f",s/n; else print "N/A"}'

复习队列状态(P1-7,若 review-queue.md 存在则读取):

  • 待复习 / 已掌握 / carryover 各多少项
  • 哪些盲区「忘记次数」≥2(顽固弱项,取队列 忘记次数 列)
  • 哪些盲区在多天反复出现(最常出现的盲区)

请汇总以上数据,给出:

  1. 当前进度和健康度判断(完成率 vs 预期时间)
  2. 学习增益趋势(增量是在上升还是下降?)
  3. 五维度雷达图(文字版):概念理解 / 场景应用 / 边界认知 / 跨域联想 / 术语理解
  4. 六角色表现评估:哪些角色发挥了最大价值?哪些角色被低估了?
  5. 学习模式建议:当前模式是否仍然合适?是否需要切换?
  6. 盲区与记忆巩固:最常出现的盲区、顽固弱项(忘记次数≥2)、已掌握多少;是否需要在下一个缓冲日做一次深度复习
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 · 34 lines · 39 tokens per session scan A 95f4cb582d8a

Subscribe to this mod's changes

learn-progress is a command published in the GitHub repository Sean-xhz/ai-learning-platform (2 stars, last pushed 1mo ago), licensed MIT. It adds 39 tokens to every session and 730 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.