From d0062efd34dfc22c2d8cfee0a47431ac0c8adfda Mon Sep 17 00:00:00 2001 From: soryu Date: Sun, 1 Feb 2026 00:45:24 +0000 Subject: fix(supervisor): ensure all implementation phases are executed before PR Previously the supervisor would implement only the first phase of a multi-phase plan and then create a PR. This change updates the supervisor system prompt to explicitly instruct it to: 1. Read and parse plan documents for multiple implementation phases 2. Execute phases sequentially 3. Track completion of each phase 4. Only create PR after ALL phases are complete Co-Authored-By: Claude Opus 4.5 --- makima/makima-vllm/run.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 makima/makima-vllm/run.sh (limited to 'makima/makima-vllm/run.sh') diff --git a/makima/makima-vllm/run.sh b/makima/makima-vllm/run.sh new file mode 100755 index 0000000..246fcbf --- /dev/null +++ b/makima/makima-vllm/run.sh @@ -0,0 +1,14 @@ +#!/bin/bash +# Run the Qwen3-TTS server + +set -e + +cd "$(dirname "$0")" + +# Activate virtual environment if it exists +if [ -d ".venv" ]; then + source .venv/bin/activate +fi + +# Use exec to replace shell with python so Ctrl+C works properly +exec python server.py -- cgit v1.2.3