summaryrefslogtreecommitdiff
path: root/makima/makima-vllm/run.sh
diff options
context:
space:
mode:
authorsoryu <soryu@soryu.co>2026-02-01 00:45:24 +0000
committersoryu <soryu@soryu.co>2026-02-01 02:39:52 +0000
commitd0062efd34dfc22c2d8cfee0a47431ac0c8adfda (patch)
tree5605da5d1090b8cb578d95ddc985472bc990dcc4 /makima/makima-vllm/run.sh
parent11a4c81fc60848c7c74cab2f6fca8086e487ae20 (diff)
downloadsoryu-d0062efd34dfc22c2d8cfee0a47431ac0c8adfda.tar.gz
soryu-d0062efd34dfc22c2d8cfee0a47431ac0c8adfda.zip
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 <noreply@anthropic.com>
Diffstat (limited to 'makima/makima-vllm/run.sh')
-rwxr-xr-xmakima/makima-vllm/run.sh14
1 files changed, 14 insertions, 0 deletions
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