- Option B / C-3b: Deprecate isolation.root and remove its 4 legacy consumers in lib.sh, workspace_uuid.py, verify_session.py, and stop_session.sh. - M2~M7 Migration: Implement artifact_path, verify_artifact, purge_artifacts, spawn_spec, resume_spec, auth_ok, discover, ready_tokens, exit_key, and delegate_agent_key across BaseAgentAdapter and all 4 adapters (Claude, Agy, Hermes, Cline). - Migrate shell duplications in lib.sh, create_session.sh, resume_session.sh, stop_session.sh, and reconcile.sh to python -m lib_py.agents facts. - Hardening & Corrections: Fix Cline resume_spec flag to '-i --id', apply shlex.quote across all facts variables with MAM_ prefix, add safe fallback in wait_for_tui_ready. - Add comprehensive contract tests in tests/test_a4_adapter_contract.py and sync IMPROVEMENTS.md / LOG.md. - Verified: 100% PASS across unit, component, contract, and integration tests.
101 lines
3.2 KiB
Python
101 lines
3.2 KiB
Python
import os, json, shutil, glob
|
||
from typing import Optional, Any
|
||
from lib_py.agents.base import BaseAgentAdapter, DiscoveryContext
|
||
from lib_py.verify_session import workspace_key
|
||
|
||
class ClineAgentAdapter(BaseAgentAdapter):
|
||
@property
|
||
def name(self) -> str:
|
||
return 'cline'
|
||
|
||
@property
|
||
def own_key(self) -> str:
|
||
return 'cline_conversation_id_own'
|
||
|
||
@property
|
||
def ready_tokens(self) -> str:
|
||
return 'Cline|history|Chat|What can I do|slash commands'
|
||
|
||
@property
|
||
def exit_key(self) -> str:
|
||
return '/exit'
|
||
|
||
@property
|
||
def delegate_agent_key(self) -> str:
|
||
return 'cline-agent'
|
||
|
||
@property
|
||
def identity_cache_fields(self) -> tuple:
|
||
return ('session_id',)
|
||
|
||
@property
|
||
def input_prompt(self) -> str:
|
||
return '❯'
|
||
|
||
@property
|
||
def input_placeholder(self) -> str:
|
||
return 'Ask anything...'
|
||
|
||
@property
|
||
def input_rule_pattern(self) -> str:
|
||
return '─{10,}'
|
||
|
||
def artifact_path(self, uuid: str, ctx: DiscoveryContext) -> str:
|
||
return f"{ctx.home_dir}/.cline/data/sessions/{uuid}/{uuid}.json"
|
||
|
||
def verify_artifact(self, uuid: str, ctx: DiscoveryContext) -> bool:
|
||
path = self.artifact_path(uuid, ctx)
|
||
if not os.path.exists(path):
|
||
return False
|
||
if ctx.epoch and os.path.getmtime(path) < ctx.epoch:
|
||
return False
|
||
try:
|
||
with open(path) as f:
|
||
sdata = json.load(f)
|
||
if sdata.get("session_id") != uuid:
|
||
return False
|
||
found_cwd = sdata.get("cwd") or sdata.get("workspace_root")
|
||
if found_cwd and workspace_key(found_cwd) != workspace_key(ctx.cwd):
|
||
return False
|
||
except Exception:
|
||
return False
|
||
return True
|
||
|
||
def purge_artifacts(self, uuid: str, ctx: DiscoveryContext) -> list:
|
||
purged = []
|
||
sessions_dir = f"{ctx.home_dir}/.cline/data/sessions/{uuid}"
|
||
if os.path.isdir(sessions_dir):
|
||
shutil.rmtree(sessions_dir)
|
||
purged.append(sessions_dir)
|
||
return purged
|
||
|
||
def spawn_spec(self, binary: str, session_uuid: str = "", use_wrapper: bool = False) -> str:
|
||
return f"{binary} -i"
|
||
|
||
def resume_spec(self, binary: str, session_uuid: str, materialized: bool = False) -> str:
|
||
if materialized and session_uuid:
|
||
return f"{binary} -i --id {session_uuid}"
|
||
return f"{binary} -i"
|
||
|
||
def auth_ok(self, run_cmd: Optional[Any] = None) -> bool:
|
||
return True
|
||
|
||
def discover(self, ctx: DiscoveryContext) -> list:
|
||
sessions_dir = f"{ctx.home_dir}/.cline/data/sessions"
|
||
if os.path.isdir(sessions_dir):
|
||
files = []
|
||
for folder in glob.glob(f"{sessions_dir}/*"):
|
||
if os.path.isdir(folder):
|
||
fn = os.path.basename(folder)
|
||
jf = f"{folder}/{fn}.json"
|
||
if os.path.exists(jf):
|
||
files.append(jf)
|
||
files.sort(key=os.path.getmtime, reverse=True)
|
||
candidates = []
|
||
for j in files:
|
||
cand = os.path.basename(j)[:-5]
|
||
if cand and self.verify_artifact(cand, ctx):
|
||
candidates.append(cand)
|
||
return candidates
|
||
return []
|