continuous-learning-agent

continuous-learning-agent is a skill for Claude Code from organvm-iv-taxis/a-i--skills. It costs 23 tokens per session (2,729 once invoked), scanned B, original, Apache-2.0.

A set of practices for AI agents to improve from feedback, mistakes, and successful patterns across sessions. It separates a record of what happened from rules that change future behavior.

In plain words
What is it for?
Use it to record errors and decisions, recognize repeated situations, and update the agent's future actions with new rules, limits, or prohibited approaches.
Why use it?
It prevents an agent from confusing saved notes with actual learning and makes improvements traceable and reusable instead of lost after a session.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: reads .claude/ paths; mentions CLAUDE.md; positional $N argument.

Part of the example-skills plugin — 47 skills, 2 commands, 1 agent shipped together

Good fit Use it to record errors and decisions, recognize repeated situations, and update the agent's future actions with new rules, limits, or prohibited approaches.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/organvm-iv-taxis/a-i--skills/continuous-learning-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.

Any agent
npx skills add organvm-iv-taxis/a-i--skills --skill continuous-learning-agent
Clone the repo
git clone --depth 1 https://github.com/organvm-iv-taxis/a-i--skills

Made for: Claude Code.

Or install example-skills, the plugin that ships this one along with the rest of its 47 skills, 2 commands, 1 agent.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/organvm-iv-taxis/a-i--skills/continuous-learning-agent/github.svg)](https://agentmods.dev/skills/organvm-iv-taxis/a-i--skills/continuous-learning-agent)
Your own site
<a href="https://agentmods.dev/skills/organvm-iv-taxis/a-i--skills/continuous-learning-agent"><img src="https://agentmods.dev/badge/skills/organvm-iv-taxis/a-i--skills/continuous-learning-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 continuous-learning-agent

Your own site · 80×15
<a href="https://agentmods.dev/skills/organvm-iv-taxis/a-i--skills/continuous-learning-agent"><img src="https://agentmods.dev/badge/skills/organvm-iv-taxis/a-i--skills/continuous-learning-agent.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 23 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,729 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. 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.00023 $0.02729
Opus 5 $0.00012 $0.01365
Sonnet 5 $0.00005 $0.00546
Haiku 4.5 $0.00002 $0.00273

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

Security

Grade B, and why

continuous-learning-agent scanned grade B with 1 finding 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 13d 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.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

grep -h "^**Policy Deltas**" .claude/journal/daily/*.md -A 5 > weekly-policy-synthesis.md
distributions/claude/skills/continuous-learning-agent/SKILL.md · 417 lines

How it starts

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

Continuous Learning Agent

A meta-skill that enables AI agents to learn from experience and improve over time by separating journaled memory from policy changes that alter future behavior.

Core Concept

Traditional agents reset completely between sessions. This skill treats memory and learning as related but distinct operations:

  • Journal / memory records what happened, what was tried, and what evidence exists.
  • Learning / policy changes what the agent will do next time for a recognizable event class.

Do not call a session log, decision journal, or context note "learning" unless it produces a policy delta, threshold revision, banned move, or acquired pattern that changes future behavior.

Learning Mechanisms

Every learning loop has two layers:

  1. Journal layer: episodic or semantic records used for auditability.
  2. Policy layer: compact behavioral deltas used to improve performance on future tasks.

The journal layer is optional when an existing memory system already covers it. The policy layer is mandatory for this skill.

1. Error Pattern Recognition

After each error, first document the event if no existing memory system already captures it:

## Error Log Entry

**Date**: 2026-01-30
**Context**: Implementing user authentication
**Error**: TypeError: Cannot read property 'id' of undefined
**Root Cause**: Missing null check before accessing user object
**Fix**: Added optional chaining: user?.id
**Pattern**: Always validate object existence before property access
**Prevention**: Add TypeScript strict null checks

Then extract the policy delta:

## Policy Delta: [Short Title]

**Date**: 2026-01-30
**Event Class**: Accessing nested properties on possibly absent objects
**Prior Policy**: Read nested properties directly after optimistic object construction.
**Failure Mode**: Undefined objects caused runtime TypeErrors.
**Revised Policy**: Validate object existence or use typed optional access before nested reads.
**Trigger**: Any code path receiving user, API, database, or tool-returned objects.
**Propagation Target**: Project AGENTS.md, test helper, lint rule, or skill source.
**Verification**: Add or run a test that fails under the prior policy and passes under the revised policy.

Read the full file on GitHub · 417 lines

Files

What ships with it

1 file 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. 13d ago First seen · 417 lines · 23 tokens per session scan B 530303b0e831

Subscribe to this mod's changes

continuous-learning-agent is a skill published in the GitHub repository organvm-iv-taxis/a-i--skills (17 stars, last pushed 16d ago), licensed Apache-2.0. It adds 23 tokens to every session and 2,729 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories