Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .changelogs/v3.31.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Release v3.31.0

Released: 2026-08-16

## Highlights

- **Per-reviewer reasoning effort suffix (`~effort=<level>`) on `--review-with`**: Any slot in a `--review-with` list across all review commands (`/do:pr`, `/do:release`, `/do:review`, `/do:better`, `/do:better-swift`, `/do:depfree`, `/do:rpr`, `/do:config`) can now specify its reasoning effort level (`low`, `medium`, `high`, `xhigh`, `max`) — e.g. `--review-with=codex[gpt-5.6-luna]~effort=max~opt`, `claude~effort=high~max=2`.
- **Suffix chaining & saved defaults**: Suffixes (`~opt`, `~max=<n>`, `~effort=<level>`) chain in any order and ride through `/do:config` saved defaults in canonical order (`~opt` -> `~max=<n>` -> `~effort=<level>`).
- **Updated documentation & workflow examples**: `README.md` includes a Typical Developer Loop example (`plan-task` -> `next` -> `pr`) and explicit assistant invocation syntax details for Claude Code (`/do:*`), Codex (`$do-*`), Antigravity (`/do-*`), OpenCode (`/do-*`), and Grok Build (`/do-*`).

## Details

- **Reviewer Loop Threading**: Per-reviewer reasoning effort is forwarded as `{REVIEW_EFFORT}` to local agent review loops (`local-agent-review-loop.md`) and as `{OLLAMA_EFFORT}` to local Ollama review loops (`ollama-review-loop.md`).
- **CLI Flags & Prompt Construction**: Local agent invocations pass `${EFFORT_FLAG[@]+"${EFFORT_FLAG[@]}"}` (`--effort <level>`) where supported, and Ollama review loops append reasoning effort instructions directly to the prompt.

## Full Changelog

**Full Diff**: https://github.com/atomantic/slashdo/compare/v3.30.0...v3.31.0

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "slash-do",
"version": "3.30.0",
"version": "3.31.0",
"description": "Curated slash commands for AI coding assistants — Claude Code, OpenCode, Antigravity CLI, Codex, and Grok Build",
"author": "Adam Eivy <adam@eivy.com>",
"license": "MIT",
Expand Down