Files
multi-agent-mux/.agents/skills/lib_py/agents/adapters/cline.py
T

13 lines
280 B
Python

# cline.py — Cline agent adapter
from lib_py.agents.base import BaseAgentAdapter
class ClineAgentAdapter(BaseAgentAdapter):
@property
def name(self) -> str:
return 'cline'
@property
def own_key(self) -> str:
return 'cline_conversation_id_own'