Skip to main content
ClaudeWave
Skill336 repo starsupdated 6d ago

update-turbo

The update-turbo skill fetches the latest UPDATE.md instructions from a Turbo repository's remote and executes them to upgrade installed Turbo skills with changelog information and conflict resolution for customized skills. Use this skill when users request to update, reinstall, or upgrade Turbo or its associated skills.

Install in Claude Code
Copy
git clone --depth 1 https://github.com/tobihagemann/turbo /tmp/update-turbo && cp -r /tmp/update-turbo/claude/skills/update-turbo ~/.claude/skills/update-turbo
Then start a new Claude Code session; the skill loads automatically.

SKILL.md

# Update Turbo

Read the latest update instructions from the local repo and follow them.

## Step 1: Read Instructions

Read `~/.turbo/config.json` to determine `repoMode`. Determine the upstream remote:

- Clone or source: `origin`
- Fork: `upstream`

Fetch the remote, then read the latest UPDATE.md:

```bash
git -C ~/.turbo/repo fetch <remote>
git -C ~/.turbo/repo show <remote>/main:claude/UPDATE.md
```

## Step 2: Follow Instructions

Follow the fetched UPDATE.md instructions from start to finish. The fetch from Step 1 satisfies Phase 1 Step 1's fetch requirement.
answer-reviewer-questionsSkill

For each reviewer question on a PR, recall implementation reasoning and compose a raw answer. Use when the user asks to \"answer reviewer questions\", \"draft answers to PR questions\", or \"explain reviewer questions\".

apply-findingsSkill

Apply findings by making the suggested code changes. Applies accepted verdicts, escalates ambiguous findings to the user, and offers to note genuine improvements for later. Use when the user asks to \"apply findings\", \"apply fixes\", \"apply suggestions\", \"apply accepted findings\", \"fix the findings\", or \"apply the review results\".

auditSkill

Project-wide health audit pipeline that fans out to all analysis skills in parallel, evaluates findings, and produces a unified report at .turbo/audit.md. Use when the user asks to \"audit the project\", \"run a full audit\", \"project health check\", \"audit my code\", \"codebase audit\", or \"comprehensive review\".

changelog-rulesSkill

Shared changelog conventions and formatting rules referenced by $create-changelog and $update-changelog. Not typically invoked directly.

code-styleSkill

Enforce mirror, reuse, and symmetry principles to keep new code consistent with surrounding code. Use when writing new code in an existing codebase, adding new features, refactoring, or making any code changes.

codex-execSkill

Run autonomous task execution using the codex CLI. Use when the user asks to \"codex exec\", \"run codex exec\", \"execute a task with codex\", or \"delegate to codex\".

codex-reviewSkill

Run AI-powered code review using the codex CLI. Use when the user asks to \"codex review\", \"run codex review\", or \"review a commit with codex\".

commit-rulesSkill

Shared commit message rules and technical constraints referenced by $stage-commit and $commit-staged. Not typically invoked directly.