fix(lib): resolve B-8 send_keys_safe agy verification bypass and add submission retry test

This commit is contained in:
2026-08-14 09:35:17 +09:00
parent f8bfa07fac
commit 720f8ad224
10 changed files with 307 additions and 8 deletions
@@ -10,3 +10,15 @@ class AgyAgentAdapter(BaseAgentAdapter):
@property
def own_key(self) -> str:
return 'agy_conversation_id_own'
@property
def input_prompt(self) -> str:
return '>'
@property
def input_placeholder(self) -> str:
return ''
@property
def input_rule_pattern(self) -> str:
return '{10,}'
@@ -10,3 +10,15 @@ class ClaudeAgentAdapter(BaseAgentAdapter):
@property
def own_key(self) -> str:
return 'claude_session_id_own'
@property
def input_prompt(self) -> str:
return ''
@property
def input_placeholder(self) -> str:
return ''
@property
def input_rule_pattern(self) -> str:
return '{10,}'
@@ -10,3 +10,15 @@ class ClineAgentAdapter(BaseAgentAdapter):
@property
def own_key(self) -> str:
return 'cline_conversation_id_own'
@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,}'