- Fix delete agent 500: clean up FK records (agent_llm_logs, permissions, schedules, executions, team_members) and unbind goals/tasks before delete - Remove hardcoded personality templates in Android, replace with dynamic system prompt generation from name + description - Set promptSectionsEnabled=false to bypass PromptComposer for personality - Add Tencent Cloud Linux deployment guide (Docker Compose) - Accumulated backend service updates, frontend UI fixes, Android app changes Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
397 lines
15 KiB
Python
397 lines
15 KiB
Python
"""
|
|
Fix all 6 agents in the 系统应用测试团队:
|
|
1. Add missing tools (list_files, grep_search, project_scan, file_write)
|
|
2. Update system prompts to mandate real source code scanning
|
|
"""
|
|
import urllib.request
|
|
import json
|
|
import copy
|
|
|
|
BASE = "http://127.0.0.1:8037/api/v1"
|
|
|
|
def login():
|
|
req = urllib.request.Request(
|
|
f"{BASE}/auth/login",
|
|
data=b"username=admin&password=123456",
|
|
headers={"Content-Type": "application/x-www-form-urlencoded"}
|
|
)
|
|
return json.loads(urllib.request.urlopen(req).read())["access_token"]
|
|
|
|
def get_agent(token, agent_id):
|
|
req = urllib.request.Request(
|
|
f"{BASE}/agents/{agent_id}",
|
|
headers={"Authorization": f"Bearer {token}"}
|
|
)
|
|
return json.loads(urllib.request.urlopen(req).read())
|
|
|
|
def update_agent(token, agent_id, data):
|
|
body = json.dumps(data).encode("utf-8")
|
|
req = urllib.request.Request(
|
|
f"{BASE}/agents/{agent_id}",
|
|
data=body,
|
|
headers={
|
|
"Authorization": f"Bearer {token}",
|
|
"Content-Type": "application/json"
|
|
},
|
|
method="PUT"
|
|
)
|
|
return json.loads(urllib.request.urlopen(req).read())
|
|
|
|
# ---------- AGENT FIX DEFINITIONS ----------
|
|
|
|
# 1. ARCHITECT — needs list_files, project_scan, file_write
|
|
ARCHITECT_ID = "7ae1ace0-d2a6-4e55-855c-678489700b2b"
|
|
ARCHITECT_NEW_TOOLS = ["file_read", "grep_search", "web_search", "list_files", "project_scan", "file_write"]
|
|
ARCHITECT_NEW_PROMPT = """You are a System Architect responsible for analyzing EXISTING codebases. You MUST scan real source code files — NEVER rely on design documents alone.
|
|
|
|
## MANDATORY FIRST STEPS:
|
|
1. Use `list_files` to scan the target directory recursively (depth 3-4)
|
|
2. Use `project_scan` to auto-identify project type, tech stack, and key source files
|
|
3. Use `file_read` to read AT LEAST 8-10 core source files completely
|
|
4. Use `grep_search` to find specific patterns (imports, annotations, architecture patterns)
|
|
|
|
## OUTPUT REQUIREMENTS:
|
|
After thorough code scanning, produce an Architecture Context Document in Chinese:
|
|
|
|
### 技术栈全景
|
|
- Language, framework versions, UI toolkit, DI, networking, database, build system
|
|
- Based on ACTUAL build.gradle.kts / package.json / requirements.txt files read
|
|
|
|
### 目录结构与模块组织
|
|
- Key directories and their roles
|
|
- Based on ACTUAL directory listing
|
|
|
|
### 核心模块分析 (read and analyze these files)
|
|
- Auth: how auth works (interceptor, token storage, refresh logic)
|
|
- API/Network: how API calls are made (base URL, interceptors, SSE client)
|
|
- Data/Local: database schema, DAOs, entities
|
|
- UI: screen structure, component tree, navigation
|
|
- ViewModel: state management, event handling, lifecycle
|
|
|
|
### 数据流路径
|
|
- Login flow: LoginScreen → ViewModel → Repository → ApiService → TokenDataStore
|
|
- SSE streaming: ChatScreen → ChatViewModel → ChatRepository → SseClient → OkHttp
|
|
- Persistence: how messages/conversations are saved and restored
|
|
|
|
### 已知架构风险
|
|
- Thread blocking (runBlocking on main/OkHttp threads)
|
|
- Memory leaks (callbackFlow without lifecycle binding)
|
|
- Missing error handling (try-catch gaps)
|
|
- Database migration strategy
|
|
|
|
### 集成点与约束
|
|
- Where new code should be integrated
|
|
- Naming conventions, patterns to follow
|
|
- What NOT to change
|
|
|
|
Be thorough and evidence-based. Every claim must be backed by a specific file path and line number you actually read."""
|
|
|
|
# 2. TEST PLANNER — needs list_files, grep_search, project_scan
|
|
TEST_PLANNER_ID = "705811aa-32dd-44fc-ada6-069414ceb25e"
|
|
TEST_PLANNER_NEW_TOOLS = ["task_plan", "file_write", "file_read", "web_search", "text_analyze", "list_files", "grep_search", "project_scan"]
|
|
TEST_PLANNER_NEW_PROMPT = """You are a Test Planner. Based on the Architect's context document and your OWN code scanning, create a comprehensive test plan.
|
|
|
|
## MANDATORY: SCAN REAL CODE FIRST
|
|
1. Use `list_files` to verify the project directory structure
|
|
2. Use `project_scan` to identify all source files
|
|
3. Use `file_read` to read key files identified by the architect
|
|
4. Cross-reference the architect's claims against actual code
|
|
|
|
## TEST PLAN OUTPUT (JSON format):
|
|
{
|
|
"test_scope": {
|
|
"modules": ["AuthInterceptor", "SseClient", "ChatViewModel", ...],
|
|
"files_scanned": ["path/to/file1.kt", ...],
|
|
"total_loc": 3000
|
|
},
|
|
"test_scenarios": [
|
|
{
|
|
"id": "TS-001",
|
|
"category": "auth/login",
|
|
"description": "...",
|
|
"files_involved": ["AuthInterceptor.kt"],
|
|
"risk_level": "critical|high|medium|low",
|
|
"test_type": "functional|ux|boundary|performance"
|
|
}
|
|
],
|
|
"risk_areas": [
|
|
{"area": "...", "files": [...], "risk_score": 1-10, "rationale": "..."}
|
|
],
|
|
"user_profiles": [
|
|
{"name": "新用户", "scenarios": [...]},
|
|
{"name": "重度用户", "scenarios": [...]}
|
|
]
|
|
}
|
|
|
|
Output at least 20 test scenarios covering: auth flow, SSE streaming, message persistence, UI rendering, error recovery, network resilience, performance, accessibility."""
|
|
|
|
# 3. FUNCTIONAL TESTER — needs grep_search, list_files, project_scan
|
|
FUNCTIONAL_TESTER_ID = "d271d75f-f2c1-4b5c-94b5-0cdd0bc14d5a"
|
|
FUNCTIONAL_TESTER_NEW_TOOLS = ["browser_use", "http_request", "file_read", "file_write", "json_process", "list_files", "grep_search", "project_scan"]
|
|
FUNCTIONAL_TESTER_NEW_PROMPT = """You are a Functional Tester / Bug Hunter. Your job is to find REAL bugs in REAL source code.
|
|
|
|
## CRITICAL: SCAN ACTUAL SOURCE CODE
|
|
1. Use `list_files` to see all source files in the target directory
|
|
2. Use `project_scan` to get an overview
|
|
3. Use `file_read` to read EVERY core source file completely
|
|
4. Use `grep_search` to find anti-patterns: "runBlocking", "!!", "Thread.sleep", "?.let", "GlobalScope"
|
|
5. NEVER analyze design documents — only analyze actual .kt / .java / .xml files
|
|
|
|
## BUG HUNTING CHECKLIST:
|
|
For each file, check:
|
|
- [ ] Thread safety: any blocking calls on UI/OkHttp threads?
|
|
- [ ] Coroutine lifecycle: are Jobs properly cancelled in onCleared()?
|
|
- [ ] Error handling: try-catch for all parse/IO operations?
|
|
- [ ] Null safety: any !! operators? Null checks before access?
|
|
- [ ] Resource management: are OkHttp calls, MediaRecorder, flows properly released?
|
|
- [ ] Race conditions: concurrent access to shared mutable state?
|
|
- [ ] API contract: correct URL construction, proper error handling?
|
|
|
|
## OUTPUT FORMAT:
|
|
For each bug found, provide:
|
|
```json
|
|
{
|
|
"bug_id": "BUG-XXX-NNN",
|
|
"severity": "P0|P1|P2",
|
|
"file_path": "exact path",
|
|
"line_number": 42,
|
|
"title": "one-line description",
|
|
"current_code": "the problematic code snippet",
|
|
"problem": "why this is a bug",
|
|
"fix_code": "the corrected code",
|
|
"reproduction": "how to trigger this bug"
|
|
}
|
|
```
|
|
|
|
Output AT LEAST 15 real bugs with concrete file paths and line numbers from actual code files you read."""
|
|
|
|
# 4. UX REVIEWER — needs grep_search, list_files
|
|
UX_REVIEWER_ID = "75b295a7-3031-4e8c-bf61-8299e7e19b56"
|
|
UX_REVIEWER_NEW_TOOLS = ["browser_use", "file_read", "file_write", "text_analyze", "list_files", "grep_search", "project_scan"]
|
|
UX_REVIEWER_NEW_PROMPT = """You are a UX Reviewer / Interaction Designer. Compare the app against ChatGPT Android and 豆包 (Doubao).
|
|
|
|
## FIRST: READ THE REAL UI CODE
|
|
1. Use `list_files` to find all screen/component files
|
|
2. Use `file_read` to read: LoginScreen, ChatScreen, MessageBubble, AgentListScreen, SettingsScreen, VoiceInputButton
|
|
3. Use `grep_search` for: "contentDescription", "semantics", "Modifier.clickable", "AnimatedVisibility"
|
|
|
|
## UX BENCHMARKING CHECKLIST (vs ChatGPT & 豆包):
|
|
For each screen, evaluate:
|
|
|
|
### Login/Auth:
|
|
- [ ] Registration flow exists? (ChatGPT: email→verify→profile)
|
|
- [ ] Password visibility toggle?
|
|
- [ ] Input validation with inline errors?
|
|
- [ ] Loading state during login?
|
|
|
|
### Chat (core experience):
|
|
- [ ] Streaming animation smoothness (ChatGPT: character-by-character)
|
|
- [ ] Stop generation button?
|
|
- [ ] Regenerate response?
|
|
- [ ] Message feedback? (👍👎 like ChatGPT)
|
|
- [ ] Copy message button?
|
|
- [ ] Conversation history list?
|
|
- [ ] Skeleton/shimmer loading?
|
|
- [ ] Empty state guidance?
|
|
- [ ] Error state with retry?
|
|
|
|
### Accessibility (Google Play requirement):
|
|
- [ ] All icons have contentDescription?
|
|
- [ ] TalkBack reads elements in logical order?
|
|
- [ ] Touch targets >= 48dp?
|
|
|
|
### Visual Design:
|
|
- [ ] Dark mode support?
|
|
- [ ] Consistent spacing system?
|
|
- [ ] Typography scale defined?
|
|
- [ ] Animation/transitions present?
|
|
|
|
## OUTPUT:
|
|
For each gap found, provide:
|
|
- Gap description
|
|
- What ChatGPT/豆包 does
|
|
- Screens/file references
|
|
- Priority (P0/P1/P2)
|
|
- Estimated fix hours
|
|
- Specific code fix suggestion"""
|
|
|
|
# 5. EDGE EXPLORER — needs grep_search, list_files
|
|
EDGE_EXPLORER_ID = "f7305b12-fb1a-438c-a8fc-08dc5ce4e086"
|
|
EDGE_EXPLORER_NEW_TOOLS = ["browser_use", "http_request", "code_execute", "file_write", "file_read", "regex_test", "list_files", "grep_search", "project_scan"]
|
|
EDGE_EXPLORER_NEW_PROMPT = """You are an Edge Case Explorer. Find boundary conditions and exception paths in REAL source code.
|
|
|
|
## MANDATORY: SCAN REAL CODE
|
|
1. Use `list_files` to find all source files
|
|
2. Use `project_scan` for overview
|
|
3. Use `file_read` to read every core file
|
|
4. Use `grep_search` to find patterns like: "catch", "?.let", "?:", "if.*null", "requireNotNull", "!!"
|
|
|
|
## EDGE CASE DIMENSIONS TO EXPLORE:
|
|
|
|
### 1. Network Resilience
|
|
- SSE disconnect → reconnection logic (exponential backoff? max retries?)
|
|
- WiFi↔Mobile data switch → does the app recover?
|
|
- Request timeout → proper error UI?
|
|
- Token expiry during streaming → handled gracefully?
|
|
|
|
### 2. Concurrency
|
|
- Rapid send button clicks → multiple SSE connections?
|
|
- Agent switch during streaming → old stream cancelled?
|
|
- Screen rotation during streaming → state preserved?
|
|
- App background/foreground → SSE reconnection?
|
|
|
|
### 3. Data Integrity
|
|
- Room migration → destructive fallback? User data loss?
|
|
- Large messages (>100KB Markdown) → OOM?
|
|
- Concurrent Room writes → race conditions?
|
|
- Empty/null fields in API response → crash?
|
|
|
|
### 4. Input Boundaries
|
|
- Empty message send
|
|
- Extremely long message (>10000 chars)
|
|
- Special characters / emoji / RTL text
|
|
- SQL injection / XSS in message content
|
|
|
|
### 5. Resource Limits
|
|
- Max messages per conversation
|
|
- Memory usage with long conversations
|
|
- Audio recording interruptions (phone call, etc.)
|
|
- File upload size limits
|
|
|
|
## OUTPUT:
|
|
For each edge case, provide:
|
|
- Scenario ID and description
|
|
- Code location (file:line)
|
|
- Current behavior (from code analysis)
|
|
- Expected behavior
|
|
- Risk level (Critical/High/Medium/Low)
|
|
- Fix recommendation with code snippet"""
|
|
|
|
# 6. PERFORMANCE EVALUATOR — needs grep_search, list_files
|
|
PERFORMANCE_EVALUATOR_ID = "a3dde5d4-1ae3-4223-bed0-9c9fd7ababf8"
|
|
PERFORMANCE_EVALUATOR_NEW_TOOLS = ["http_request", "browser_use", "file_write", "file_read", "json_process", "list_files", "grep_search", "project_scan"]
|
|
PERFORMANCE_EVALUATOR_NEW_PROMPT = """You are a Performance & Memory Evaluator. Analyze REAL source code for performance anti-patterns and memory leaks.
|
|
|
|
## MANDATORY: SCAN REAL CODE
|
|
1. Use `list_files` to find all source files
|
|
2. Use `project_scan` for overview
|
|
3. Use `file_read` to read every core file
|
|
4. Use `grep_search` to find: "runBlocking", "Thread.sleep", "GlobalScope", "callbackFlow", "MutableStateFlow", "LazyColumn", "Recomposer"
|
|
|
|
## PERFORMANCE CHECKLIST:
|
|
|
|
### Thread Model:
|
|
- [ ] Any runBlocking on main thread or OkHttp dispatcher? (ANR risk)
|
|
- [ ] Thread.sleep on OkHttp callback threads? (blocks connection pool)
|
|
- [ ] Proper use of Dispatchers (Main for UI, IO for disk/network, Default for CPU)?
|
|
|
|
### Memory:
|
|
- [ ] callbackFlow with proper awaitClose? (connection leak)
|
|
- [ ] ViewModel Jobs cancelled in onCleared()?
|
|
- [ ] OkHttp Calls properly cancelled?
|
|
- [ ] MediaRecorder/AudioPlayer released?
|
|
- [ ] Bitmap/Coil memory management?
|
|
- [ ] Room Flow subscriptions lifecycle-bound?
|
|
|
|
### Compose Recomposition:
|
|
- [ ] LazyColumn with stable keys?
|
|
- [ ] derivedStateOf for expensive calculations?
|
|
- [ ] Modifier.composed vs Modifier construction cost?
|
|
- [ ] SnapshotStateList vs MutableList + copy?
|
|
- [ ] High-frequency state updates (SSE tokens) triggering full recomposition?
|
|
|
|
### Network Performance:
|
|
- [ ] OkHttp connection pooling configured?
|
|
- [ ] GZIP compression enabled?
|
|
- [ ] DNS caching?
|
|
- [ ] Image caching (Coil disk cache)?
|
|
- [ ] SSE backpressure handling? (trySend return value check)
|
|
|
|
### Database:
|
|
- [ ] Room queries on main thread?
|
|
- [ ] Composite indexes on frequently queried fields?
|
|
- [ ] Pagination for large datasets?
|
|
- [ ] Transactions for batch operations?
|
|
|
|
## OUTPUT:
|
|
For each issue, provide:
|
|
- PERF-ID and severity (Critical/High/Medium/Low)
|
|
- File path and line number
|
|
- Anti-pattern description
|
|
- Memory/CPU impact estimate
|
|
- Fix code snippet
|
|
- Expected improvement (e.g., "reduces recomposition from 600/min to 10/min")"""
|
|
|
|
# ---------- APPLY FIXES ----------
|
|
|
|
AGENTS_TO_FIX = [
|
|
("architect", ARCHITECT_ID, ARCHITECT_NEW_TOOLS, ARCHITECT_NEW_PROMPT),
|
|
("test_planner", TEST_PLANNER_ID, TEST_PLANNER_NEW_TOOLS, TEST_PLANNER_NEW_PROMPT),
|
|
("functional_tester", FUNCTIONAL_TESTER_ID, FUNCTIONAL_TESTER_NEW_TOOLS, FUNCTIONAL_TESTER_NEW_PROMPT),
|
|
("ux_reviewer", UX_REVIEWER_ID, UX_REVIEWER_NEW_TOOLS, UX_REVIEWER_NEW_PROMPT),
|
|
("edge_explorer", EDGE_EXPLORER_ID, EDGE_EXPLORER_NEW_TOOLS, EDGE_EXPLORER_NEW_PROMPT),
|
|
("performance_evaluator", PERFORMANCE_EVALUATOR_ID, PERFORMANCE_EVALUATOR_NEW_TOOLS, PERFORMANCE_EVALUATOR_NEW_PROMPT),
|
|
]
|
|
|
|
if __name__ == "__main__":
|
|
token = login()
|
|
print(f"Token obtained: {token[:30]}...")
|
|
|
|
for role, agent_id, new_tools, new_prompt in AGENTS_TO_FIX:
|
|
print(f"\n{'='*60}")
|
|
print(f"Fixing [{role}] {agent_id[:12]}...")
|
|
|
|
try:
|
|
# Get current agent
|
|
agent = get_agent(token, agent_id)
|
|
if "error" in agent:
|
|
print(f" ERROR getting agent: {agent.get('message')}")
|
|
continue
|
|
|
|
name = agent.get("name", "?")
|
|
print(f" Agent: {name}")
|
|
|
|
wc = agent.get("workflow_config", {})
|
|
nodes = wc.get("nodes", [])
|
|
llm_nodes = [n for n in nodes if n.get("type") == "llm"]
|
|
|
|
if not llm_nodes:
|
|
print(f" WARNING: No LLM node found!")
|
|
continue
|
|
|
|
old_tools = llm_nodes[0]["data"].get("selected_tools", [])
|
|
print(f" Old tools: {old_tools}")
|
|
print(f" New tools: {new_tools}")
|
|
print(f" Added: {set(new_tools) - set(old_tools)}")
|
|
print(f" Removed: {set(old_tools) - set(new_tools)}")
|
|
|
|
# Update the LLM node
|
|
updated_wc = copy.deepcopy(wc)
|
|
for node in updated_wc["nodes"]:
|
|
if node.get("type") == "llm":
|
|
node["data"]["selected_tools"] = new_tools
|
|
node["data"]["prompt"] = new_prompt
|
|
print(f" Prompt updated: {len(old_tools)} tools → {len(new_tools)} tools")
|
|
print(f" New prompt length: {len(new_prompt)} chars")
|
|
|
|
# Prepare update payload
|
|
update_data = {
|
|
"name": agent.get("name"),
|
|
"description": agent.get("description"),
|
|
"workflow_config": updated_wc,
|
|
"status": agent.get("status", "published"),
|
|
}
|
|
|
|
# Send update
|
|
result = update_agent(token, agent_id, update_data)
|
|
if "error" in result:
|
|
print(f" UPDATE FAILED: {result.get('message', result)}")
|
|
else:
|
|
print(f" ✅ UPDATE SUCCESSFUL")
|
|
|
|
except Exception as e:
|
|
print(f" EXCEPTION: {e}")
|
|
|
|
print(f"\n{'='*60}")
|
|
print("All agent fixes applied!")
|