技能 Improver
- 作者仓库星标 267
- 作者仓库 mini-diarium
Skill Improver
Turn every hard-earned lesson into a reusable improvement. After completing a non-trivial task (especially one that hit friction), run this skill to catalog what happened, classify the gaps, and apply fixes — either directly for obvious issues, or via a structured plan for larger changes.
When to Run
Proactive (run without being asked):
- A build, deploy, or CI job failed and was debugged
- A task took more than 3 rounds of trial-and-error
- A session lasted more than one hour and involved multiple skill uses
- The user explicitly expressed frustration or surprise at a gap
On-demand (run when the user says):
- "Reflect on this session" / "post-mortem" / "what went wrong"
- "Improve the skill" / "update the skill with these learnings"
- "Lessons learned" / "what should we change"
Scope: Reflect on ALL skills used during the session, plus any repo artifacts and process steps involved. If multiple skills were loaded, review each one. If the session didn't use any skill, focus on repo/process improvements only.
Workflow
Step 1 — Reflect
Catalog observations in three buckets, with concrete examples:
What went well:
- Patterns, tools, or decisions that saved time or prevented errors
- Skill instructions that proved particularly useful
- Diagnoses or fixes that were reached quickly
What went wrong:
- Mistakes, dead ends, or incorrect assumptions
- Skill instructions that were missing, wrong, or misleading
- Manual workarounds that had to be invented on the fly
What was missing:
- Scripts, checks, or tooling that would have caught the issue earlier
- Documentation or guardrails that didn't exist
- Process steps that were skipped or not automated
Step 2 — Classify
Group findings into three categories. For each finding, identify the concrete artifact that needs to change (file path, skill section, CI workflow, etc.).
Skill changes — improvements to an existing skill:
- Missing failure entries in a diagnosis table
- Wrong fix instructions
- Undocumented pitfalls or edge cases
- Better log access or debugging workflows
Repo artifact changes — new or modified files in the repository:
- Utility scripts (e.g.,
check-node-sources.mjs) - CI workflow steps or pre-release checks
- Configuration or lockfile validation
Process changes — workflow or convention changes:
- Release checklist items
- Pre-commit or pre-tag validation steps
- Cross-skill integration (e.g., pre-release skill should validate lockfiles)
Step 3 — Apply
If no improvements are identified: state that explicitly and stop. Do not invent changes.
The user can always override the plan/execute decision. If the user says "just fix it directly" for something that would normally need a plan, apply the changes directly instead. If the user says "make a plan" for something small, create one.
For obvious fixes (typos, missing warnings, incomplete instructions): Apply directly to the target file using the Edit tool. These are changes where:
- The fix is a single addition or correction to an existing section
- There's no design decision to make
- The change can't break anything else
- Example: adding a missing failure entry to a diagnosis table, or a warning about a known pitfall
For structural changes (new sections, new scripts, reorganized workflows): Create a plan using the manual-planning skill's format. These are changes where:
- The fix requires creating a new file or reorganizing existing content
- Multiple files are affected
- The user should review the approach before implementation
- Example: adding a new utility script, restructuring a skill's diagnosis workflow, adding pre-release steps
Step 4 — Verify
After applying fixes (directly or via plan execution):
- Run format/lint commands if the changed files are in checked languages
- For scripts, run a syntax check and a quick smoke test
- Re-read the changed skill sections to ensure they don't contradict other parts of the skill or adjacent skills
- Summarize what was changed and why
Output Format
At the end, present using this template:
## Session Reflection
### What Went Well
- [item]
### What Went Wrong
- [item]
### What Was Missing
- [item]
## Changes Made
| File | Change |
|------|--------|
| path/to/file | what changed and why |
<!-- If no changes were made: -->
No improvements identified.
If a plan was created, add: **Plan:** docs/plan-name.md — awaiting approval.
Gotchas
- Don't over-improve. If the session went smoothly and no concrete gaps were found, say so and stop. Inventing minor tweaks dilutes the skill.
- One session, one reflection. Don't chain multiple reflection cycles. If the user wants another, they'll ask.
- Obvious fix ≠ trivial preference. "I'd word this differently" is a preference, not a fix. Only apply direct edits when the current text is objectively wrong or missing.
- Respect the user's override. If the user says "just fix it" for something structural, apply directly. If they say "make a plan" for something small, create one. Their call always wins.
Integration with Other Skills
- Use manual-planning for any change that needs a plan (structural changes)
- Use todo-manager if the reflection surfaces new TODO items for the backlog
- The output format mirrors what you'd see in a good commit message: what, why, and where
- 流狐分类
- AI 智能
- 作者声明 Agent
- 未找到明确声明;不据此推断已兼容或已测试
- 静态检查
- 88 / 100 · 启发式扫描,不代表运行安全
- 作者 / 版本 / 许可
- @fjrevoredo · 未声明 license
- 流狐 Token 估算
- 低消耗
- 流狐接入估算
- 需简单配置
- 是否需要外部 API Key
- 未发现要求
- 检测到的系统要求
- macOS · Linux · Windows
- 底层运行要求
- Node.js
- 检测到的文件与系统行为
-
- 只读
- 允许写入 / 修改
- Shell 执行
- 检测到的网络行为
- 仅限本地
- 安装命令数
- 无(仅作为资料)
档案由构建时根据 SKILL.md 与安装命令自动衍生,可能与作者实际意图存在差异。
需要注意: 未限定 allowed-tools,默认拥有全部工具权限。
作者没有在当前 SKILL.md 中定义固定输出样例。 Workflow
Catalog observations in three buckets, with concrete examples: What went well: Patterns, tools, or decisions that saved time or prevented errors
Group findings into three categories. For each finding, identify the concrete artifact that needs to change (file path, skill section, CI workflow, etc.). Skill changes — improvements to an existing skill:
If no improvements are identified: state that explicitly and stop. Do not invent changes. The user can always override the plan/execute decision. If the user says "just fix it directly" for something that would normally need a plan, apply the changes directly…
After applying fixes (directly or via plan execution): Run format/lint commands if the changed files are in checked languages For scripts, run a syntax check and a quick smoke test
# Skill Improver
Turn every hard-earned lesson into a reusable improvement. After completing a non-trivial task
(especially one that hit friction), run this skill to catalog what happened, classify the gaps,
and apply fixes — either directly for obvious issues, or via a structured plan for larger changes.
## When to Run
**Proactive (run without being asked):**
- A build, deploy, or CI job failed and was debugged
- A task took more than 3 rounds of trial-and-error
- A session lasted more than one hour and involved multiple skill uses
- The user explicitly expressed frustration or surprise at a gap
**On-demand (run when the user says):**
- "Reflect on this session" / "post-mortem" / "what went wrong"
- "Improve the skill" / "update the skill with these learnings"
- "Lessons learned" / "what should we change"
**Scope:** Reflect on ALL skills used during the session, plus any repo artifacts
and process steps involved. If multiple skills were loaded, review each one.
If the session didn't use any skill, focus on repo/process improvements only.
## Workflow
### Step 1 — Reflect
Catalog observations in three buckets, with concrete examples:
**What went well:**
- Patterns, tools, or decisions that saved time or prevented errors
- Skill instructions that proved particularly useful
- Diagnoses or fixes that were reached quickly
**What went wrong:**
- Mistakes, dead ends, or incorrect assumptions
- Skill instructions that were missing, wrong, or misleading
- Manual workarounds that had to be invented on the fly
**What was missing:**
- Scripts, checks, or tooling that would have caught the issue earlier
- Documentation or guardrails that didn't exist
- Process steps that were skipped or not automated
### Step 2 — Classify
… 作者原文负责流程事实;流狐只索引当前章节、要点、文件与命令。
章节 -> When to Run → Workflow → Step 1 — Reflect → Step 2 — Classify → Step 3 — Apply → Step 4 — Verify
要点 -> Proactive (run without being asked) · On-demand (run when the user says) · Scope · What went well · What went wrong · What was missing · Skill changes · Repo artifact changes
文件/命令 -> check-node-sources.mjs · Plan: docs/plan-name.md — awaiting approval. · repo/process · plan/execute · format/lint · path/to/file · docs/plan-name.md
内容 SHA-256 -> 25490ab20c97
方法与流程
适用与边界
原文中的明确线索
check-node-sources.mjs、Plan: docs/plan-name.md — awaiting approval.、repo/process、plan/execute、format/lint、path/to/file、docs/plan-name.md