一键导入
learn-eval
Extract reusable patterns from the current session, self-evaluate quality, and place the result in the right scope (Global vs Project).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Extract reusable patterns from the current session, self-evaluate quality, and place the result in the right scope (Global vs Project).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Build Flutter APK/IPA, generate changelog, update buildlog, and commit version bump. Handles platform selection, build mode, and artifact renaming.
Build Unity APK/IPA on macOS with Unity 6.x — pre-flight checks, version bump, iOS signing params, post-build verification, buildlog, and commit.
Evidence-driven bug investigation and fix pipeline. Use when something is broken, not working, or the root cause is ambiguous.
Two independent reviewers must both approve high-stakes output before it ships, breaking the single-reviewer blind-spot problem.
Team-orchestrated feature development with parallel specialist agents. Use when building a feature that benefits from multiple agents working concurrently. You act as Product Director coordinating the team.
Interactive agent picker for composing and dispatching parallel teams. Browse available agents across domains, pick a roster, dispatch in parallel.
| name | learn-eval |
| description | Extract reusable patterns from the current session, self-evaluate quality, and place the result in the right scope (Global vs Project). |
| when_to_use | Use after a session that surfaced a reusable pattern worth keeping. Also when user says "remember this", "save this learning", "extract the pattern", "turn this into a skill", "we should reuse this", or "let's not relearn this next time". |
| user-invocable | true |
| allowed-tools | Read Write Edit Glob Grep Bash |
Extends /learn with a quality gate, save-location decision, and knowledge-placement awareness before writing any skill file.
Look for:
Review the session for extractable patterns
Identify the most valuable/reusable insight
Determine save location:
~/.claude/skills/learned/): Generic patterns usable across 2+ projects (bash compatibility, LLM API behavior, debugging techniques, etc.).claude/skills/learned/ in current project): Project-specific knowledge (quirks of a particular config file, project-specific architecture decisions, etc.)Draft the skill file using this format:
---
name: pattern-name
description: "Under 130 characters"
user-invocable: false
origin: auto-extracted
---
# [Descriptive Pattern Name]
**Extracted:** [Date]
**Context:** [Brief description of when this applies]
## Problem
[What problem this solves - be specific]
## Solution
[The pattern/technique/workaround - with code examples]
## When to Use
[Trigger conditions]
Quality gate — Checklist + Holistic verdict
Execute all of the following before evaluating the draft:
~/.claude/skills/ and relevant project .claude/skills/ files by keyword to check for content overlapSynthesize the checklist results and draft quality, then choose one of the following:
| Verdict | Meaning | Next Action |
|---|---|---|
| Save | Unique, specific, well-scoped | Proceed to Step 6 |
| Improve then Save | Valuable but needs refinement | List improvements → revise → re-evaluate (once) |
| Absorb into [X] | Should be appended to an existing skill | Show target skill and additions → Step 6 |
| Drop | Trivial, redundant, or too abstract | Explain reasoning and stop |
Guideline dimensions (informing the verdict, not scored):
### Checklist
- [x] skills/ grep: no overlap (or: overlap found → details)
- [x] MEMORY.md: no overlap (or: overlap found → details)
- [x] Existing skill append: new file appropriate (or: should append to [X])
- [x] Reusability: confirmed (or: one-off → Drop)
### Verdict: Save / Improve then Save / Absorb into [X] / Drop
**Rationale:** (1-2 sentences explaining the verdict)
This version replaces the previous 5-dimension numeric scoring rubric (Specificity, Actionability, Scope Fit, Non-redundancy, Coverage scored 1-5) with a checklist-based holistic verdict system. Modern frontier models (Opus 4.6+) have strong contextual judgment — forcing rich qualitative signals into numeric scores loses nuance and can produce misleading totals. The holistic approach lets the model weigh all factors naturally, producing more accurate save/drop decisions while the explicit checklist ensures no critical check is skipped.