Skip to content
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

Choose a tag to compare

@VKirill VKirill released this 25 May 09:13

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 cwd parameter to the discuss_with_antigravity_async_start tool.
    • 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 launching agy. This prevents workers from starting in home/root directories and wasting time/logs on broad find operations.
  • Scoped Review for worker-reviewer:
    • Implemented the Scoped Review rules ensuring worker-reviewer audits only the specific files listed in the task's files_to_touch using targeted git diffs (git diff HEAD~1 -- <files_to_touch>).
    • Added constraints to forbid unscoped git diff or 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 tsc or eslint) unless requested for the touched files.

Files Changed

  • src/index.ts — Added cwd argument to the start tool input schema.
  • src/tools/discuss_async.ts — Propagated cwd argument to startTmuxJob.
  • src/utils/jobs.ts — Accepted custom CWD in startTmuxJob and prepended cd command.
  • 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.