From superskills
Persist durable learnings from the current session (user corrections, pitfalls and fixes, project decisions not visible in code) into .superskills/learnings/. Use when the user asks to summarize or persist learnings ("总结一下经验", "沉淀一下", "记住这个"), or when triggered automatically at session end.
How this skill is triggered — by the user, by Claude, or both
Slash command
/superskills:learnThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Extract knowledge worth keeping from this session and write it into the project's `.superskills/learnings/`.
Extract knowledge worth keeping from this session and write it into the project's .superskills/learnings/.
Persist only items matching at least one of:
Do NOT persist: one-off task details, facts readable from the code, generic programming knowledge.
Review the session and list candidate learnings. If none qualify, say so and stop — do not write anything.
Read .superskills/learnings/INDEX.md (if present). If an existing entry already covers a candidate, update that file in place instead of creating a duplicate.
Write each new learning to .superskills/learnings/YYYY-MM-DD-<slug>.md (create directories as needed):
---
title: <one-line title>
date: YYYY-MM-DD
tags: [<area>]
---
**Context**: when this applies
**Rule**: what to do (1-2 sentences)
**Why**: the reason (optional, one sentence)
Update .superskills/learnings/INDEX.md — one line per entry:
- [<title>](<filename>) — <when it applies>
Keep each learning under 15 lines. The INDEX is what gets auto-injected into future sessions, so write titles and contexts that make relevance obvious at a glance. Suggest committing .superskills/ so the team shares the knowledge.
npx claudepluginhub mrlyk/superskills --plugin superskillsProvides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.