You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,11 +4,11 @@ A modular collection of [Claude Code](https://docs.anthropic.com/en/docs/claude-
4
4
5
5
## What Is This?
6
6
7
-
Turbo is a skill set for Claude Code. Each skill teaches Claude a specific workflow: reviewing code, creating PRs, investigating bugs, distilling session learnings, and more. The skills are designed to [work together](#how-skills-connect).
7
+
Turbo is a skill set for Claude Code. Each skill teaches Claude a specific workflow: reviewing code, creating PRs, investigating bugs, self-improving from session learnings, and more. The skills are designed to [work together](#how-skills-connect).
8
8
9
9
The key idea: skills aren't just standalone tools you use next to each other. They're [puzzle pieces](#the-puzzle-piece-philosophy) that connect into larger workflows. The main orchestrator, [`/finalize`](#the-main-workflow), chains testing, code simplification, AI review, committing, and PR creation into one command. But each piece is small and swappable. Replace one skill with your own and the rest of the pipeline still works.
10
10
11
-
The other core piece is [`/distill-session`](#self-improvement), which makes the whole system compound. After each session, it extracts lessons from the conversation and routes them to the right place: project CLAUDE.md, auto memory, or existing/new skills. Every session teaches Claude something, and future sessions benefit.
11
+
The other core piece is [`/self-improve`](#self-improvement), which makes the whole system compound. After each session, it extracts lessons from the conversation and routes them to the right place: project CLAUDE.md, auto memory, or existing/new skills. Every session teaches Claude something, and future sessions benefit.
@@ -252,7 +252,7 @@ The recommended way to use Turbo:
252
252
253
253
### Self-Improvement
254
254
255
-
`/distill-session` is another core skill. Run it anytime before your context runs out (it's also part of `/finalize` Phase 4). It scans the conversation for corrections, repeated guidance, failure modes, and preferences, then routes each lesson to the right place: project CLAUDE.md, auto memory, or existing/new skills. It routes lessons through Claude Code's built-in knowledge layers and, over time, makes Claude better at your specific project.
255
+
`/self-improve` is another core skill. Run it anytime before your context runs out (it's also part of `/finalize` Phase 4). It scans the conversation for corrections, repeated guidance, failure modes, and preferences, then routes each lesson to the right place: project CLAUDE.md, auto memory, or existing/new skills. It routes lessons through Claude Code's built-in knowledge layers and, over time, makes Claude better at your specific project.
256
256
257
257
`/note-improvement` captures improvement opportunities that come up during work but are out of scope: code review findings you chose to skip, refactoring ideas, missing tests. These get tracked in `.turbo/improvements.md` so they don't get lost. Since `.turbo/` is gitignored, it doesn't clutter the repo.
258
258
@@ -324,7 +324,7 @@ Each session handles one prompt. This keeps context focused and avoids running o
324
324
325
325
| Skill | What it does |
326
326
|---|---|
327
-
|`/distill-session`| Extract session learnings to CLAUDE.md, memory, or skills |
327
+
|`/self-improve`| Extract session learnings to CLAUDE.md, memory, or skills |
328
328
|`/note-improvement`| Capture out-of-scope improvement ideas for later |
329
329
|`/create-skill`| Create or update a skill with proper structure |
330
330
|`/update-npm-deps`| Smart npm dependency upgrades with breaking change research |
Copy file name to clipboardExpand all lines: skills/finalize/SKILL.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ description: Run the post-implementation quality assurance workflow including te
5
5
6
6
# Finalize Implementation
7
7
8
-
Post-implementation QA workflow: staging, tests, code simplification, AI review, commit, and session distillation.
8
+
Post-implementation QA workflow: staging, tests, code simplification, AI review, commit, and self-improvement.
9
9
10
10
## Task Tracking
11
11
@@ -14,7 +14,7 @@ At the start, use `TaskCreate` to create a task for each phase:
14
14
1. Stage and test
15
15
2. Simplify code
16
16
3. Code review
17
-
4.Distill session
17
+
4.Self-improve
18
18
5. Commit
19
19
6. Pull request
20
20
@@ -71,9 +71,9 @@ Run the `/simplify-plus` skill. The diff command for this phase is `git diff` (N
71
71
2. If tests fail, run the `/investigate` skill to diagnose the root cause, apply the suggested fix, and re-run tests. If investigation cannot identify a root cause, stop and report with investigation findings.
72
72
3. Run the project's linter/formatter to ensure clean output
Copy file name to clipboardExpand all lines: skills/resolve-pr-comments/SKILL.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,9 +36,9 @@ Auto-detect owner, repo, and PR number from current branch if not provided. Filt
36
36
37
37
Run the `/evaluate-findings` skill on the unresolved threads to assess each comment. Proceed with the evaluation results — apply high/medium confidence fixes and skip low confidence suggestions.
Copy file name to clipboardExpand all lines: skills/self-improve/SKILL.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,9 @@
1
1
---
2
-
name: distill-session
3
-
description: Extract lessons from the current session and route them to the appropriate knowledge layer (project AGENTS.md, auto memory, existing skills, or new skills). Use when the user asks to "distill this session", "save learnings", "update CLAUDE.md with what we learned", "capture session insights", "remember this for next time", "extract lessons", "update skills from session", or "what did we learn".
2
+
name: self-improve
3
+
description: Extract lessons from the current session and route them to the appropriate knowledge layer (project AGENTS.md, auto memory, existing skills, or new skills). Use when the user asks to "self-improve", "distill this session", "save learnings", "update CLAUDE.md with what we learned", "capture session insights", "remember this for next time", "extract lessons", "update skills from session", or "what did we learn".
4
4
---
5
5
6
-
# Distill Session
6
+
# Self-Improve
7
7
8
8
Review the current conversation to extract durable lessons and route each one to the right knowledge layer.
0 commit comments