mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +00:00
Restructure workflow/ for multi-language plugin support:
- Rename src/ to core/ (engine code: DAG executor, registry, types)
- Create executor/{cpp,python,ts}/ for language-specific runtimes
- Consolidate plugins to plugins/{ts,python}/ by language then category
Add 80+ Python plugins from AutoMetabuilder in 14 categories:
- control: bot control, switch logic, state management
- convert: type conversions (json, boolean, dict, list, number, string)
- core: AI requests, context management, tool calls
- dict: dictionary operations (get, set, keys, values, merge)
- list: list operations (concat, find, sort, slice, filter)
- logic: boolean logic (and, or, xor, equals, comparisons)
- math: arithmetic operations (add, subtract, multiply, power, etc.)
- string: string manipulation (concat, split, replace, format)
- notifications: Slack, Discord integrations
- test: assertion helpers and test suite runner
- tools: file operations, git, docker, testing utilities
- utils: filtering, mapping, reducing, condition branching
- var: variable store operations (get, set, delete, exists)
- web: Flask server, environment variables, JSON handling
Add language executor runtimes:
- TypeScript: direct import execution (default, fast startup)
- Python: child process with JSON stdin/stdout communication
- C++: placeholder for native FFI bindings (Phase 3)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
98 lines
2.9 KiB
Python
98 lines
2.9 KiB
Python
"""Workflow plugin: start bot execution in background thread."""
|
|
import os
|
|
import subprocess
|
|
import sys
|
|
import threading
|
|
import time
|
|
|
|
from .control_get_bot_status import (
|
|
get_bot_state,
|
|
reset_bot_state,
|
|
_bot_process,
|
|
_mock_running,
|
|
_current_run_config
|
|
)
|
|
|
|
# Import global state
|
|
import workflow.plugins.python.control.control_get_bot_status as bot_status
|
|
|
|
|
|
def _run_bot_task(mode: str, iterations: int, yolo: bool, stop_at_mvp: bool) -> None:
|
|
"""Execute bot task in background thread."""
|
|
bot_status._current_run_config = {
|
|
"mode": mode,
|
|
"iterations": iterations,
|
|
"yolo": yolo,
|
|
"stop_at_mvp": stop_at_mvp,
|
|
}
|
|
|
|
if os.environ.get("MOCK_WEB_UI") == "true":
|
|
bot_status._mock_running = True
|
|
time.sleep(5)
|
|
bot_status._mock_running = False
|
|
reset_bot_state()
|
|
return
|
|
|
|
try:
|
|
cmd = [sys.executable, "-m", "autometabuilder.main"]
|
|
if yolo:
|
|
cmd.append("--yolo")
|
|
if mode == "once":
|
|
cmd.append("--once")
|
|
if mode == "iterations" and iterations > 1:
|
|
for _ in range(iterations):
|
|
if stop_at_mvp:
|
|
# Check MVP status
|
|
pass
|
|
bot_status._bot_process = subprocess.Popen(
|
|
cmd + ["--once"],
|
|
stdout=subprocess.PIPE,
|
|
stderr=subprocess.STDOUT
|
|
)
|
|
bot_status._bot_process.wait()
|
|
else:
|
|
bot_status._bot_process = subprocess.Popen(
|
|
cmd,
|
|
stdout=subprocess.PIPE,
|
|
stderr=subprocess.STDOUT
|
|
)
|
|
bot_status._bot_process.wait()
|
|
finally:
|
|
reset_bot_state()
|
|
|
|
|
|
def run(_runtime, inputs):
|
|
"""Start bot execution in background thread.
|
|
|
|
Args:
|
|
inputs: Dictionary with keys:
|
|
- mode: str (default: "once") - Execution mode ("once", "iterations", etc.)
|
|
- iterations: int (default: 1) - Number of iterations for "iterations" mode
|
|
- yolo: bool (default: True) - Run in YOLO mode
|
|
- stop_at_mvp: bool (default: False) - Stop when MVP is reached
|
|
|
|
Returns:
|
|
Dictionary with:
|
|
- started: bool - Whether the bot was started successfully
|
|
- error: str (optional) - Error message if bot is already running
|
|
"""
|
|
mode = inputs.get("mode", "once")
|
|
iterations = inputs.get("iterations", 1)
|
|
yolo = inputs.get("yolo", True)
|
|
stop_at_mvp = inputs.get("stop_at_mvp", False)
|
|
|
|
# Check if bot is already running
|
|
state = get_bot_state()
|
|
if state["is_running"]:
|
|
return {"started": False, "error": "Bot already running"}
|
|
|
|
# Start bot in background thread
|
|
thread = threading.Thread(
|
|
target=_run_bot_task,
|
|
args=(mode, iterations, yolo, stop_at_mvp),
|
|
daemon=True
|
|
)
|
|
thread.start()
|
|
|
|
return {"started": True}
|