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
Install all skills. Many depend on each other (e.g., `/finalize` orchestrates `/simplify-plus`, `/peer-review`, `/evaluate-findings`, and more), so installing them individually will leave gaps in the workflows. See [skills.sh/docs](https://skills.sh/docs) for more on the skills CLI.
199
+
Install all skills. Many depend on each other (e.g., `/finalize` orchestrates `/simplify-code`, `/peer-review`, `/evaluate-findings`, and more), so installing them individually will leave gaps in the workflows. See [skills.sh/docs](https://skills.sh/docs) for more on the skills CLI.
200
200
201
201
#### 2. Add `.turbo` to Global Gitignore
202
202
@@ -325,8 +325,8 @@ Each session handles one prompt. This keeps context focused and avoids running o
325
325
| Skill | What it does |
326
326
|---|---|
327
327
|[`/code-style`](skills/code-style/SKILL.md)| Enforce mirror, reuse, and symmetry principles |
328
-
|[`/simplify-plus`](skills/simplify-plus/SKILL.md)| Multi-agent review for reuse, quality, efficiency, clarity |
329
-
|[`/code-review`](skills/code-review/SKILL.md)| AI code review + findings evaluation (reusable core)|
328
+
|[`/simplify-code`](skills/simplify-code/SKILL.md)| Multi-agent review for reuse, quality, efficiency, clarity |
329
+
|[`/review-code`](skills/review-code/SKILL.md)| AI code review + findings evaluation |
330
330
|[`/peer-review`](skills/peer-review/SKILL.md)| AI code review interface that delegates to `/codex` by default |
331
331
|[`/codex`](skills/codex/SKILL.md)| AI code review and task execution via codex CLI |
332
332
|[`/evaluate-findings`](skills/evaluate-findings/SKILL.md)| Confidence-based triage of review feedback |
Copy file name to clipboardExpand all lines: skills/finalize/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
@@ -48,17 +48,17 @@ If tests are needed:
48
48
49
49
## Phase 2: Simplify Code
50
50
51
-
Run the `/simplify-plus` skill. The diff command for this phase is `git diff --cached`.
51
+
Run the `/simplify-code` skill. The diff command for this phase is `git diff --cached`.
52
52
53
53
## Phase 3: Code Review
54
54
55
55
### Step 1: Run code review
56
56
57
-
Run the `/code-review` skill to review uncommitted changes. Apply any actionable findings — launch a single opus agent with the full diff to apply each fix.
57
+
Run the `/review-code` skill to review uncommitted changes. Apply any actionable findings — launch a single opus agent with the full diff to apply each fix.
58
58
59
59
### Step 2: Simplify review fixes
60
60
61
-
Run the `/simplify-plus` skill. The diff command for this phase is `git diff` (NOT `git diff --cached` — the fix agent's changes are unstaged).
61
+
Run the `/simplify-code` skill. The diff command for this phase is `git diff` (NOT `git diff --cached` — the fix agent's changes are unstaged).
Copy file name to clipboardExpand all lines: skills/review-code/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,11 +1,11 @@
1
1
---
2
-
name: code-review
2
+
name: review-code
3
3
description: Run AI code review and evaluate findings. Delegates to `/peer-review` for the review and `/evaluate-findings` for triage. Use when the user asks to "review code", "code review", "review my changes", or wants a reviewed and evaluated set of findings.
4
4
---
5
5
6
-
# Code Review
6
+
# Review Code
7
7
8
-
Run AI code review and evaluate findings. This is the reusable review core used by orchestrators like `/review-feature-branch` and `/review-pr`.
Copy file name to clipboardExpand all lines: skills/review-pr/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
@@ -17,9 +17,9 @@ At the start, use `TaskCreate` to create a task for each step:
17
17
18
18
## Step 1: Code Review and PR Comments
19
19
20
-
Run the `/code-review` skill to review the feature branch against the base branch. Pass any PR comments as additional findings.
20
+
Run the `/review-code` skill to review the feature branch against the base branch. Pass any PR comments as additional findings.
21
21
22
-
Fetch PR comments by running the `/fetch-pr-comments` skill. Include the unresolved comments as additional findings for the `/code-review` evaluation step.
22
+
Fetch PR comments by running the `/fetch-pr-comments` skill. Include the unresolved comments as additional findings for the `/review-code` evaluation step.
Copy file name to clipboardExpand all lines: skills/simplify-code/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
@@ -1,9 +1,9 @@
1
1
---
2
-
name: simplify-plus
2
+
name: simplify-code
3
3
description: Run a multi-agent review of changed files for reuse, quality, efficiency, and clarity issues followed by automated fixes. Use when the user asks to "simplify code", "review changed code", "check for code reuse", "review code quality", "review efficiency", "simplify changes", "clean up code", "refactor changes", or "run simplify".
4
4
---
5
5
6
-
# Simplify: Code Review and Cleanup
6
+
# Simplify Code
7
7
8
8
Review all changed files for reuse, quality, and efficiency. Fix any issues found.
0 commit comments