mit einem Klick
release
// Prepare a lading release. Updates CHANGELOG.md, bumps version in Cargo.toml, updates Cargo.lock, commits, and creates a PR.
// Prepare a lading release. Updates CHANGELOG.md, bumps version in Cargo.toml, updates Cargo.lock, commits, and creates a PR.
| name | release |
| description | Prepare a lading release. Updates CHANGELOG.md, bumps version in Cargo.toml, updates Cargo.lock, commits, and creates a PR. |
| allowed-tools | Read, Edit, Bash, AskUserQuestion |
lading/Cargo.toml and CHANGELOG.md to find the current version and unreleased changes.git checkout -b prepare-release-v<version>CHANGELOG.md.## Unreleased header (with empty subsections) above the current unreleased content.## [<version>].## Unreleased and ## [<version>].lading/Cargo.toml to set version = "<new_version>".cargo check to propagate the version change into the lockfile without re-resolving all dependencies.CHANGELOG.md, lading/Cargo.toml, and Cargo.lock.release: v<version>git checkout main && git pullgit tag -a v<version> -m "v<version>"git push origin v<version>git push --tags — always push exactly one tag at a time.release.yml GitHub Actions workflow will automatically create a GitHub Release from the tag, pulling notes from CHANGELOG.md.Environment validation checklist. Run this FIRST when starting a new Claude session to verify the environment is ready for optimization work. Checks Rust toolchain, ci/ scripts, build, benchmarking tools, profilers, memory tools, git state, and SMP CLI.
Coordinates optimization attempts. Captures baselines, implements changes, invokes review, and records outcomes.
Reviews optimization patches using a 5-persona peer review system. Requires unanimous approval backed by benchmarks.
Full optimization workflow with git branch creation, commits, and optional PR. Wraps /lading-optimize-hunt with git automation.
Finds a valid optimization target in lading. Returns a filled target.yaml template with pattern, technique, target, file, bench, and fingerprint. Use before /lading-optimize-hunt or when selecting a new optimization target.