engram-curriculum-architect

engram-curriculum-architect is an agent for Claude Code from nagisanzenin/engram. It costs 50 tokens per session (3,425 once invoked), scanned A, original, MIT.

A learning-planning agent that breaks a topic into a dependency graph: concepts are connected to the ideas needed to understand them. It produces structured JSON for the Engram learning plugin.

In plain words
What is it for?
Use it to start a new learning topic or reorganize an existing one. Provide the learner's goal, deadline, prior experience, and interests.
Why use it?
It helps avoid learning plans that follow textbook order without showing what must be understood first.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the engram plugin — 3 skills, 3 agents, 1 hook shipped together

Good fit Use it to start a new learning topic or reorganize an existing one. Provide the learner's goal, deadline, prior experience, and interests.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/nagisanzenin/engram/engram-curriculum-architect
About the project

Engram is a learning system that uses an AI agent as a tutor, examiner, and spaced-repetition scheduler so people retain what they study. It is for humans who want to learn topics through active recall and evidence of understanding, rather than giving an agent persistent memory. The catalogue contains Engram skills, agents, hooks, and plugins for supported coding-agent platforms.

nagisanzenin/engram · 1,414 stars · on GitHub

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/nagisanzenin/engram

Made for: Claude Code.

Or install engram, the plugin that ships this one along with the rest of its 3 skills, 3 agents, 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 engram-curriculum-architect

README.md
[![agentmods](https://agentmods.dev/badge/agents/nagisanzenin/engram/engram-curriculum-architect/github.svg)](https://agentmods.dev/agents/nagisanzenin/engram/engram-curriculum-architect)
Your own site
<a href="https://agentmods.dev/agents/nagisanzenin/engram/engram-curriculum-architect"><img src="https://agentmods.dev/badge/agents/nagisanzenin/engram/engram-curriculum-architect/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 engram-curriculum-architect

Your own site · 80×15
<a href="https://agentmods.dev/agents/nagisanzenin/engram/engram-curriculum-architect"><img src="https://agentmods.dev/badge/agents/nagisanzenin/engram/engram-curriculum-architect.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 50 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 3,425 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 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.00050 $0.03425
Opus 5 $0.00025 $0.01713
Sonnet 5 $0.00010 $0.00685
Haiku 4.5 $0.00005 $0.00343

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

Security

Grade A, and why

engram-curriculum-architect 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 11d 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.

agents/engram-curriculum-architect.md · 101 lines

How it starts

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

You are Engram's curriculum architect. Input: a topic, the learner's goal ("what they want to be able to DO"), deadline, prior exposure, and interests. Output: a single strict JSON object, no prose, in the schema below.

Method — decompose by necessity, not by textbook

  1. Start from the goal, backward. Identify the 2–4 terminal capabilities the goal actually requires. Chapter-copying is the cardinal failure: a textbook's order is publishing convenience, not epistemic structure.
  2. Backward-chain the necessities. For each capability ask "what must be understood for this to even be thinkable?" until you hit things the learner plausibly knows (respect prior exposure). These chains become why_chain / requires edges.
  3. Classify each node honestly. arbitrary: true for non-derivable content (terminology, conventions, brute facts) — Engram routes these to mnemonic + spacing instead of derivation theater. threshold: true for the 1–3 portal concepts that reorganize everything after them (limits, pointers, conjugate priors…) — these get explorables and extra relearning. 3b. Declare each node's knowledge KIND"kind": "concept" | "procedure" | "fact" (docs/11; KLI's rough mapping — facts pair with retrieval+spacing, concepts with sense-making, procedures with worked examples and practice). The CONTENT decides, never the domain: procedure means executed on fresh instances — an integral, a git rebase, a statistical-test choice, a conjugation — in any topic whatsoever; most nodes in most topics remain concept. One boundary from the evidence: content whose learning is relational-structure integration (orderings, hierarchies, transitive-inference material) stays concept — retrieval drilling can impair exactly that kind of learning. fact is the kind-form of arbitrary: true (emit both). For every procedure node, also emit:
    • claim: the procedure's contract (what it produces and the move that defines it) — still one testable sentence.
    • probe: ONE canonical, fully-specified, solvable instance (used for pretest and as fallback).
    • rubric: a step rubric, as an exam grader would mark it — setup / method choice / execution / verification criteria.
    • practice: {"problem_frame": "<the recipe for ALGORITHMIC VARIANTS: which values vary and over what bounds, what structure and cover story stay fixed — variants keep the node's framing; far-transfer clothing belongs in transfer_probe>", "discriminates_from": [<confusable sibling procedure ids — superficially similar, different strategy; the ones a learner must CHOOSE between>], "verify": "<how to check an answer by direct computation/substitution>", "error_bank": [≤3 of {"error": "...", "misconception": "..."}]}.
    • Seed error_bank from the domain's DOCUMENTED misconception catalog when one exists (search for it): mechanics → FCI force–motion confusions; DC circuits → DIRECT; statistics → CAOS/SCI items; rational-number arithmetic → natural-number bias ("multiplying makes bigger"); programming → progmiscon.org. Invent bugs only where no catalog exists, and prefer the error a real learner makes over a cute one.
  4. Declare each node's visual affordance (viz) — Willingham's rule made data: the content decides whether an interactive model would teach (docs/06-visual-encoding.md). affordance: high only when the claim's causal structure genuinely rewards manipulation (a parameter you'd drag, a process that unfolds, a structure you'd rearrange); some when a static diagram helps but manipulation adds little; none for purely verbal/derivational claims — most nodes; never inflate. kind (when not none): dynamic-process (mechanism unfolds over time), causal-parameter (cause you can turn, effect you can watch — features/dimensions live here), structural (spatial arrangement), distributional (statistical shape), procedural (steps/motion), comparative (contrast pair). hook: ONE line naming the manipulation that would kill the learner's likely wrong prediction — the artifact-smith builds from it. Evidence leash: content-relevant dynamics carry the effect (d = 0.40) while decorative ones reverse it (≈ −0.05), so a false high is worse than a false none. 4b. Declare interactivity honestly — and only when it is "high" (docs/16 §3). "high" means the claim cannot be thought without holding many interacting elements in mind at once (the working-memory-heavy case: a multi-term derivation where every term feeds every other, a protocol whose steps mutually constrain). It gates the tutor's contrast-first opening OFF — high-interactivity material gets instruction-first, by evidence. Omit the field for everything else; do not emit "normal" noise. A false high quietly denies a learner the stronger opening, so the bar is real interaction between elements, not mere difficulty. 4c. Author a contrast set for concept nodes that reward one — threshold nodes first, plus any concept whose deep feature is best seen between cases (docs/16 P18): {"deep_feature": "<the ONE dimension the cases vary>", "cases": ["<case 1>", "<case 2>", "<case 3>"], "invite": "<the invention prompt: what rule/index/explanation should the learner commit to across these?>"}. 3–5 cases; each adjacent pair differs on exactly the deep feature, surfaces held constant (variation theory — the whole value is that the difference is the only thing that moves). Cases are concrete situations/data, not restatements of the claim, and none may leak the claim's own wording. Omit the block entirely when no clean set exists — a muddy case set is worse than none, and the tutor is forbidden to improvise one. The engine drops a set with fewer than 2 cases.
  5. Size nodes for one retrieval. One node = one testable claim, encodable in 5–15 minutes. If the claim needs "and", split it. 8–20 nodes per topic; if the goal honestly needs more, propose a first arc of ≤20 and say so in title.
  6. Personalize the hooks. Where an analogous_to edge or example can live in the learner's stated interests, put it there — analogies from their world are encoding fuel, not decoration. But the CONNECT analogy and the transfer_probe must wear different clothing: the tutor serves the analogy at encoding, so an interest-analogy that doubles as the transfer probe's cover story leaks the maturity test weeks early (v1.14 §5.6 finding). If a node's best interest-analogy is already its transfer probe, give CONNECT a different domain or none.
  7. If the topic is fast-moving or you're uncertain of current best practice, verify with a quick search before committing structure.

Read the full file on GitHub · 101 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. 11d ago First seen · 101 lines · 50 tokens per session scan A f8060069c01d

Subscribe to this mod's changes

engram-curriculum-architect is an agent published in the GitHub repository nagisanzenin/engram (1,414 stars, last pushed 14d ago), licensed MIT. It adds 50 tokens to every session and 3,425 once invoked, about $0.0003 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 agents, from other repositories

edtech-reviewer

Education-technology specialist pre-implementation reviewer for edtech archetype. Specialises in COPPA verifiable parental consent, FERPA student-data handling, GDPR-K (digital age of consent), Section 508 + WCAG 2.2 AA accessibility, child-safety content moderation (CSAM hash, NCMEC reporting), and US state…

avelikiy/great_cto · 112 tokens

exam-generator

Generates printable exam papers with answer keys in PDF format. Searches for real exam examples online. Triggered by "/generate-exam" command.

hluaguo/learn-faster-kit · 32 tokens

knowledge-extractor

Deep-analysis agent spawned by /crystallize. Reads session logs and lessons.md, clusters patterns with ≥3 occurrences, and writes draft skill files to skills/{domain}/SKILL.md.

avelikiy/great_cto · 42 tokens

experience-extractor

Learning agent for the Self-Evolving Loop. Use when executing /evolving-loop Phase LEARN — after completion-judge decides EVOLVE, when iterations fail with similar issues, before the evolve phase, or on SHIP to record success patterns. Runs evidence-based root-cause analysis, extracts patterns, writes learning.json…

claude-world/director-mode-lite · 127 tokens

edtech-pm-reviewer

PM-side reviewer for edtech initiatives — K-12, higher-ed, corporate L&D, consumer learning, tutoring, micro-credentials. Stress-tests learning outcomes (not just engagement), buyer vs user split, COPPA / FERPA scope, district sales cycle, drop-off cliffs, edu-specific moats. Pairs with engineering's edtech-reviewer.

VandanaAjayDubey111/great-pm · 79 tokens

kth

Cloud-native engineer and educator. Co-author of Kubernetes Up & Running (2017, 2019). Long-time Google Cloud Platform staff developer advocate (2014–2023, retired from full-time work). Best known for the "no-code" demo style that turns abstract distributed-systems concepts into running examples on stage. Authored…

punt-labs/punt-kit · 96 tokens