From ultraship
Saves, searches, recalls, digests, and prunes project learnings that persist across sessions. Use when the user wants to record knowledge or load prior learnings before starting work.
How this skill is triggered — by the user, by Claude, or both
Slash command
/ultraship:learn <save|search|recall|digest|list|prune|export> [query]<save|search|recall|digest|list|prune|export> [query]This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Learnings are structured knowledge that compounds across sessions. They capture what worked, what didn't, decisions made, and patterns discovered — things that can't be derived from code alone.
Learnings are structured knowledge that compounds across sessions. They capture what worked, what didn't, decisions made, and patterns discovered — things that can't be derived from code alone.
Announce at start: "I'm using the learn skill to manage project learnings."
When the user discovers something worth remembering — a debugging insight, an architecture decision, a deployment gotcha, a tool preference:
node ${CLAUDE_PLUGIN_ROOT}/tools/learnings-manager.mjs save --title "Title here" --body "Detailed learning content" --tags "tag1,tag2"
What to save:
NODE_ENV=production explicitly set")select() is 3x faster than query() for simple lookups")What NOT to save:
git log)node ${CLAUDE_PLUGIN_ROOT}/tools/learnings-manager.mjs search --query "keyword"
Search by title, body content, or tags. Returns all matches, unranked.
node ${CLAUDE_PLUGIN_ROOT}/tools/learnings-manager.mjs recall --query "keyword" [--limit N]
Prefer recall over search when you want the most relevant prior knowledge, not every match. It ranks by relevance (title > tag > body) with recency breaking ties, returns the top N (default 5) with one-line summaries and a score. Use this BEFORE starting work on a topic — it surfaces the learnings most likely to prevent a repeated mistake without dumping the whole history into context.
node ${CLAUDE_PLUGIN_ROOT}/tools/learnings-manager.mjs digest
Produces a compact, grouped-by-topic snapshot — one line per learning, primary tag only — so a long history stays readable in a few tokens. Inject this at session start (or after a compaction) to carry forward what the project has learned without re-reading every learning file. This is the long-session memory primitive: digest to load context cheaply, recall to drill into a topic.
node ${CLAUDE_PLUGIN_ROOT}/tools/learnings-manager.mjs list [--limit N]
node ${CLAUDE_PLUGIN_ROOT}/tools/learnings-manager.mjs prune --older-than 90
Removes learnings older than N days. Default: 90 days. Run periodically to keep the knowledge base fresh.
node ${CLAUDE_PLUGIN_ROOT}/tools/learnings-manager.mjs export --format markdown
node ${CLAUDE_PLUGIN_ROOT}/tools/learnings-manager.mjs export --format json
Export for sharing with team members or backing up before a major refactor.
At session start: Run digest to load a compact snapshot of what the project has learned, then recall --query "<topic>" when the user names a specific area — load cheap context first, drill in on demand.
After debugging: Save the root cause and fix as a learning — it will save hours next time.
After deployment issues: Save the gotcha — deployment problems recur.
Before major changes: Search for past learnings about the affected area.
During retrospectives: Use with /retro to cross-reference velocity data with learnings.
Learnings are stored in .ultraship/learnings/ in the project directory as JSON files. Each learning has:
id — unique identifiertitle — short, searchable titlebody — detailed contenttags — categorization for filteringcreated_at / updated_at — timestampsAdd .ultraship/ to .gitignore if you don't want learnings in version control, or commit them to share with your team.
npx claudepluginhub houseofmvps/ultraship --plugin ultrashipManages project learnings in markdown files: view index, add patterns/pitfalls/operational notes/decisions, search, prune, export for CLAUDE.md persistence across sessions.
Captures learnings from completed development sessions into reusable knowledge files organized by pattern, pitfall, decision, tool insight, and process improvement.
Captures insights as markdown files, searches prior learnings, and promotes patterns to CLAUDE.md using tiered backends (local, qmd, agent-fs) for knowledge across projects.