IssueTriage can now interact with task in YouTrack and it is idempotent

This commit is contained in:
2026-09-20 20:56:36 +03:00
parent 74577cb50e
commit f25d9a5fab
34 changed files with 1834 additions and 201 deletions
+16
View File
@@ -0,0 +1,16 @@
from abc import abstractmethod, ABC
from pydantic import BaseModel
'''
A contract between agents
'''
class BaseContract(BaseModel):
def to_prompt_text(self) -> str:
pass
def render_dbg(self) -> str:
pass
def is_filled(self) -> bool:
pass