tutor-statusline-install

tutor-statusline-install is a skill for Claude Code from Flagrare/llm-tutor. It costs 105 tokens per session (638 once invoked), scanned B, original, MIT.

An installer that adds llm-tutor’s learning information to the Claude Code status line. A status line is the small information display shown while Claude Code is running.

In plain words
What is it for?
Use it to install the llm-tutor status display, keep the current status line, toggle the added row off, or restore the original setup.
Why use it?
It shows learning tier, available cycles, and current progress without removing the existing status line. It saves the old configuration so the change can be undone.

Skill for Claude Code

Written for Claude Code: $CLAUDE_PLUGIN_ROOT variable. Also seen: reads .claude/ paths; mentions Claude Code.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the llm-tutor plugin — 12 skills, 1 hook shipped together

Good fit Use it to install the llm-tutor status display, keep the current status line, toggle the added row off, or restore the original setup.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add Flagrare/llm-tutor
Claude Code
/plugin install llm-tutor

Made for: Claude Code.

Or install llm-tutor, the plugin that ships this one along with the rest of its 12 skills, 1 hook.

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 tutor-statusline-install

README.md
[![agentmods](https://agentmods.dev/badge/skills/flagrare/llm-tutor/tutor-statusline-install/github.svg)](https://agentmods.dev/skills/flagrare/llm-tutor/tutor-statusline-install)
Your own site
<a href="https://agentmods.dev/skills/flagrare/llm-tutor/tutor-statusline-install"><img src="https://agentmods.dev/badge/skills/flagrare/llm-tutor/tutor-statusline-install/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 tutor-statusline-install

Your own site · 80×15
<a href="https://agentmods.dev/skills/flagrare/llm-tutor/tutor-statusline-install"><img src="https://agentmods.dev/badge/skills/flagrare/llm-tutor/tutor-statusline-install.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 105 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 638 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. 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.00105 $0.00638
Opus 5 $0.00053 $0.00319
Sonnet 5 $0.00021 $0.00128
Haiku 4.5 $0.00011 $0.00064

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

Security

Grade B, and why

tutor-statusline-install scanned grade B with 1 finding 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 9d 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.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

Before mutating `~/.claude/settings.json`, print a short summary:
plugins/llm-tutor/skills/tutor-statusline-install/SKILL.md · 53 lines

How it starts

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

Tutor Statusline Install

This skill installs llm-tutor's statusline integration. After install, every statusline render shows the user's current tier, cycles balance, and (when active) the topic + concept progress, appended as a new row beneath whatever statusline they already had.

The install is non-destructive: it saves the user's original statusLine.command before swapping in our wrapper. /tutor-statusline-uninstall restores it.


Step 0 — Confirm the user knows what they're agreeing to

Before mutating ~/.claude/settings.json, print a short summary:

"About to wrap your Claude Code statusline so llm-tutor's tier/cycles/progress shows up as an extra row. Your existing statusline will still render unchanged — we only add a row.

  • Saved original: ~/.claude/llm-tutor/wrapped-statusline.json
  • Toggle off later: /tutor-statusline-toggle off
  • Full uninstall: /tutor-statusline-uninstall

Proceed?"

If the user has already approved in their previous message (e.g. they explicitly typed /tutor-statusline-install), skip the confirmation and proceed directly.


Step 1 — Run the install script

bash "$CLAUDE_PLUGIN_ROOT/scripts/statusline-install.sh"

Echo the script's output to the user verbatim. Don't summarize — the script prints the exact paths it touched, which is what the user needs to see.


Step 2 — Tell the user how to verify

"Restart Claude Code (or wait for the next render) — you'll see an extra row beneath your existing statusline showing your tier, cycles, and active topic.

If you don't see anything, you may not have started a tutoring session yet. The segment auto-hides when there's no state file. Run /tutor-start <subject> and it'll appear."


Hard rules

  1. Never edit ~/.claude/settings.json directly from this skill. Always delegate to the install script — it has the idempotency + backup logic.
  2. Don't claim it's installed until the script exits 0.
  3. Don't run install if it's already installed — the script handles idempotency by detecting the wrapper symlink, but you can also short-circuit: if ~/.claude/llm-tutor/wrapped-statusline.json already exists, tell the user it's already installed and offer /tutor-statusline-toggle instead.

Read the full file on GitHub · 53 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. 9d ago First seen · 53 lines · 105 tokens per session scan B 73039c1c6607

Subscribe to this mod's changes

tutor-statusline-install is a skill published in the GitHub repository Flagrare/llm-tutor (5 stars, last pushed 3mo ago), licensed MIT. It adds 105 tokens to every session and 638 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). 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

chief-revenue-officer

Owns the revenue engine end to end: sales, monetization, pricing, customer success, retention, and partnerships. Use this for pricing and packaging decisions, sales strategy and coverage, forecast and pipeline health, churn and expansion, partner and channel strategy, or when marketing-sourced demand is not…

cbrock84/headcount · 80 tokens

chief-strategy-officer

Owns where the business plays and how it wins over a multi-year horizon — portfolio choices, corporate development, strategic partnerships, and planning under uncertainty. Use this for a decision about which markets or businesses to be in, whether to build, buy, or partner, how to allocate capital across business…

cbrock84/headcount · 93 tokens

seo-strategy

Audits and improves organic search performance — technical health, site architecture, internal linking, structured data, and the content decisions that determine what can rank. Use this to run an SEO audit, diagnose why pages are not ranking or were deindexed, plan a site's URL and navigation structure, add structured…

cbrock84/headcount · 74 tokens

financial-statement-analysis

Reads a set of financial statements and establishes what changed and why — fluctuation analysis against prior period and against budget, profitability, liquidity, solvency and efficiency ratios, benchmarking, and the non-GAAP measures presented alongside them. Use this to interpret results, review a counterparty's or…

cbrock84/headcount · 93 tokens

youtube-producer

Plans, packages, and scripts long-form video for retention and channel growth — idea selection, titles and thumbnails, script structure, and diagnosing why a video or channel underperforms. Use this for video ideas, packaging, scripting, a retention teardown, or channel strategy — including when someone describes a…

cbrock84/headcount · 86 tokens

estimating-and-contingency

Produces a cost or effort estimate someone can defend — decomposing the work, choosing between analogous, parametric and bottom-up methods, documenting the basis and its assumptions, expressing confidence as a range, and sizing contingency and management reserve separately. Use this to build an estimate, challenge one…

cbrock84/headcount · 87 tokens