Skip to content

Commit 9d0887a

Browse files
committed
Rename /code-review to /review-code and /simplify-plus to /simplify-code
1 parent 5bdca08 commit 9d0887a

6 files changed

Lines changed: 23 additions & 23 deletions

File tree

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,11 @@ graph TD
6060
end
6161
6262
subgraph p2 ["Phase 2 — Simplify Code"]
63-
simplify-plus([/simplify-plus]):::review
63+
simplify-code([/simplify-code]):::review
6464
end
6565
6666
subgraph p3 ["Phase 3 — Code Review"]
67-
cr["1. Run /code-review
67+
cr["1. Run /review-code
6868
2. Simplify review fixes
6969
3. Test and lint"]:::review
7070
end
@@ -82,24 +82,24 @@ graph TD
8282
2. /resolve-pr-comments"]:::git
8383
end
8484
85-
stage --> simplify-plus
86-
simplify-plus --> cr
85+
stage --> simplify-code
86+
simplify-code --> cr
8787
cr --> self-improve
8888
self-improve --> commit-staged
8989
commit-staged --> pr
9090
end
9191
9292
%% Simplify (multi-agent review)
93-
subgraph simplifyplus ["/simplify-plus — Multi-Agent Review"]
93+
subgraph simplifycode ["/simplify-code — Multi-Agent Review"]
9494
sp-steps["1. Determine diff command
9595
2. Launch 4 review agents
9696
3. Fix issues"]:::review
9797
end
9898
99-
simplify-plus -. "runs review" .-> sp-steps
99+
simplify-code -. "runs review" .-> sp-steps
100100
101101
%% Code review (reusable core)
102-
subgraph codereview ["/code-review — Reusable Review Core"]
102+
subgraph reviewcode ["/review-codeAI Review + Evaluation"]
103103
cr-peer([/peer-review]):::review -. "runs review" .-> codex([/codex]):::review --> cr-eval([/evaluate-findings]):::review
104104
end
105105
@@ -148,8 +148,8 @@ graph TD
148148
149149
style planning fill:#f0fdf4,stroke:#22c55e,color:#14532d
150150
style finalize fill:#f8fafc,stroke:#3b82f6,color:#1e3a5f
151-
style simplifyplus fill:#eff6ff,stroke:#3b82f6,color:#1e3a5f
152-
style codereview fill:#eff6ff,stroke:#3b82f6,color:#1e3a5f
151+
style simplifycode fill:#eff6ff,stroke:#3b82f6,color:#1e3a5f
152+
style reviewcode fill:#eff6ff,stroke:#3b82f6,color:#1e3a5f
153153
style evalfindings fill:#eff6ff,stroke:#3b82f6,color:#1e3a5f
154154
style debugging fill:#fff7ed,stroke:#f97316,color:#7c2d12
155155
style knowledge fill:#faf5ff,stroke:#a855f7,color:#581c87
@@ -196,7 +196,7 @@ See [SETUP.md](SETUP.md) for the full guide, or follow the steps below.
196196
npx skills add tobihagemann/turbo --skill '*' --agent claude-code -g
197197
```
198198

199-
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.
200200

201201
#### 2. Add `.turbo` to Global Gitignore
202202

@@ -325,8 +325,8 @@ Each session handles one prompt. This keeps context focused and avoids running o
325325
| Skill | What it does |
326326
|---|---|
327327
| [`/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 |
330330
| [`/peer-review`](skills/peer-review/SKILL.md) | AI code review interface that delegates to `/codex` by default |
331331
| [`/codex`](skills/codex/SKILL.md) | AI code review and task execution via codex CLI |
332332
| [`/evaluate-findings`](skills/evaluate-findings/SKILL.md) | Confidence-based triage of review feedback |

skills/finalize/SKILL.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,17 +48,17 @@ If tests are needed:
4848

4949
## Phase 2: Simplify Code
5050

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`.
5252

5353
## Phase 3: Code Review
5454

5555
### Step 1: Run code review
5656

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.
5858

5959
### Step 2: Simplify review fixes
6060

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).
6262

6363
### Step 3: Test and lint
6464

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
2-
name: code-review
2+
name: review-code
33
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.
44
---
55

6-
# Code Review
6+
# Review Code
77

8-
Run AI code review and evaluate findings. This is the reusable review core used by orchestrators like `/review-feature-branch` and `/review-pr`.
8+
Run AI code review and evaluate findings.
99

1010
## Step 1: Peer Review
1111

skills/review-feature-branch/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ At the start, use `TaskCreate` to create a task for each step:
1717

1818
## Step 1: Code Review
1919

20-
Run the `/code-review` skill to review the feature branch against the base branch.
20+
Run the `/review-code` skill to review the feature branch against the base branch.
2121

2222
## Step 2: Confirm Implementation
2323

skills/review-pr/SKILL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ At the start, use `TaskCreate` to create a task for each step:
1717

1818
## Step 1: Code Review and PR Comments
1919

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.
2121

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.
2323

2424
## Step 2: Confirm Implementation
2525

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2-
name: simplify-plus
2+
name: simplify-code
33
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".
44
---
55

6-
# Simplify: Code Review and Cleanup
6+
# Simplify Code
77

88
Review all changed files for reuse, quality, and efficiency. Fix any issues found.
99

0 commit comments

Comments
 (0)