learn

Writes durable user preferences, environment facts, and gotchas into a knowledge notes vault.

6|1|Updated Jun 6, 2026
One-click install
npx skills add https://github.com/t-mercier/ai-agents-orchestrator --skill learn-t-mercier
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: learn
Source: https://github.com/t-mercier/ai-agents-orchestrator/tree/main/skills/learn
Command: npx skills add https://github.com/t-mercier/ai-agents-orchestrator --skill learn-t-mercier

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Insights learned mid-session are lost when a session ends or is compacted, forcing users to repeat preferences, corrections, and hard-won workarounds in every new conversation. This Skill captures durable knowledge the moment it surfaces and writes it as an atomic note into the user's knowledge vault. ## Core Features & Use Cases - Immediate capture: Records preferences, corrections, environment facts, and gotchas in flight rather than waiting for session close, with no approval gate but a one-line visible report. - Deduplication and extension: Searches existing notes first and extends or corrects a matching note instead of creating duplicates that dilute retrieval. - Vault-aware schema: Resolves the correct vault from session configuration, respects the vault's own README/CONVENTIONS schema, and links new notes into INDEX.md so they remain discoverable. - Use Case: A user says "never use pip install here, always uv" mid-session; the Skill writes a preference note with the reason, links it into the vault index, and confirms in one line. ## Quick Start Tell the agent to remember that you prefer a specific tool or convention, and it will write an atomic note into your knowledge vault immediately.

Frequently Asked Questions about learn

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I make an AI agent remember my preferences across sessions?

State the preference or correction in natural language, such as "always use uv" or "never commit directly to main". The Skill writes it immediately as an atomic note in your knowledge vault, so future sessions retrieve it without you repeating yourself.

What kinds of information should be saved as knowledge notes?

Save stated preferences and corrections, stable facts about your environment or conventions, and gotchas with their workarounds. Skip task progress, temporary state like failing builds, and anything cheaply re-discovered by reading the code.

When should I use a skill proposal instead of a knowledge note?

Use a skill proposal when what you learned is a reusable procedure, meaning a repeatable how-to process. Knowledge notes record what is true, such as preferences and facts, while skills record how to do something.

Does the learn skill create duplicate notes on the same topic?

No. It searches existing notes for the key nouns first, and if a note already owns the subject it extends or corrects that note and bumps its updated date instead of creating a new one.

What happens if no knowledge vault is configured for my session?

The Skill reports once that no knowledge notes are configured, suggests configuring spaces in Settings, and stops. It never silently drops what was learned or hardcodes a fallback path.