用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/automagik-dev/genie --skill learn命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | learn |
| description | Diagnose and fix agent behavioral surfaces when the user corrects a mistake — connects to Claude native memory. |
When the user corrects a mistake, diagnose which behavioral surface caused it and apply one minimal, targeted fix. Interactive — runs in the foreground with the user.
.claude/memory/MEMORY.md index so the learning survives across sessions.| Surface | Path | Controls |
|---|---|---|
| Project conventions | CLAUDE.md | Commands, gotchas, coding rules |
| Agent identity | AGENTS.md | Role, preferences, team behavior |
| Personality | SOUL.md / IDENTITY.md | Tone, communication style |
| Global rules | ~/.claude/rules/*.md | Cross-project behavior |
| Native memory | .claude/memory/ | Feedback, user prefs, project context |
| Project memory | memory/ | Project-scoped knowledge |
| Hooks | .claude/settings.json | Event-driven automation, gates |
skills/ and agents/.claude/memory/<name>.md:
---
name: <concise-name>
description: <one line for relevance matching>
type: feedback
---
<The rule itself>
**Why:** <the incident or reason the user gave>
**How to apply:** <when/where this guidance kicks in>
"Stop using pip install — this system only has uv." → Diagnosis: no Python-tooling rule exists anywhere; surface is global rules, since it applies to every project. Proposal in plan mode: create ~/.claude/rules/python-tooling.md (never pip; uv tool install for CLIs, uv pip install inside venvs). On approval: write the rule, then persist a use-uv-not-pip feedback memory and index it.