autopilot-code 0.0.19 → 0.0.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/scripts/run_autopilot.py +4 -1
package/package.json
CHANGED
package/scripts/run_autopilot.py
CHANGED
|
@@ -738,9 +738,12 @@ def run_cycle(
|
|
|
738
738
|
|
|
739
739
|
# If agent==opencode, delegate to bash script
|
|
740
740
|
if cfg.agent == "opencode":
|
|
741
|
+
# Script is in the same directory as this Python file
|
|
742
|
+
script_dir = Path(__file__).parent
|
|
743
|
+
script_path = script_dir / "run_opencode_issue.sh"
|
|
741
744
|
sh(
|
|
742
745
|
[
|
|
743
|
-
|
|
746
|
+
str(script_path),
|
|
744
747
|
str(cfg.root),
|
|
745
748
|
str(issue["number"]),
|
|
746
749
|
]
|