student-progress-tracker CLAUDE.md

student-progress-tracker CLAUDE.md is an instructions file for coding agents from woodstocksoftware/student-progress-tracker. It costs 1,661 tokens per session, scanned A, original, MIT.

Project instructions for a student progress tracker built with Python, a local SQLite database, and an MCP server. They describe the code layout, technology choices, how to run the server, and its tests.

In plain words
What is it for?
Use them when developing, testing, or starting the student progress tracker and its MCP server.
Why use it?
They give a coding agent the project context it needs before changing or running the tracker. This reduces guesswork about files, dependencies, and the local database.

Instructions file

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 instructions/woodstocksoftware/student-progress-tracker/claude-md
Clone the repo
git clone --depth 1 https://github.com/woodstocksoftware/student-progress-tracker

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 student-progress-tracker CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/woodstocksoftware/student-progress-tracker/claude-md.svg)](https://agentmods.dev/instructions/woodstocksoftware/student-progress-tracker/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/woodstocksoftware/student-progress-tracker/claude-md"><img src="https://agentmods.dev/badge/instructions/woodstocksoftware/student-progress-tracker/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,661 This file is loaded in full into every session.
When invoked 1,661 The same file — it is already loaded in full.
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.01661 $0.01661
Opus 5 $0.00830 $0.00830
Sonnet 5 $0.00332 $0.00332
Haiku 4.5 $0.00166 $0.00166

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

Security

Grade A, and why

student-progress-tracker CLAUDE.md 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 4d 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.

CLAUDE.md · 169 lines

How it starts

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

Student Progress Tracker MCP Server

Tech Stack

  • Language: Python 3.12
  • Framework: FastMCP (Model Context Protocol SDK)
  • Database: SQLite3 (local file: data/student_progress.db, configurable via STUDENT_PROGRESS_DB env var)
  • Dependencies: mcp>=1.0.0, python-dateutil>=2.8.0

Project Structure

student-progress-tracker/
├── run_server.py                  # MCP server entry point (stdio transport)
├── src/
│   └── student_progress/
│       ├── __init__.py
│       ├── __main__.py            # Alternate entry: python -m src.student_progress
│       ├── server.py              # MCP tool definitions (21 tools)
│       ├── database.py            # SQLite schema + queries (10 tables)
│       └── validators.py          # Input validation functions
├── tests/
│   ├── test_database.py           # Database unit tests (57 tests)
│   ├── test_server.py             # Server tool tests (81 tests)
│   └── test_validators.py         # Validator unit tests (38 tests)
├── data/
│   └── student_progress.db        # SQLite database (auto-created, gitignored)
├── requirements.txt
└── pyproject.toml                 # Linting config (ruff)

Running the Server

# Activate virtualenv
source venv/bin/activate

# Run directly
python run_server.py

# Or as a module
python -m src.student_progress

# Custom database path
STUDENT_PROGRESS_DB=/path/to/db.sqlite python run_server.py

Connecting to Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "student-progress": {
      "command": "/path/to/student-progress-tracker/venv/bin/python",
      "args": ["/path/to/student-progress-tracker/run_server.py"]
    }
  }
}

Connecting to Claude Code

Add to .claude/settings.json or project's .mcp.json:

{
  "mcpServers": {
    "student-progress": {
      "command": "/path/to/student-progress-tracker/venv/bin/python",
      "args": ["/path/to/student-progress-tracker/run_server.py"]
    }
  }
}

Read the full file on GitHub · 169 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. 4d ago First seen · 169 lines · 1,661 tokens per session scan A 5c6bf25cfb97

Subscribe to this mod's changes

student-progress-tracker CLAUDE.md is an instructions file published in the GitHub repository woodstocksoftware/student-progress-tracker (1 stars, last pushed 6mo ago), licensed MIT. It adds 1,661 tokens to every session, about $0.0083 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.