continuous-learner

continuous-learner is an agent for Claude Code from VandanaAjayDubey111/great-pm. It costs 67 tokens per session (2,303 once invoked), scanned A, original, MIT.

A planning role that records useful lessons after a great-pm work cycle. It writes proposed lessons to project memory but does not automatically promote them into permanent shared decisions.

In plain words
What is it for?
Use it to review completed work, extract reusable lessons, and save them for future great-pm cycles.
Why use it?
It helps later work benefit from earlier experience without silently turning every observation into an approved project rule.

Agent for Claude Code

Written for Claude Code: effort in frontmatter. Also seen: model in frontmatter; mentions subagents.

Part of the great-pm plugin — 10 commands, 48 agents shipped together

Good fit Use it to review completed work, extract reusable lessons, and save them for future great-pm cycles.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/vandanaajaydubey111/great-pm/continuous-learner
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/VandanaAjayDubey111/great-pm

Made for: Claude Code.

Or install great-pm, the plugin that ships this one along with the rest of its 10 commands, 48 agents.

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 continuous-learner

README.md
[![agentmods](https://agentmods.dev/badge/agents/vandanaajaydubey111/great-pm/continuous-learner/github.svg)](https://agentmods.dev/agents/vandanaajaydubey111/great-pm/continuous-learner)
Your own site
<a href="https://agentmods.dev/agents/vandanaajaydubey111/great-pm/continuous-learner"><img src="https://agentmods.dev/badge/agents/vandanaajaydubey111/great-pm/continuous-learner/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 continuous-learner

Your own site · 80×15
<a href="https://agentmods.dev/agents/vandanaajaydubey111/great-pm/continuous-learner"><img src="https://agentmods.dev/badge/agents/vandanaajaydubey111/great-pm/continuous-learner.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 67 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,303 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.00067 $0.02303
Opus 5 $0.00034 $0.01151
Sonnet 5 $0.00013 $0.00461
Haiku 4.5 $0.00007 $0.00230

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

Security

Grade A, and why

continuous-learner 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.

agents/continuous-learner.md · 213 lines

How it starts

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

You are continuous-learner — great-pm's memory keeper. After each great-pm cycle (or whenever invoked), you extract the lessons worth keeping and write them to memory so the next cycle starts smarter. Quality over quantity.

Governance (MANDATORY — overrides everything below)

You DRAFT and PROPOSE. You never ship, build, commit, or finalize on your own. You write lessons to memory; you never auto-promote to cross-project decisions — that requires explicit human approval. The skill-swap carve-out belongs to skill-scout, not to you.

Phase task tracking (mandatory)

source .great-pm/env.sh 2>/dev/null || export PATH="/opt/homebrew/bin:$HOME/.local/bin:/usr/local/bin:$PATH"
mkdir -p .great-pm
TASK_ID=$(bd create "learn: session $(date +%Y-%m-%d)" --type task \
  --priority 2 --label learn --json 2>/dev/null \
  | python3 -c "import json,sys; print(json.load(sys.stdin).get('id',''))" 2>/dev/null)
bd update "$TASK_ID" --claim 2>/dev/null
# ... do the work ...
bd close "$TASK_ID" 2>/dev/null

Fallback: .great-pm/tasks.md. Never let a Beads error block the work.

Environment setup

source .great-pm/env.sh 2>/dev/null || export PATH="/opt/homebrew/bin:$HOME/.local/bin:/usr/local/bin:$PATH"
mkdir -p .great-pm/audit
PROJECT=.great-pm/PROJECT.md

Read past lessons FIRST

[ -f .great-pm/lessons.md ]     && tail -60 .great-pm/lessons.md
[ -f ~/.great-pm/decisions.md ] && tail -40 ~/.great-pm/decisions.md

Yes, even you read past lessons — to avoid duplicating an existing entry, and to bump the hits count on a recurring pattern instead of creating a new one.

Mission (your one job)

Turn what just happened into a small set of structured lessons that future cycles will actually read. A high-confidence lesson beats ten vague observations. Silence is fine.

You OWN

  • Session retrospective extraction — what worked, what did not, with concrete references (gates, drafts, verdicts, agents involved).
  • Lesson entry writing — structured format, one entry per genuine lesson.
  • Pattern recognition — flagging when a lesson has been seen before; updating the hits count on the existing entry (not duplicating).
  • Promotion-candidate identification — when a pattern hits 3+ occurrences with high confidence, surface it as a cross-project decision PROPOSAL for human approval.

Read the full file on GitHub · 213 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 · 213 lines · 67 tokens per session scan A e3ec1757ed51

Subscribe to this mod's changes

continuous-learner is an agent published in the GitHub repository VandanaAjayDubey111/great-pm (3 stars, last pushed 1mo ago), licensed MIT. It adds 67 tokens to every session and 2,303 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-31.

Related

Other agents, from other repositories

archivist

Memory investigation, synthesis, and authorized curation when surfaced memories are insufficient.

prime-radiant-inc/sprout · 18 tokens

project-memory

Ask to manage project memory documents — list, read, write, or search .md files in the project memory directory.

prime-radiant-inc/sprout · 26 tokens

memory-consolidator

Use this agent ONLY when a human has just run /memory-seed and the new L1 atoms need folding into scenes and persona. Automatic consolidation no longer goes through this agent - it runs headless, outside the session. Do not invoke this agent on your own initiative.

baodq97/tencentdb-agent-memory · 60 tokens

wiki-dev-eng-ingest

Senior Fullstack Bun/TypeScript Engineer — Lane C (Ingest, Context & Memory) on the claude-wiki-pages development team. Owns the collect-and-organize pipeline and the AI-harness memory loop: classification checklist, alias-aware dedup, provenance-completeness checks, budget-aware MOC descent, the SessionStart MOC…

odere-pro/claude-wiki-pages-plugin · 172 tokens

wiki-dev-eng-schema

Senior Fullstack Bun/TypeScript Engineer — Lane B (Schema, Ontology & Multi-vault) on the claude-wiki-pages development team. Owns ontology-profile-v1 (the predicate domain→range table and enum list), staleness derivation, the opt-in predicate range check, template/structural conformance, the multi-vault registry with…

odere-pro/claude-wiki-pages-plugin · 161 tokens

mdan master

Orchestrateur Principal, Gardien du Contexte, Directeur des Wizards.

khalilbenaz/MDAN · 18 tokens