learning-memory

learning-memory is a skill for Claude Code, Codex from yugash007/edu-agent-skills. It costs 19 tokens per session (725 once invoked), scanned A, original, MIT.

A guide for keeping a learner profile between teaching sessions, including their level, goals, learning style, covered topics, and weak areas. It helps an agent restore this context at the start and save updates at the end.

In plain words
What is it for?
Use it for ongoing tutoring where the agent should remember prior lessons, adapt explanations, track mistakes, and continue from a saved checkpoint.
Why use it?
It reduces repeated onboarding and lets teaching begin at an appropriate depth for the learner’s existing knowledge.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it for ongoing tutoring where the agent should remember prior lessons, adapt explanations, track mistakes, and continue from a saved checkpoint.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/yugash007/edu-agent-skills/learning-memory
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.

Any agent
npx skills add yugash007/edu-agent-skills --skill learning-memory
Clone the repo
git clone --depth 1 https://github.com/yugash007/edu-agent-skills

Made for: Claude Code, Codex.

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 learning-memory

README.md
[![agentmods](https://agentmods.dev/badge/skills/yugash007/edu-agent-skills/learning-memory.svg)](https://agentmods.dev/skills/yugash007/edu-agent-skills/learning-memory)
Your own site
<a href="https://agentmods.dev/skills/yugash007/edu-agent-skills/learning-memory"><img src="https://agentmods.dev/badge/skills/yugash007/edu-agent-skills/learning-memory.svg" alt="Measured on agentmods" height="20"></a>
Per session 19 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 725 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.00019 $0.00725
Opus 5 $0.00010 $0.00362
Sonnet 5 $0.00004 $0.00145
Haiku 4.5 $0.00002 $0.00072

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

Security

Grade A, and why

learning-memory 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 7d 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.

skills/memory/learning-memory/SKILL.md · 71 lines

How it starts

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

Purpose

Maintain a structured learner profile across sessions so agents start at the right depth, avoid re-teaching covered material, and prioritize known weak areas.

Activation

  • New session begins and prior context may exist. Learner references prior sessions or covered topics. Session ends and state should be preserved. Agent needs to personalize without re-asking onboarding questions.
  • Skip if: one-off session with no continuity desired, no persistent storage available, or narrow stateless task.
  • Routing: run at session start (restore) and end (save). Feed weak areas to weak-area-tracker. Profile drives find-your-level for returning learners with uncertain level.

Inputs

  • Prior session summary/profile, current session transcript, concepts + outcomes, learner self-reports, error patterns from assessment skills.

Profile Schema (compact)

learner_profile:
  level: beginner | intermediate | advanced
  stated_goal: "<goal>"
  learning_style: code-first | concept-first | mixed
  weak_areas: [{topic, type, last_seen, correction_attempted}]
  covered_topics: [{topic, confidence: low|medium|high, last_confirmed}]
  active_checkpoint: "<last concept/milestone in progress>"
  session_count: N
  last_session: "<ISO date>"

Workflow

Session Start (Restore)

  1. Retrieve — Check for prior profile. If exists: summarize and confirm accuracy with learner. If none: run find-your-level.
  2. Staleness Check — Last session 2+ weeks ago → flag for light review. Goal changed → update target.
  3. Inject — Feed relevant profile data (level, weak areas, last checkpoint) into current session. Don't re-explain confirmed material unless requested.

Session End (Save)

  1. Extract — Record: concepts covered, understanding outcomes, new weak areas, self-reported confidence.
  2. Update — Merge into profile. Promote "in-progress" → "covered" when confirmed. Add new weak areas.
  3. Handoff — Output compact summary: where to resume, what to skip, top 1–2 priorities for next session.

Read the full file on GitHub · 71 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 7d ago First seen · 71 lines · 19 tokens per session scan A fa812a902afa

Subscribe to this mod's changes

learning-memory is a skill published in the GitHub repository yugash007/edu-agent-skills (7 stars, last pushed 3mo ago), licensed MIT. It adds 19 tokens to every session and 725 once invoked, about $0.0001 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.

Related

Other skills, from other repositories

learn-from-fix

Capture Elixir/Ecto/LiveView lessons and Hex API rules. Use after corrections or when asked to document learning, record a lesson, prevent a fixed mistake, or remember package guidance with --library.

oliver-kriska/claude-elixir-phoenix · 46 tokens

learning-coach

A Chinese-language personal coaching guide for learning programming, AI agents, writing, languages, exams, research, or career skills through real projects and tasks. It tracks progress and teaches one useful action at a time.

chrichuang218/ai-learning-coach · 179 tokens

clean-claude-memory

Audit, prune, rewrite, or relocate Claude Code project memory. Use when the user asks to review, clean, update, or remove Claude memory files, eliminate stale project memories, or rebuild MEMORY.md.

Heapy/kortex · 47 tokens

amnesia

Use when the user returns to a session and needs to be reoriented, including requests such as "amnesia", "what did I miss", "recap the session", "where were we", "catch me up", "what happened while I was away", or "what was I doing". Reports when the session started, the last user message verbatim, what happened since…

Heapy/kortex · 90 tokens

codex-history-recovery

A recovery tool for Codex Desktop conversation history when chats become hidden after changing accounts, API keys, providers, or models.

Basic-XYZ/baku-skills · 96 tokens

codex-session-history

List and inspect local Codex session history by reading /.codex/sessionindex.jsonl, /.codex/sessions/, and /.codex/archivedsessions/. Default to unarchived sessions in /.codex/sessions/. Use when users ask what Codex sessions exist, want each session's id or title, need to know which project or workspace a session…

Sube-py/awesome-skills · 129 tokens