autonomous-lesson-learning

autonomous-lesson-learning is a command for Claude Code from Fmarzochi/EGC. It costs 21 tokens per session (435 once invoked), scanned A, original, Apache-2.0.

An autonomous work loop that recalls previously saved lessons before each iteration and records useful lessons from failures or successful approaches. It requires a clear task and a verifiable condition for stopping.

In plain words
What is it for?
Use it for multi-step tasks that benefit from repeated attempts, remembered troubleshooting knowledge, and automatic stopping when the result is complete.
Why use it?
It helps repeated agent runs reuse what was learned instead of making the same mistakes again. A fixed iteration limit or completion condition keeps the loop bounded.

Command for Claude Code

Written for Claude Code: $ARGUMENTS substitution.

Good fit Use it for multi-step tasks that benefit from repeated attempts, remembered troubleshooting knowledge, and automatic stopping when the result is complete.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/fmarzochi/egc/autonomous-lesson-learning
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/Fmarzochi/EGC

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 autonomous-lesson-learning

README.md
[![agentmods](https://agentmods.dev/badge/commands/fmarzochi/egc/autonomous-lesson-learning/github.svg)](https://agentmods.dev/commands/fmarzochi/egc/autonomous-lesson-learning)
Your own site
<a href="https://agentmods.dev/commands/fmarzochi/egc/autonomous-lesson-learning"><img src="https://agentmods.dev/badge/commands/fmarzochi/egc/autonomous-lesson-learning/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 autonomous-lesson-learning

Your own site · 80×15
<a href="https://agentmods.dev/commands/fmarzochi/egc/autonomous-lesson-learning"><img src="https://agentmods.dev/badge/commands/fmarzochi/egc/autonomous-lesson-learning.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 21 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 435 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.00021 $0.00435
Opus 5 $0.00010 $0.00217
Sonnet 5 $0.00004 $0.00087
Haiku 4.5 $0.00002 $0.00044

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

Security

Grade A, and why

autonomous-lesson-learning 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 5d 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.

commands/autonomous-lesson-learning.md · 42 lines

What it actually says

Autonomous Lesson Learning Command

Start a learning autonomous loop: continuous-agent-loop mechanics plus the egc-memory lesson tools (lesson_recall, lesson_save, lesson_reinforce).

Usage

/autonomous-lesson-learning <task> [--pattern sequential|continuous-pr] [--max-iterations N]

  • task: what the loop should accomplish, with a verifiable done condition
  • --pattern: loop architecture from continuous-agent-loop (default sequential)
  • --max-iterations: hard stop (default 10)

Flow

  1. Read the autonomous-lesson-learning skill (skills/ai/autonomous-lesson-learning/SKILL.md) and confirm egc-memory is registered.
  2. Confirm the task has an explicit stop condition; refuse to start without one.
  3. Per iteration:
    • lesson_recall({ query: "<current step topic>" }) before acting; apply what comes back.
    • lesson_reinforce({ id }) for each recalled lesson that proved relevant or whose mistake recurred.
    • Execute one iteration of the chosen loop pattern.
    • On failure with no matching lesson: lesson_save({ content, context }).
    • On a new approach that worked well: lesson_save with prescriptive wording.
  4. Stop on: done condition met, --max-iterations reached, or the same lesson reinforced three iterations in a row without progress (escalate to the user).
  5. Report iterations run, lessons recalled, saved, and reinforced.

Required Safety Checks

  • Explicit stop condition before the first iteration.
  • Quality gates between iterations per continuous-agent-loop.
  • Never save a lesson without calling lesson_recall first; reinforce instead of duplicating.

Arguments

$ARGUMENTS:

  • <task> required
  • --pattern sequential|continuous-pr optional
  • --max-iterations N optional
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. 5d ago First seen · 42 lines · 21 tokens per session scan A d19bb6ef1923

Subscribe to this mod's changes

autonomous-lesson-learning is a command published in the GitHub repository Fmarzochi/EGC (49 stars, last pushed yesterday), licensed Apache-2.0. It adds 21 tokens to every session and 435 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-09-03.