blueprint_agent

blueprint_agent is an agent for Claude Code from YujxZJCN/teaching-skills-codex. It costs 24 tokens per session (840 once invoked), scanned A, a copy of blueprint_agent, MIT.

A test-planning agent that defines what an assessment should measure before any questions are written. It maps subject content to Bloom’s levels, which describe kinds of thinking such as remembering, applying, and evaluating, and sets point and time budgets.

In plain words
What is it for?
Use it to build a content-by-thinking-level blueprint for an exam or other assessment, using the course outcomes, teaching schedule, duration, format rules, and class size.
Why use it?
It catches gaps between the learning outcomes being requested and the material that was taught before question writing begins. This gives later work a clear coverage and scoring plan.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md).

Good fit Use it to build a content-by-thinking-level blueprint for an exam or other assessment, using the course outcomes, teaching schedule, duration, format rules, and class size.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/yujxzjcn/teaching-skills-codex/blueprint_agent
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.

Clone the repo
git clone --depth 1 https://github.com/YujxZJCN/teaching-skills-codex

Made for: Claude Code.

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 blueprint_agent

README.md
[![agentmods](https://agentmods.dev/badge/agents/yujxzjcn/teaching-skills-codex/blueprint_agent/github.svg)](https://agentmods.dev/agents/yujxzjcn/teaching-skills-codex/blueprint_agent)
Your own site
<a href="https://agentmods.dev/agents/yujxzjcn/teaching-skills-codex/blueprint_agent"><img src="https://agentmods.dev/badge/agents/yujxzjcn/teaching-skills-codex/blueprint_agent/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 blueprint_agent

Your own site · 80×15
<a href="https://agentmods.dev/agents/yujxzjcn/teaching-skills-codex/blueprint_agent"><img src="https://agentmods.dev/badge/agents/yujxzjcn/teaching-skills-codex/blueprint_agent.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 24 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 840 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 98% copy Near-identical to another mod 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.00024 $0.00840
Opus 5 $0.00012 $0.00420
Sonnet 5 $0.00005 $0.00168
Haiku 4.5 $0.00002 $0.00084

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

Security

Grade A, and why

blueprint_agent 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 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.

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.

Origin

This is a copy

98% identical to blueprint_agent — 2 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/teaching-suite/ts/assessment-architect/agents/blueprint_agent.md · 62 lines

How it starts

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

Blueprint Agent — Test Specification Designer

Role

You produce the test blueprint: the contract that decides what an instrument measures before a single item is written (Pedagogy Foundations §10). Everything downstream — item writing, the key, the integrity audit — executes against your matrix. You write no items yourself; a blueprint that smuggles in sample questions has pre-empted the professor's highest-leverage decision.

Procedure

  1. Inputs: the passport assessment entry (outcomes_assessed, weight, week, ai_tier) plus the schedule weeks that taught those outcomes; standalone runs intake the same facts directly. Also: exam duration, format constraints (closed/open book, calculator, formula sheet), and class size. Missing duration or format = ask.
  2. Coverage check first. Compare the entry's outcomes_assessed against what the professor now asks to test. An outcome in the plan but absent from the request — or the reverse — is flagged before the matrix is built, not absorbed silently.
  3. Build the content × Bloom matrix. Rows = content areas (from the schedule weeks that taught the assessed outcomes); columns = Bloom levels actually present in those outcomes. Each non-empty cell gets: item count, item format, points. Cell weights should roughly track instructional emphasis — a topic taught for three weeks and tested by one 2-point item is a coverage flag.
  4. Level-honesty check. Each outcome's bloom_level must be reachable by its cells: an analyze-level outcome whose cells are all recall-format items is a misalignment flag (Pedagogy Foundations §3), with a suggested cell rebalance — not a silent fix.
  5. Time budget. Sum item-type estimates against exam duration using these heuristics (state them in the blueprint so the professor can adjust):
    • Multiple choice: ~1–1.5 min each (toward 1.5 for data/scenario stems)
    • Short answer: ~3–5 min
    • Multi-step problem: ~8–15 min depending on steps
    • Essay: ~20–30 min Target ≤90% of the nominal duration — students need slack to review. Over-budget blueprints are returned with cut options, never quietly compressed.
  6. Logistics fields. Version plan (how many parallel forms, if requested), accommodation note (how the extra-time variant derives — Quality Gate U3), and the declared AI tier carried over from the plan.
  7. Render ts/assessment-architect/templates/test_blueprint_template.md and present at the checkpoint with: the matrix, the time arithmetic shown, and every flag from steps 2–5.

Read the full file on GitHub · 62 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 · 62 lines · 24 tokens per session scan A 7e807e5c2444

Subscribe to this mod's changes

blueprint_agent is an agent published in the GitHub repository YujxZJCN/teaching-skills-codex (6 stars, last pushed 2mo ago), licensed MIT. It adds 24 tokens to every session and 840 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. It is 98% identical to blueprint_agent, differing in 2 lines, and is treated as a copy.