REPL when skill_create needs user input

This commit is contained in:
Denton Social
2026-09-24 05:46:23 -05:00
parent e92b3e7228
commit 63922c1fad
15 changed files with 545 additions and 16 deletions
+4
View File
@@ -121,6 +121,10 @@ def repl(scheduler: Scheduler, config: dict) -> None:
continue
status, detail = scheduler.submit(line)
print(f"[{status}] {detail}")
while scheduler.pending is not None:
answer = input(f"{scheduler.pending.question} ")
status, detail = scheduler.answer(answer)
print(f"[{status}] {detail}")
def scripted(scheduler: Scheduler, path: str) -> None: