Merge remote kanban daemon fix; standardize skill resolution on skill_dir_path
Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
This commit is contained in:
commit
e3b625a967
|
|
@ -1033,10 +1033,10 @@ def _run_kanban_agent(task_id: str):
|
|||
# Runs in a daemon thread: any unhandled exception would be lost and leave
|
||||
# the task stuck in "in_progress" forever, so catch failures and surface
|
||||
# them by marking the task blocked with the error.
|
||||
path = kanban_task_path(task_id)
|
||||
if not path.exists():
|
||||
return
|
||||
try:
|
||||
path = kanban_task_path(task_id)
|
||||
if not path.exists():
|
||||
return
|
||||
task = json.loads(path.read_text())
|
||||
agent = task.get("assignee")
|
||||
prompt = task["title"] if not task.get("body") else f"{task['title']}\n\n{task['body']}"
|
||||
|
|
|
|||
Loading…
Reference in New Issue