This repository was archived by the owner on Jun 23, 2026. It is now read-only.
v1.1.0 - Tmux project Cwd support & Scoped Review optimizations
This release adds explicit workspace directory context for background tmux executions and optimizes the task-level code review process to be more focused and reliable.
New Features & Improvements
- Tmux project Cwd support:
- Added an optional
cwdparameter to thediscuss_with_antigravity_async_starttool. - The dev-orchestrator now explicitly passes the project's absolute path to the Antigravity MCP server.
- Added a guaranteed
cd <projectCwd>transition inside the background tmux session script before launchingagy. This prevents workers from starting in home/root directories and wasting time/logs on broadfindoperations.
- Added an optional
- Scoped Review for worker-reviewer:
- Implemented the
Scoped Reviewrules ensuringworker-revieweraudits only the specific files listed in the task'sfiles_to_touchusing targeted git diffs (git diff HEAD~1 -- <files_to_touch>). - Added constraints to forbid unscoped
git diffor repo-wide scans that cause HTTP 413 payload overflow crashes on the MCP executor. - Implemented optimization to avoid executing heavy global checks (like project-wide
tscoreslint) unless requested for the touched files.
- Implemented the
Files Changed
src/index.ts— Addedcwdargument to the start tool input schema.src/tools/discuss_async.ts— Propagatedcwdargument tostartTmuxJob.src/utils/jobs.ts— Accepted custom CWD instartTmuxJoband prependedcdcommand.agents/dev-orchestrator-agy.md&agents/dev-orchestrator.md— Updated review and dispatch logic to use focused task diffs and pass CWD.prompts/workers/worker-reviewer.md— Added target diff execution instructions and safety limits.- Global agent configs under
~/.claude/agents/have been updated locally.