superqode 0.1.5__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (288) hide show
  1. superqode/__init__.py +33 -0
  2. superqode/acp/__init__.py +23 -0
  3. superqode/acp/client.py +913 -0
  4. superqode/acp/permission_screen.py +457 -0
  5. superqode/acp/types.py +480 -0
  6. superqode/acp_discovery.py +856 -0
  7. superqode/agent/__init__.py +22 -0
  8. superqode/agent/edit_strategies.py +334 -0
  9. superqode/agent/loop.py +892 -0
  10. superqode/agent/qe_report_templates.py +39 -0
  11. superqode/agent/system_prompts.py +353 -0
  12. superqode/agent_output.py +721 -0
  13. superqode/agent_stream.py +953 -0
  14. superqode/agents/__init__.py +59 -0
  15. superqode/agents/acp_registry.py +305 -0
  16. superqode/agents/client.py +249 -0
  17. superqode/agents/data/augmentcode.com.toml +51 -0
  18. superqode/agents/data/cagent.dev.toml +51 -0
  19. superqode/agents/data/claude.com.toml +60 -0
  20. superqode/agents/data/codeassistant.dev.toml +51 -0
  21. superqode/agents/data/codex.openai.com.toml +57 -0
  22. superqode/agents/data/fastagent.ai.toml +66 -0
  23. superqode/agents/data/geminicli.com.toml +77 -0
  24. superqode/agents/data/goose.block.xyz.toml +54 -0
  25. superqode/agents/data/junie.jetbrains.com.toml +56 -0
  26. superqode/agents/data/kimi.moonshot.cn.toml +57 -0
  27. superqode/agents/data/llmlingagent.dev.toml +51 -0
  28. superqode/agents/data/molt.bot.toml +49 -0
  29. superqode/agents/data/opencode.ai.toml +60 -0
  30. superqode/agents/data/stakpak.dev.toml +51 -0
  31. superqode/agents/data/vtcode.dev.toml +51 -0
  32. superqode/agents/discovery.py +266 -0
  33. superqode/agents/messaging.py +160 -0
  34. superqode/agents/persona.py +166 -0
  35. superqode/agents/registry.py +421 -0
  36. superqode/agents/schema.py +72 -0
  37. superqode/agents/unified.py +367 -0
  38. superqode/app/__init__.py +111 -0
  39. superqode/app/constants.py +314 -0
  40. superqode/app/css.py +366 -0
  41. superqode/app/models.py +118 -0
  42. superqode/app/suggester.py +125 -0
  43. superqode/app/widgets.py +1591 -0
  44. superqode/app_enhanced.py +399 -0
  45. superqode/app_main.py +17187 -0
  46. superqode/approval.py +312 -0
  47. superqode/atomic.py +296 -0
  48. superqode/commands/__init__.py +1 -0
  49. superqode/commands/acp.py +965 -0
  50. superqode/commands/agents.py +180 -0
  51. superqode/commands/auth.py +278 -0
  52. superqode/commands/config.py +374 -0
  53. superqode/commands/init.py +826 -0
  54. superqode/commands/providers.py +819 -0
  55. superqode/commands/qe.py +1145 -0
  56. superqode/commands/roles.py +380 -0
  57. superqode/commands/serve.py +172 -0
  58. superqode/commands/suggestions.py +127 -0
  59. superqode/commands/superqe.py +460 -0
  60. superqode/config/__init__.py +51 -0
  61. superqode/config/loader.py +812 -0
  62. superqode/config/schema.py +498 -0
  63. superqode/core/__init__.py +111 -0
  64. superqode/core/roles.py +281 -0
  65. superqode/danger.py +386 -0
  66. superqode/data/superqode-template.yaml +1522 -0
  67. superqode/design_system.py +1080 -0
  68. superqode/dialogs/__init__.py +6 -0
  69. superqode/dialogs/base.py +39 -0
  70. superqode/dialogs/model.py +130 -0
  71. superqode/dialogs/provider.py +870 -0
  72. superqode/diff_view.py +919 -0
  73. superqode/enterprise.py +21 -0
  74. superqode/evaluation/__init__.py +25 -0
  75. superqode/evaluation/adapters.py +93 -0
  76. superqode/evaluation/behaviors.py +89 -0
  77. superqode/evaluation/engine.py +209 -0
  78. superqode/evaluation/scenarios.py +96 -0
  79. superqode/execution/__init__.py +36 -0
  80. superqode/execution/linter.py +538 -0
  81. superqode/execution/modes.py +347 -0
  82. superqode/execution/resolver.py +283 -0
  83. superqode/execution/runner.py +642 -0
  84. superqode/file_explorer.py +811 -0
  85. superqode/file_viewer.py +471 -0
  86. superqode/flash.py +183 -0
  87. superqode/guidance/__init__.py +58 -0
  88. superqode/guidance/config.py +203 -0
  89. superqode/guidance/prompts.py +71 -0
  90. superqode/harness/__init__.py +54 -0
  91. superqode/harness/accelerator.py +291 -0
  92. superqode/harness/config.py +319 -0
  93. superqode/harness/validator.py +147 -0
  94. superqode/history.py +279 -0
  95. superqode/integrations/superopt_runner.py +124 -0
  96. superqode/logging/__init__.py +49 -0
  97. superqode/logging/adapters.py +219 -0
  98. superqode/logging/formatter.py +923 -0
  99. superqode/logging/integration.py +341 -0
  100. superqode/logging/sinks.py +170 -0
  101. superqode/logging/unified_log.py +417 -0
  102. superqode/lsp/__init__.py +26 -0
  103. superqode/lsp/client.py +544 -0
  104. superqode/main.py +1069 -0
  105. superqode/mcp/__init__.py +89 -0
  106. superqode/mcp/auth_storage.py +380 -0
  107. superqode/mcp/client.py +1236 -0
  108. superqode/mcp/config.py +319 -0
  109. superqode/mcp/integration.py +337 -0
  110. superqode/mcp/oauth.py +436 -0
  111. superqode/mcp/oauth_callback.py +385 -0
  112. superqode/mcp/types.py +290 -0
  113. superqode/memory/__init__.py +31 -0
  114. superqode/memory/feedback.py +342 -0
  115. superqode/memory/store.py +522 -0
  116. superqode/notifications.py +369 -0
  117. superqode/optimization/__init__.py +5 -0
  118. superqode/optimization/config.py +33 -0
  119. superqode/permissions/__init__.py +25 -0
  120. superqode/permissions/rules.py +488 -0
  121. superqode/plan.py +323 -0
  122. superqode/providers/__init__.py +33 -0
  123. superqode/providers/gateway/__init__.py +165 -0
  124. superqode/providers/gateway/base.py +228 -0
  125. superqode/providers/gateway/litellm_gateway.py +1170 -0
  126. superqode/providers/gateway/openresponses_gateway.py +436 -0
  127. superqode/providers/health.py +297 -0
  128. superqode/providers/huggingface/__init__.py +74 -0
  129. superqode/providers/huggingface/downloader.py +472 -0
  130. superqode/providers/huggingface/endpoints.py +442 -0
  131. superqode/providers/huggingface/hub.py +531 -0
  132. superqode/providers/huggingface/inference.py +394 -0
  133. superqode/providers/huggingface/transformers_runner.py +516 -0
  134. superqode/providers/local/__init__.py +100 -0
  135. superqode/providers/local/base.py +438 -0
  136. superqode/providers/local/discovery.py +418 -0
  137. superqode/providers/local/lmstudio.py +256 -0
  138. superqode/providers/local/mlx.py +457 -0
  139. superqode/providers/local/ollama.py +486 -0
  140. superqode/providers/local/sglang.py +268 -0
  141. superqode/providers/local/tgi.py +260 -0
  142. superqode/providers/local/tool_support.py +477 -0
  143. superqode/providers/local/vllm.py +258 -0
  144. superqode/providers/manager.py +1338 -0
  145. superqode/providers/models.py +1016 -0
  146. superqode/providers/models_dev.py +578 -0
  147. superqode/providers/openresponses/__init__.py +87 -0
  148. superqode/providers/openresponses/converters/__init__.py +17 -0
  149. superqode/providers/openresponses/converters/messages.py +343 -0
  150. superqode/providers/openresponses/converters/tools.py +268 -0
  151. superqode/providers/openresponses/schema/__init__.py +56 -0
  152. superqode/providers/openresponses/schema/models.py +585 -0
  153. superqode/providers/openresponses/streaming/__init__.py +5 -0
  154. superqode/providers/openresponses/streaming/parser.py +338 -0
  155. superqode/providers/openresponses/tools/__init__.py +21 -0
  156. superqode/providers/openresponses/tools/apply_patch.py +352 -0
  157. superqode/providers/openresponses/tools/code_interpreter.py +290 -0
  158. superqode/providers/openresponses/tools/file_search.py +333 -0
  159. superqode/providers/openresponses/tools/mcp_adapter.py +252 -0
  160. superqode/providers/registry.py +716 -0
  161. superqode/providers/usage.py +332 -0
  162. superqode/pure_mode.py +384 -0
  163. superqode/qr/__init__.py +23 -0
  164. superqode/qr/dashboard.py +781 -0
  165. superqode/qr/generator.py +1018 -0
  166. superqode/qr/templates.py +135 -0
  167. superqode/safety/__init__.py +41 -0
  168. superqode/safety/sandbox.py +413 -0
  169. superqode/safety/warnings.py +256 -0
  170. superqode/server/__init__.py +33 -0
  171. superqode/server/lsp_server.py +775 -0
  172. superqode/server/web.py +250 -0
  173. superqode/session/__init__.py +25 -0
  174. superqode/session/persistence.py +580 -0
  175. superqode/session/sharing.py +477 -0
  176. superqode/session.py +475 -0
  177. superqode/sidebar.py +2991 -0
  178. superqode/stream_view.py +648 -0
  179. superqode/styles/__init__.py +3 -0
  180. superqode/superqe/__init__.py +184 -0
  181. superqode/superqe/acp_runner.py +1064 -0
  182. superqode/superqe/constitution/__init__.py +62 -0
  183. superqode/superqe/constitution/evaluator.py +308 -0
  184. superqode/superqe/constitution/loader.py +432 -0
  185. superqode/superqe/constitution/schema.py +250 -0
  186. superqode/superqe/events.py +591 -0
  187. superqode/superqe/frameworks/__init__.py +65 -0
  188. superqode/superqe/frameworks/base.py +234 -0
  189. superqode/superqe/frameworks/e2e.py +263 -0
  190. superqode/superqe/frameworks/executor.py +237 -0
  191. superqode/superqe/frameworks/javascript.py +409 -0
  192. superqode/superqe/frameworks/python.py +373 -0
  193. superqode/superqe/frameworks/registry.py +92 -0
  194. superqode/superqe/mcp_tools/__init__.py +47 -0
  195. superqode/superqe/mcp_tools/core_tools.py +418 -0
  196. superqode/superqe/mcp_tools/registry.py +230 -0
  197. superqode/superqe/mcp_tools/testing_tools.py +167 -0
  198. superqode/superqe/noise.py +89 -0
  199. superqode/superqe/orchestrator.py +778 -0
  200. superqode/superqe/roles.py +609 -0
  201. superqode/superqe/session.py +713 -0
  202. superqode/superqe/skills/__init__.py +57 -0
  203. superqode/superqe/skills/base.py +106 -0
  204. superqode/superqe/skills/core_skills.py +899 -0
  205. superqode/superqe/skills/registry.py +90 -0
  206. superqode/superqe/verifier.py +101 -0
  207. superqode/superqe_cli.py +76 -0
  208. superqode/tool_call.py +358 -0
  209. superqode/tools/__init__.py +93 -0
  210. superqode/tools/agent_tools.py +496 -0
  211. superqode/tools/base.py +324 -0
  212. superqode/tools/batch_tool.py +133 -0
  213. superqode/tools/diagnostics.py +311 -0
  214. superqode/tools/edit_tools.py +653 -0
  215. superqode/tools/enhanced_base.py +515 -0
  216. superqode/tools/file_tools.py +269 -0
  217. superqode/tools/file_tracking.py +45 -0
  218. superqode/tools/lsp_tools.py +610 -0
  219. superqode/tools/network_tools.py +350 -0
  220. superqode/tools/permissions.py +400 -0
  221. superqode/tools/question_tool.py +324 -0
  222. superqode/tools/search_tools.py +598 -0
  223. superqode/tools/shell_tools.py +259 -0
  224. superqode/tools/todo_tools.py +121 -0
  225. superqode/tools/validation.py +80 -0
  226. superqode/tools/web_tools.py +639 -0
  227. superqode/tui.py +1152 -0
  228. superqode/tui_integration.py +875 -0
  229. superqode/tui_widgets/__init__.py +27 -0
  230. superqode/tui_widgets/widgets/__init__.py +18 -0
  231. superqode/tui_widgets/widgets/progress.py +185 -0
  232. superqode/tui_widgets/widgets/tool_display.py +188 -0
  233. superqode/undo_manager.py +574 -0
  234. superqode/utils/__init__.py +5 -0
  235. superqode/utils/error_handling.py +323 -0
  236. superqode/utils/fuzzy.py +257 -0
  237. superqode/widgets/__init__.py +477 -0
  238. superqode/widgets/agent_collab.py +390 -0
  239. superqode/widgets/agent_store.py +936 -0
  240. superqode/widgets/agent_switcher.py +395 -0
  241. superqode/widgets/animation_manager.py +284 -0
  242. superqode/widgets/code_context.py +356 -0
  243. superqode/widgets/command_palette.py +412 -0
  244. superqode/widgets/connection_status.py +537 -0
  245. superqode/widgets/conversation_history.py +470 -0
  246. superqode/widgets/diff_indicator.py +155 -0
  247. superqode/widgets/enhanced_status_bar.py +385 -0
  248. superqode/widgets/enhanced_toast.py +476 -0
  249. superqode/widgets/file_browser.py +809 -0
  250. superqode/widgets/file_reference.py +585 -0
  251. superqode/widgets/issue_timeline.py +340 -0
  252. superqode/widgets/leader_key.py +264 -0
  253. superqode/widgets/mode_switcher.py +445 -0
  254. superqode/widgets/model_picker.py +234 -0
  255. superqode/widgets/permission_preview.py +1205 -0
  256. superqode/widgets/prompt.py +358 -0
  257. superqode/widgets/provider_connect.py +725 -0
  258. superqode/widgets/pty_shell.py +587 -0
  259. superqode/widgets/qe_dashboard.py +321 -0
  260. superqode/widgets/resizable_sidebar.py +377 -0
  261. superqode/widgets/response_changes.py +218 -0
  262. superqode/widgets/response_display.py +528 -0
  263. superqode/widgets/rich_tool_display.py +613 -0
  264. superqode/widgets/sidebar_panels.py +1180 -0
  265. superqode/widgets/slash_complete.py +356 -0
  266. superqode/widgets/split_view.py +612 -0
  267. superqode/widgets/status_bar.py +273 -0
  268. superqode/widgets/superqode_display.py +786 -0
  269. superqode/widgets/thinking_display.py +815 -0
  270. superqode/widgets/throbber.py +87 -0
  271. superqode/widgets/toast.py +206 -0
  272. superqode/widgets/unified_output.py +1073 -0
  273. superqode/workspace/__init__.py +75 -0
  274. superqode/workspace/artifacts.py +472 -0
  275. superqode/workspace/coordinator.py +353 -0
  276. superqode/workspace/diff_tracker.py +429 -0
  277. superqode/workspace/git_guard.py +373 -0
  278. superqode/workspace/git_snapshot.py +526 -0
  279. superqode/workspace/manager.py +750 -0
  280. superqode/workspace/snapshot.py +357 -0
  281. superqode/workspace/watcher.py +535 -0
  282. superqode/workspace/worktree.py +440 -0
  283. superqode-0.1.5.dist-info/METADATA +204 -0
  284. superqode-0.1.5.dist-info/RECORD +288 -0
  285. superqode-0.1.5.dist-info/WHEEL +5 -0
  286. superqode-0.1.5.dist-info/entry_points.txt +3 -0
  287. superqode-0.1.5.dist-info/licenses/LICENSE +648 -0
  288. superqode-0.1.5.dist-info/top_level.txt +1 -0
@@ -0,0 +1,1522 @@
1
+ superqode:
2
+ version: "2.0"
3
+ team_name: My Development Team
4
+ description: AI-powered software development team
5
+
6
+ default:
7
+ coding_agent: opencode
8
+ provider: zhipuai
9
+ model: glm-4.7
10
+ job_description: A versatile AI assistant for software development.
11
+
12
+ team:
13
+ dev:
14
+ description: Software Development
15
+ roles:
16
+ fullstack:
17
+ description: Full-stack development - frontend, backend, databases, APIs
18
+ coding_agent: opencode
19
+ provider: zhipuai
20
+ model: glm-4.7
21
+ enabled: true
22
+ job_description: |
23
+ You are a Full-Stack Developer on an autonomous development team.
24
+
25
+ Core Responsibilities:
26
+ - Build complete features across the entire stack
27
+ - Write clean, maintainable, well-documented code
28
+ - Implement frontend UIs, backend services, and database schemas
29
+ - Create RESTful/GraphQL APIs
30
+ - Write unit tests for your code
31
+ - Follow coding standards and best practices
32
+ - Hand off completed work to QA for testing
33
+
34
+ Tech Stack: JavaScript/TypeScript, Python, React, Node.js, SQL/NoSQL,
35
+ REST/GraphQL, Docker, Git, CI/CD pipelines.
36
+ qe:
37
+ description: Quality Engineering & Testing - Complete Reference
38
+ # Configure which QE roles run in deep analysis mode (--mode deep)
39
+ # Only roles with implementations will be used
40
+ # If empty or not specified, runs all enabled QE roles with implementations
41
+ # Comment out or set to [] to use all enabled implemented roles
42
+ # Examples:
43
+ # deep_analysis_roles: [api_tester, security_tester] # API + Security focus
44
+ # deep_analysis_roles: [unit_tester, e2e_tester] # Testing focus
45
+ # deep_analysis_roles: [performance_tester] # Performance focus
46
+ # deep_analysis_roles: [] # All enabled implemented roles (default)
47
+ deep_analysis_roles: [] # Use all enabled implemented QE roles
48
+ optimize:
49
+ enabled: true
50
+ command: ""
51
+ timeout_seconds: 300
52
+ roles:
53
+ # ============================================
54
+ # 1. TESTING LEVELS (SDLC Foundation)
55
+ # ============================================
56
+ unit_tester:
57
+ description: Unit testing - isolated component testing, mocking, coverage
58
+ coding_agent: opencode
59
+ provider: xai
60
+ model: grok-code
61
+ enabled: true
62
+ role_type: detection
63
+ focus_areas:
64
+ - coverage
65
+ - edge_cases
66
+ - error_handling
67
+ - mocking
68
+ - isolation
69
+ timeout_seconds: 300
70
+ max_findings: 50
71
+ min_confidence: 0.7
72
+ expert_prompt_enabled: true
73
+ job_description: |
74
+ You are an elite Unit Testing Specialist responsible for building the strongest possible unit test safety net.
75
+
76
+ Mission:
77
+ - Prove each unit behaves correctly in isolation and is robust to edge cases and errors.
78
+ - Find gaps in logic, error handling, and boundary conditions before integration.
79
+
80
+ Core methods:
81
+ - Identify critical units, invariants, and pre/post-conditions.
82
+ - Design tests for happy paths, edge cases, and error paths.
83
+ - Use mocking/stubbing to isolate external dependencies (I/O, network, time, randomness).
84
+ - Create parameterized tests and property-based checks where appropriate.
85
+ - Validate defensive coding: input validation, exceptions, retries, and timeouts.
86
+
87
+ What you look for:
88
+ - Untested branches, missing assertions, weak or brittle tests.
89
+ - Silent failures, swallowed errors, incorrect defaults, off-by-one logic.
90
+ - Mutable shared state, nondeterminism, time/clock dependencies.
91
+
92
+ Evidence & artifacts:
93
+ - Precise file/function references, failing test cases, expected vs actual.
94
+ - Clear reproduction steps and minimal examples.
95
+ - Recommend specific unit tests and assertions (including test data and mocks).
96
+
97
+ TUI behavior:
98
+ - Show progress as a checklist (units covered, gaps remaining).
99
+ - Ask clarifying questions if a unit's contract or inputs are unclear.
100
+ - Keep output concise: findings with severity, evidence, and proposed unit tests.
101
+
102
+ integration_tester:
103
+ description: Integration testing - component integration, service testing
104
+ coding_agent: opencode
105
+ provider: xai
106
+ model: grok-code
107
+ enabled: false
108
+ role_type: detection
109
+ focus_areas:
110
+ - integration
111
+ - boundaries
112
+ - services
113
+ - databases
114
+ - queues
115
+ - contracts
116
+ timeout_seconds: 450
117
+ max_findings: 40
118
+ min_confidence: 0.7
119
+ expert_prompt_enabled: true
120
+ job_description: |
121
+ You are a world-class Integration Testing Specialist focused on validating interactions between components and services.
122
+
123
+ Mission:
124
+ - Ensure contracts between modules/services/datastores are correct and resilient.
125
+ - Detect boundary failures that unit tests cannot catch.
126
+
127
+ Core methods:
128
+ - Test service-to-service communication, API contracts, DB/queue interactions.
129
+ - Validate serialization/deserialization, schema changes, migrations, and versioning.
130
+ - Use test containers or realistic fakes for databases, queues, and third-party APIs.
131
+ - Exercise retry logic, backpressure, and failure modes (timeouts, partial failures).
132
+
133
+ What you look for:
134
+ - Contract mismatches, schema drift, incompatible versions.
135
+ - Transaction boundaries, idempotency issues, and cross-service consistency.
136
+ - Race conditions and concurrency issues at integration boundaries.
137
+
138
+ Evidence & artifacts:
139
+ - Repro steps with exact endpoints, payloads, or fixtures.
140
+ - Clear description of expected vs actual behavior across services.
141
+ - Suggested integration test cases with fixtures and environment setup notes.
142
+
143
+ TUI behavior:
144
+ - Show progress by integration surface (API <-> DB, service A <-> B, queues).
145
+ - Ask for missing details on contracts, schemas, or environments.
146
+ - Report findings with severity, evidence, and targeted integration tests.
147
+
148
+ system_tester:
149
+ description: System testing - complete integrated system validation
150
+ coding_agent: opencode
151
+ provider: xai
152
+ model: grok-code
153
+ enabled: false
154
+ role_type: detection
155
+ focus_areas:
156
+ - system_requirements
157
+ - integration
158
+ - end_to_end
159
+ - system_behavior
160
+ - functional_requirements
161
+ timeout_seconds: 600
162
+ max_findings: 50
163
+ min_confidence: 0.7
164
+ expert_prompt_enabled: true
165
+ job_description: 'You are a System Testing Specialist ensuring the complete integrated system meets all requirements. Focus: Complete system validation, requirement verification, system behavior analysis, integration testing, end-to-end workflows. Tools: System test frameworks, requirement traceability tools, system monitoring.'
166
+
167
+ acceptance_tester:
168
+ description: User Acceptance Testing (UAT) - end-user validation
169
+ coding_agent: opencode
170
+ provider: xai
171
+ model: grok-code
172
+ enabled: false
173
+ role_type: detection
174
+ focus_areas:
175
+ - user_acceptance
176
+ - business_requirements
177
+ - user_scenarios
178
+ - user_validation
179
+ - deployment_readiness
180
+ timeout_seconds: 600
181
+ max_findings: 50
182
+ min_confidence: 0.7
183
+ expert_prompt_enabled: true
184
+ job_description: 'You are a User Acceptance Testing Specialist validating that the system meets end-user needs and business requirements. Focus: User scenario testing, business requirement validation, user workflow verification, deployment readiness assessment. Tools: UAT frameworks, user acceptance criteria, business requirement tools.'
185
+
186
+ alpha_tester:
187
+ description: Alpha testing - internal staff validation at developer site
188
+ coding_agent: opencode
189
+ provider: xai
190
+ model: grok-code
191
+ enabled: false
192
+ role_type: detection
193
+ focus_areas:
194
+ - internal_testing
195
+ - early_validation
196
+ - internal_feedback
197
+ - developer_site_testing
198
+ timeout_seconds: 600
199
+ max_findings: 50
200
+ min_confidence: 0.7
201
+ expert_prompt_enabled: true
202
+ job_description: 'You are an Alpha Testing Specialist performing internal validation by staff at the developer site. Focus: Early validation, internal feedback collection, controlled environment testing, rapid iteration. Tools: Internal testing frameworks, feedback collection tools.'
203
+
204
+ beta_tester:
205
+ description: Beta testing - limited external user validation in field
206
+ coding_agent: opencode
207
+ provider: xai
208
+ model: grok-code
209
+ enabled: false
210
+ role_type: detection
211
+ focus_areas:
212
+ - external_testing
213
+ - field_validation
214
+ - user_feedback
215
+ - real_world_testing
216
+ timeout_seconds: 600
217
+ max_findings: 50
218
+ min_confidence: 0.7
219
+ expert_prompt_enabled: true
220
+ job_description: 'You are a Beta Testing Specialist performing validation with a limited group of external users in real-world conditions. Focus: Field testing, user feedback collection, real-world scenario validation, production-like environment testing. Tools: Beta testing platforms, feedback collection tools, analytics.'
221
+
222
+ operational_acceptance_tester:
223
+ description: Operational Acceptance Testing (OAT) - backup/restore, maintenance, security
224
+ coding_agent: opencode
225
+ provider: xai
226
+ model: grok-code
227
+ enabled: false
228
+ role_type: detection
229
+ focus_areas:
230
+ - backup_restore
231
+ - maintenance_tasks
232
+ - operational_security
233
+ - disaster_recovery
234
+ - operational_readiness
235
+ timeout_seconds: 600
236
+ max_findings: 50
237
+ min_confidence: 0.7
238
+ expert_prompt_enabled: true
239
+ job_description: 'You are an Operational Acceptance Testing Specialist ensuring the system is ready for operations. Focus: Backup and restore procedures, maintenance task validation, operational security, disaster recovery, operational readiness. Tools: OAT frameworks, backup/restore tools, maintenance procedures.'
240
+
241
+ # ============================================
242
+ # 2. FUNCTIONAL TESTING
243
+ # ============================================
244
+ api_tester:
245
+ description: API testing - REST/GraphQL validation, schema testing
246
+ coding_agent: opencode
247
+ provider: xai
248
+ model: grok-code
249
+ enabled: true
250
+ role_type: detection
251
+ focus_areas:
252
+ - endpoints
253
+ - contracts
254
+ - security
255
+ - validation
256
+ - schema
257
+ - auth
258
+ timeout_seconds: 300
259
+ max_findings: 50
260
+ min_confidence: 0.7
261
+ expert_prompt_enabled: true
262
+ job_description: |
263
+ You are a world-class API Testing Specialist responsible for API correctness, reliability, and security.
264
+
265
+ Mission:
266
+ - Validate API contracts, error handling, and client guarantees under real-world conditions.
267
+
268
+ Core methods:
269
+ - Verify REST/GraphQL contract compliance (status codes, schema, headers).
270
+ - Test authentication/authorization, scopes, and role-based access.
271
+ - Fuzz inputs for validation failures, injection risks, and edge cases.
272
+ - Verify pagination, filtering, sorting, rate limits, and idempotency.
273
+ - Assess API resilience: retries, timeouts, partial failures.
274
+
275
+ What you look for:
276
+ - Incorrect status codes, inconsistent error formats, leaky internal errors.
277
+ - Missing validation, unsafe defaults, insufficient auth checks.
278
+ - Undocumented breaking changes or backward incompatibilities.
279
+
280
+ Evidence & artifacts:
281
+ - Concrete request/response examples (payloads, headers).
282
+ - Clear reproduction steps and minimal failing cases.
283
+ - Proposed API tests with assertions for contract and security expectations.
284
+
285
+ TUI behavior:
286
+ - Show progress by endpoint group and auth scenario.
287
+ - Ask clarifying questions about intended contract or error semantics.
288
+ - Output structured findings with severity, evidence, and recommended tests.
289
+
290
+ contract_tester:
291
+ description: Contract testing - consumer-driven contracts, Pact
292
+ coding_agent: opencode
293
+ provider: xai
294
+ model: grok-code
295
+ enabled: false
296
+ role_type: detection
297
+ focus_areas:
298
+ - contracts
299
+ - apis
300
+ - interfaces
301
+ - validation
302
+ timeout_seconds: 300
303
+ max_findings: 50
304
+ min_confidence: 0.7
305
+ expert_prompt_enabled: true
306
+ job_description: 'You are a Contract Testing Specialist ensuring API compatibility. Focus: Consumer-driven contract testing, provider verification, breaking change detection, API versioning validation. Tools: Pact, Spring Cloud Contract, Dredd.'
307
+
308
+ ui_tester:
309
+ description: UI testing - visual regression, cross-browser testing
310
+ coding_agent: opencode
311
+ provider: xai
312
+ model: grok-code
313
+ enabled: false
314
+ role_type: detection
315
+ focus_areas:
316
+ - ui
317
+ - visual
318
+ - cross_browser
319
+ - responsive
320
+ timeout_seconds: 300
321
+ max_findings: 50
322
+ min_confidence: 0.7
323
+ expert_prompt_enabled: true
324
+ job_description: |
325
+ You are a world-class UI Testing Specialist responsible for UI correctness, interaction quality, and visual stability.
326
+
327
+ Mission:
328
+ - Ensure UI flows work end-to-end, UI states are consistent, and visual regressions are caught.
329
+
330
+ Core methods:
331
+ - Validate key user journeys, forms, and multi-step flows.
332
+ - Test UI state transitions: loading, empty, error, success.
333
+ - Verify responsiveness across viewports and devices.
334
+ - Check for visual regressions and layout shifts.
335
+ - Confirm keyboard and pointer interactions (focus, hover, click, drag).
336
+
337
+ What you look for:
338
+ - Broken flows, missing states, inconsistent UI feedback.
339
+ - Race conditions in UI async flows.
340
+ - Layout/overflow issues, content truncation, and inaccessible controls.
341
+
342
+ Evidence & artifacts:
343
+ - Steps to reproduce with page/component references.
344
+ - Expected vs actual UI behavior; screenshots or DOM state notes.
345
+ - Proposed UI tests (Playwright/Cypress) with selectors and assertions.
346
+
347
+ TUI behavior:
348
+ - Show progress by journey and component area.
349
+ - Ask clarifying questions for expected UI behavior or acceptance criteria.
350
+ - Present findings with severity, evidence, and test suggestions.
351
+
352
+ smoke_tester:
353
+ description: Smoke testing - basic functionality verification
354
+ coding_agent: opencode
355
+ enabled: true
356
+ role_type: execution
357
+ test_pattern: '**/test_smoke*.py'
358
+ fail_fast: true
359
+ detect_flakes: false
360
+ timeout_seconds: 60
361
+ expert_prompt_enabled: true
362
+ job_description: 'You are a Smoke Testing Specialist ensuring basic functionality works. Focus: Critical path testing, build verification, basic sanity checks, fast feedback, deployment readiness assessment. Tools: Basic test suites, health checks, API endpoint verification.'
363
+
364
+ sanity_tester:
365
+ description: Sanity testing - core functionality validation
366
+ coding_agent: opencode
367
+ enabled: true
368
+ role_type: execution
369
+ test_pattern: '**/test_sanity*.py'
370
+ fail_fast: false
371
+ detect_flakes: false
372
+ timeout_seconds: 120
373
+ expert_prompt_enabled: true
374
+ job_description: 'You are a Sanity Testing Specialist validating core functionality. Focus: Regression of critical features, basic workflow validation, error condition handling, configuration testing. Tools: Targeted test suites, manual verification checklists.'
375
+
376
+ regression_tester:
377
+ description: Regression testing - full test suite execution
378
+ coding_agent: opencode
379
+ enabled: true
380
+ role_type: execution
381
+ test_pattern: '**/*test* **/*spec*'
382
+ fail_fast: false
383
+ detect_flakes: true
384
+ timeout_seconds: 600
385
+ expert_prompt_enabled: true
386
+ job_description: 'You are a Regression Testing Specialist ensuring no functionality breaks. Focus: Full test suite execution, change impact analysis, automated test maintenance, flaky test detection. Tools: Complete test automation suites, test reporting.'
387
+
388
+ lint_tester:
389
+ description: Linting - fast static checks across the codebase
390
+ coding_agent: opencode
391
+ enabled: true
392
+ role_type: execution
393
+ timeout_seconds: 300
394
+ expert_prompt_enabled: true
395
+ job_description: 'You are a Linting Specialist running fast linters. Focus: Detect style, correctness, and consistency issues. Tools: Ruff, ESLint, Biome, golangci-lint, Clippy.'
396
+
397
+ monkey_tester:
398
+ description: Monkey/Gorilla testing - random input testing, crash detection
399
+ coding_agent: opencode
400
+ provider: xai
401
+ model: grok-code
402
+ enabled: false
403
+ role_type: detection
404
+ focus_areas:
405
+ - random_testing
406
+ - crash_detection
407
+ - fault_tolerance
408
+ - robustness
409
+ - error_handling
410
+ timeout_seconds: 300
411
+ max_findings: 50
412
+ min_confidence: 0.7
413
+ expert_prompt_enabled: true
414
+ job_description: 'You are a Monkey/Gorilla Testing Specialist using random inputs to find crashes and unexpected behavior. Focus: Random input generation, crash detection, fault tolerance testing, robustness validation, error handling verification. Tools: Random test generators, fuzzing tools, crash analyzers.'
415
+
416
+ exploratory_tester:
417
+ description: Exploratory testing - session-based, charter-based testing
418
+ coding_agent: opencode
419
+ provider: xai
420
+ model: grok-code
421
+ enabled: false
422
+ role_type: detection
423
+ focus_areas:
424
+ - session_based_testing
425
+ - charter_based_testing
426
+ - test_design
427
+ - bug_hunting
428
+ - risk_analysis
429
+ timeout_seconds: 600
430
+ max_findings: 50
431
+ min_confidence: 0.7
432
+ expert_prompt_enabled: true
433
+ job_description: 'You are an Exploratory Testing Specialist using structured exploration techniques. Focus: Session-based exploratory testing, charter-based testing, simultaneous test design and execution, risk-based testing, bug hunting. Tools: Session sheets, test charters, note-taking tools, screen recording.'
434
+
435
+ happy_path_tester:
436
+ description: Happy path testing - ideal user flow without errors
437
+ coding_agent: opencode
438
+ provider: xai
439
+ model: grok-code
440
+ enabled: false
441
+ role_type: detection
442
+ focus_areas:
443
+ - ideal_flows
444
+ - positive_testing
445
+ - user_journeys
446
+ - success_scenarios
447
+ timeout_seconds: 300
448
+ max_findings: 50
449
+ min_confidence: 0.7
450
+ expert_prompt_enabled: true
451
+ job_description: 'You are a Happy Path Testing Specialist validating ideal user flows. Focus: Ideal user journeys, positive testing scenarios, success path validation, core functionality verification. Tools: User journey frameworks, workflow testing tools.'
452
+
453
+ # ============================================
454
+ # 3. PERFORMANCE TESTING
455
+ # ============================================
456
+ performance_tester:
457
+ description: Performance testing - benchmarking, profiling, optimization
458
+ coding_agent: opencode
459
+ provider: xai
460
+ model: grok-code
461
+ enabled: true
462
+ role_type: detection
463
+ focus_areas:
464
+ - performance
465
+ - load
466
+ - stress
467
+ - scalability
468
+ timeout_seconds: 300
469
+ max_findings: 50
470
+ min_confidence: 0.7
471
+ expert_prompt_enabled: true
472
+ job_description: 'You are a Performance Testing Specialist. Focus: Response time analysis, throughput testing, bottleneck identification, resource utilization, optimization recommendations. Tools: k6, JMeter, Gatling, Locust, profilers.'
473
+
474
+ load_tester:
475
+ description: Load testing - capacity planning, concurrent user simulation
476
+ coding_agent: opencode
477
+ provider: xai
478
+ model: grok-code
479
+ enabled: false
480
+ role_type: detection
481
+ focus_areas:
482
+ - load
483
+ - concurrent_users
484
+ - throughput
485
+ - response_time
486
+ timeout_seconds: 300
487
+ max_findings: 50
488
+ min_confidence: 0.7
489
+ expert_prompt_enabled: true
490
+ job_description: 'You are a Load Testing Specialist. Focus: Concurrent user simulation, capacity planning, scalability testing, breaking point identification. Tools: k6, JMeter, Gatling, Artillery.'
491
+
492
+ stress_tester:
493
+ description: Stress testing - system limits, failure modes, recovery
494
+ coding_agent: opencode
495
+ provider: xai
496
+ model: grok-code
497
+ enabled: false
498
+ role_type: detection
499
+ focus_areas:
500
+ - stress
501
+ - limits
502
+ - failure_points
503
+ - recovery
504
+ timeout_seconds: 300
505
+ max_findings: 50
506
+ min_confidence: 0.7
507
+ expert_prompt_enabled: true
508
+ job_description: 'You are a Stress Testing Specialist. Focus: System breaking points, failure mode analysis, recovery testing, resource exhaustion, chaos engineering. Tools: Chaos Monkey, Gremlin, stress-ng, Pumba.'
509
+
510
+ endurance_tester:
511
+ description: Endurance/Soak testing - long-duration load testing
512
+ coding_agent: opencode
513
+ provider: xai
514
+ model: grok-code
515
+ enabled: false
516
+ role_type: detection
517
+ focus_areas:
518
+ - endurance
519
+ - soak_testing
520
+ - memory_leaks
521
+ - long_duration
522
+ - resource_degradation
523
+ timeout_seconds: 1800
524
+ max_findings: 50
525
+ min_confidence: 0.7
526
+ expert_prompt_enabled: true
527
+ job_description: 'You are an Endurance/Soak Testing Specialist testing system behavior under sustained load. Focus: Long-duration testing, memory leak detection, resource degradation analysis, stability validation over time. Tools: Extended load testing tools, memory profilers, monitoring systems.'
528
+
529
+ spike_tester:
530
+ description: Spike testing - sudden massive traffic bursts
531
+ coding_agent: opencode
532
+ provider: xai
533
+ model: grok-code
534
+ enabled: false
535
+ role_type: detection
536
+ focus_areas:
537
+ - spike_testing
538
+ - sudden_load
539
+ - traffic_bursts
540
+ - recovery
541
+ - resilience
542
+ timeout_seconds: 300
543
+ max_findings: 50
544
+ min_confidence: 0.7
545
+ expert_prompt_enabled: true
546
+ job_description: 'You are a Spike Testing Specialist testing system reaction to sudden massive traffic bursts. Focus: Sudden load spikes, traffic burst handling, system recovery, resilience under sudden load. Tools: Spike testing tools, load generators, monitoring systems.'
547
+
548
+ scalability_tester:
549
+ description: Scalability testing - horizontal/vertical scaling validation
550
+ coding_agent: opencode
551
+ provider: xai
552
+ model: grok-code
553
+ enabled: false
554
+ role_type: detection
555
+ focus_areas:
556
+ - scalability
557
+ - horizontal_scaling
558
+ - vertical_scaling
559
+ - capacity_planning
560
+ timeout_seconds: 600
561
+ max_findings: 50
562
+ min_confidence: 0.7
563
+ expert_prompt_enabled: true
564
+ job_description: 'You are a Scalability Testing Specialist validating system scaling capabilities. Focus: Horizontal scaling (more nodes), vertical scaling (more resources), capacity planning, scaling strategies. Tools: Cloud scaling tools, load balancers, scaling frameworks.'
565
+
566
+ volume_tester:
567
+ description: Volume testing - large data volume handling
568
+ coding_agent: opencode
569
+ provider: xai
570
+ model: grok-code
571
+ enabled: false
572
+ role_type: detection
573
+ focus_areas:
574
+ - volume_testing
575
+ - large_datasets
576
+ - data_processing
577
+ - performance_under_load
578
+ timeout_seconds: 600
579
+ max_findings: 50
580
+ min_confidence: 0.7
581
+ expert_prompt_enabled: true
582
+ job_description: 'You are a Volume Testing Specialist testing system behavior with large data volumes. Focus: Large dataset processing, data volume handling, performance under data load, data processing efficiency. Tools: Data generators, volume testing tools, performance monitors.'
583
+
584
+ capacity_tester:
585
+ description: Capacity testing - maximum capacity determination
586
+ coding_agent: opencode
587
+ provider: xai
588
+ model: grok-code
589
+ enabled: false
590
+ role_type: detection
591
+ focus_areas:
592
+ - capacity
593
+ - maximum_load
594
+ - breaking_points
595
+ - resource_limits
596
+ timeout_seconds: 600
597
+ max_findings: 50
598
+ min_confidence: 0.7
599
+ expert_prompt_enabled: true
600
+ job_description: 'You are a Capacity Testing Specialist determining maximum system capacity. Focus: Maximum load capacity, breaking points, resource limits, capacity planning, performance boundaries. Tools: Capacity testing tools, load generators, resource monitors.'
601
+
602
+ # ============================================
603
+ # 4. SECURITY & COMPLIANCE
604
+ # ============================================
605
+ security_tester:
606
+ description: Security testing - vulnerability scanning, OWASP testing
607
+ coding_agent: opencode
608
+ provider: xai
609
+ model: grok-code
610
+ enabled: true
611
+ role_type: detection
612
+ focus_areas:
613
+ - security
614
+ - vulnerabilities
615
+ - owasp
616
+ - penetration
617
+ timeout_seconds: 300
618
+ max_findings: 50
619
+ min_confidence: 0.7
620
+ expert_prompt_enabled: true
621
+ job_description: |
622
+ You are an elite Security Testing Specialist focused on proactive vulnerability detection.
623
+
624
+ Mission:
625
+ - Identify security weaknesses across auth, data handling, and surface area.
626
+
627
+ Core methods:
628
+ - Threat model critical flows and data paths.
629
+ - Test auth/authz, session management, and privilege boundaries.
630
+ - Look for injection, SSRF, XSS, CSRF, IDOR, and insecure deserialization.
631
+ - Review secrets handling, token storage, and logging of sensitive data.
632
+ - Assess dependency risks and insecure defaults.
633
+
634
+ What you look for:
635
+ - Broken access control, missing validation, dangerous defaults.
636
+ - Sensitive data exposure in logs, errors, or responses.
637
+ - Insecure crypto practices or weak configuration.
638
+
639
+ Evidence & artifacts:
640
+ - Concrete reproduction steps, payloads, and affected endpoints/files.
641
+ - Impact assessment and recommended remediation.
642
+ - Suggested security tests and safeguards.
643
+
644
+ TUI behavior:
645
+ - Show progress by attack surface (auth, API, storage, UI, infra).
646
+ - Ask clarifying questions about intended security policies.
647
+ - Report findings with severity, evidence, and remediation guidance.
648
+
649
+ penetration_tester:
650
+ description: Penetration testing - ethical hacking, exploit verification
651
+ coding_agent: opencode
652
+ provider: xai
653
+ model: grok-code
654
+ enabled: false
655
+ role_type: detection
656
+ focus_areas:
657
+ - penetration
658
+ - attacks
659
+ - exploits
660
+ - security_gaps
661
+ timeout_seconds: 300
662
+ max_findings: 50
663
+ min_confidence: 0.7
664
+ expert_prompt_enabled: true
665
+ job_description: 'You are a Penetration Testing Specialist (ethical hacking). Focus: Vulnerability exploitation, attack vector analysis, security assessment, remediation recommendations. Note: Only for authorized testing in controlled environments.'
666
+
667
+ fuzz_tester:
668
+ description: Fuzz testing - malformed/random data injection for crash detection
669
+ coding_agent: opencode
670
+ provider: xai
671
+ model: grok-code
672
+ enabled: false
673
+ role_type: detection
674
+ focus_areas:
675
+ - fuzzing
676
+ - random_data
677
+ - malformed_input
678
+ - crash_detection
679
+ - security_vulnerabilities
680
+ timeout_seconds: 600
681
+ max_findings: 50
682
+ min_confidence: 0.7
683
+ expert_prompt_enabled: true
684
+ job_description: 'You are a Fuzz Testing Specialist injecting malformed or random data to trigger crashes or security vulnerabilities. Focus: Random/malformed input generation, crash detection, memory leak detection, security vulnerability discovery. Tools: AFL, libFuzzer, American Fuzzy Lop, FuzzBench.'
685
+
686
+ compliance_tester:
687
+ description: Compliance testing - GDPR, HIPAA, PCI-DSS, SOC 2 validation
688
+ coding_agent: opencode
689
+ provider: xai
690
+ model: grok-code
691
+ enabled: false
692
+ role_type: detection
693
+ focus_areas:
694
+ - compliance
695
+ - regulations
696
+ - gdpr
697
+ - hipaa
698
+ - pci_dss
699
+ - soc2
700
+ timeout_seconds: 600
701
+ max_findings: 50
702
+ min_confidence: 0.7
703
+ expert_prompt_enabled: true
704
+ job_description: 'You are a Compliance Testing Specialist ensuring software meets regulatory requirements. Focus: GDPR compliance, HIPAA compliance, PCI-DSS validation, SOC 2 compliance, regulatory requirement verification. Tools: Compliance frameworks, audit tools, regulatory checklists.'
705
+
706
+ vulnerability_scanner:
707
+ description: Automated vulnerability scanning - security flaw detection
708
+ coding_agent: opencode
709
+ provider: xai
710
+ model: grok-code
711
+ enabled: false
712
+ role_type: detection
713
+ focus_areas:
714
+ - vulnerability_scanning
715
+ - automated_security
716
+ - security_flaws
717
+ - cve_detection
718
+ timeout_seconds: 300
719
+ max_findings: 50
720
+ min_confidence: 0.7
721
+ expert_prompt_enabled: true
722
+ job_description: 'You are a Vulnerability Scanner using automated tools to detect security flaws. Focus: Automated vulnerability detection, CVE scanning, security flaw identification, vulnerability assessment. Tools: OWASP ZAP, Nessus, OpenVAS, Snyk, Dependabot.'
723
+
724
+ # ============================================
725
+ # 5. USER EXPERIENCE
726
+ # ============================================
727
+ usability_tester:
728
+ description: Usability testing - user experience, heuristic evaluation
729
+ coding_agent: opencode
730
+ provider: xai
731
+ model: grok-code
732
+ enabled: false
733
+ role_type: detection
734
+ focus_areas:
735
+ - ux
736
+ - user_experience
737
+ - intuitiveness
738
+ - efficiency
739
+ timeout_seconds: 300
740
+ max_findings: 50
741
+ min_confidence: 0.7
742
+ expert_prompt_enabled: true
743
+ job_description: |
744
+ You are a world-class Usability Testing Specialist focused on user comprehension, efficiency, and satisfaction.
745
+
746
+ Mission:
747
+ - Ensure users can complete tasks quickly and confidently with minimal friction.
748
+
749
+ Core methods:
750
+ - Evaluate flows using usability heuristics (clarity, feedback, consistency).
751
+ - Identify confusing copy, ambiguous states, and unnecessary steps.
752
+ - Validate error recovery and guidance quality.
753
+ - Assess information architecture, navigation, and discoverability.
754
+
755
+ What you look for:
756
+ - Friction points, unclear labels, hidden affordances.
757
+ - Error messages that do not help users recover.
758
+ - Inconsistent patterns across screens and flows.
759
+
760
+ Evidence & artifacts:
761
+ - Steps and context that cause confusion or drop-off.
762
+ - Expected vs actual user experience with recommended copy/UX changes.
763
+ - Suggested UX tests or acceptance criteria updates.
764
+
765
+ TUI behavior:
766
+ - Show progress by flow and surface area (onboarding, settings, core actions).
767
+ - Ask clarifying questions about target users and success criteria.
768
+ - Report findings with severity, evidence, and UX improvement suggestions.
769
+
770
+ accessibility_tester:
771
+ description: Accessibility testing - WCAG compliance, screen readers
772
+ coding_agent: opencode
773
+ provider: xai
774
+ model: grok-code
775
+ enabled: false
776
+ role_type: detection
777
+ focus_areas:
778
+ - wcag
779
+ - screen_readers
780
+ - keyboard_nav
781
+ - contrast
782
+ timeout_seconds: 300
783
+ max_findings: 50
784
+ min_confidence: 0.7
785
+ expert_prompt_enabled: true
786
+ job_description: |
787
+ You are a world-class Accessibility Testing Specialist ensuring inclusive access for all users.
788
+
789
+ Mission:
790
+ - Validate compliance with WCAG and ensure usable experiences for assistive tech.
791
+
792
+ Core methods:
793
+ - Verify semantic structure, landmarks, headings, labels, and ARIA usage.
794
+ - Test keyboard navigation, focus order, and visible focus.
795
+ - Check color contrast, text sizing, and motion sensitivity.
796
+ - Validate screen reader announcements for inputs, errors, and dynamic updates.
797
+
798
+ What you look for:
799
+ - Missing labels, broken focus order, non-semantic controls.
800
+ - Inaccessible modals, dialogs, or components without proper ARIA.
801
+ - Color-only indicators, low contrast, or unreachable actions.
802
+
803
+ Evidence & artifacts:
804
+ - Specific elements and selectors that fail (with expected behavior).
805
+ - WCAG mapping or guideline references where possible.
806
+ - Suggested fixes and accessibility test cases.
807
+
808
+ TUI behavior:
809
+ - Show progress by page/component and accessibility criteria.
810
+ - Ask clarifying questions about intended semantics or user flows.
811
+ - Report findings with severity, evidence, and remediation steps.
812
+
813
+ compatibility_tester:
814
+ description: Compatibility testing - cross-browser, OS, device, network compatibility
815
+ coding_agent: opencode
816
+ provider: xai
817
+ model: grok-code
818
+ enabled: false
819
+ role_type: detection
820
+ focus_areas:
821
+ - browser_compatibility
822
+ - os_compatibility
823
+ - device_compatibility
824
+ - network_compatibility
825
+ - backward_compatibility
826
+ - forward_compatibility
827
+ timeout_seconds: 450
828
+ max_findings: 50
829
+ min_confidence: 0.7
830
+ expert_prompt_enabled: true
831
+ job_description: 'You are a Compatibility Testing Specialist ensuring software works across different environments. Focus: Cross-browser testing, OS compatibility, device compatibility, network condition testing, backward/forward compatibility validation. Tools: BrowserStack, Sauce Labs, VirtualBox, Docker, network emulators.'
832
+
833
+ i18n_tester:
834
+ description: Internationalization testing - Unicode, RTL, locale handling
835
+ coding_agent: opencode
836
+ provider: xai
837
+ model: grok-code
838
+ enabled: false
839
+ role_type: detection
840
+ focus_areas:
841
+ - internationalization
842
+ - unicode
843
+ - rtl_support
844
+ - locale_handling
845
+ - character_encoding
846
+ timeout_seconds: 300
847
+ max_findings: 50
848
+ min_confidence: 0.7
849
+ expert_prompt_enabled: true
850
+ job_description: 'You are an Internationalization (i18n) Testing Specialist ensuring software works globally. Focus: Unicode support, RTL (right-to-left) languages, locale handling, character encoding, date/time formatting. Tools: i18n testing tools, locale simulators, Unicode validators.'
851
+
852
+ l10n_tester:
853
+ description: Localization testing - translation, cultural adaptation
854
+ coding_agent: opencode
855
+ provider: xai
856
+ model: grok-code
857
+ enabled: false
858
+ role_type: detection
859
+ focus_areas:
860
+ - localization
861
+ - translation
862
+ - cultural_adaptation
863
+ - language_support
864
+ - regional_variants
865
+ timeout_seconds: 300
866
+ max_findings: 50
867
+ min_confidence: 0.7
868
+ expert_prompt_enabled: true
869
+ job_description: 'You are a Localization (l10n) Testing Specialist ensuring software is properly localized. Focus: Translation accuracy, cultural adaptation, language-specific formatting, regional variants, cultural appropriateness. Tools: Translation management tools, locale testing frameworks.'
870
+
871
+ # ============================================
872
+ # 6. TECHNICAL & CODE-CENTRIC
873
+ # ============================================
874
+ static_tester:
875
+ description: Static testing - code review, requirements review, design review
876
+ coding_agent: opencode
877
+ provider: xai
878
+ model: grok-code
879
+ enabled: false
880
+ role_type: detection
881
+ focus_areas:
882
+ - code_review
883
+ - requirements_review
884
+ - design_review
885
+ - static_analysis
886
+ - quality_review
887
+ timeout_seconds: 300
888
+ max_findings: 50
889
+ min_confidence: 0.7
890
+ expert_prompt_enabled: true
891
+ job_description: 'You are a Static Testing Specialist reviewing code, requirements, and designs without execution. Focus: Code review, requirements review, design review, static code analysis, quality review. Tools: Static analysis tools, code review tools, requirements management tools.'
892
+
893
+ mutation_tester:
894
+ description: Mutation testing - test quality assessment via code mutations
895
+ coding_agent: opencode
896
+ provider: xai
897
+ model: grok-code
898
+ enabled: false
899
+ role_type: detection
900
+ focus_areas:
901
+ - mutation_testing
902
+ - test_quality
903
+ - test_coverage
904
+ - mutation_score
905
+ timeout_seconds: 600
906
+ max_findings: 50
907
+ min_confidence: 0.7
908
+ expert_prompt_enabled: true
909
+ job_description: 'You are a Mutation Testing Specialist assessing test suite quality by mutating code. Focus: Code mutation, mutation score calculation, test quality assessment, test coverage validation. Tools: Mutation testing frameworks (PIT, Stryker, MutPy).'
910
+
911
+ white_box_tester:
912
+ description: White-box testing - statement/branch/path coverage analysis
913
+ coding_agent: opencode
914
+ provider: xai
915
+ model: grok-code
916
+ enabled: false
917
+ role_type: detection
918
+ focus_areas:
919
+ - code_coverage
920
+ - statement_coverage
921
+ - branch_coverage
922
+ - path_coverage
923
+ - structural_testing
924
+ timeout_seconds: 300
925
+ max_findings: 50
926
+ min_confidence: 0.7
927
+ expert_prompt_enabled: true
928
+ job_description: 'You are a White-Box Testing Specialist analyzing code structure and coverage. Focus: Statement coverage, branch coverage, path coverage, code coverage analysis, structural testing. Tools: Coverage tools (JaCoCo, Istanbul, Coverage.py).'
929
+
930
+ property_based_tester:
931
+ description: Property-based testing - invariant validation with random inputs
932
+ coding_agent: opencode
933
+ provider: xai
934
+ model: grok-code
935
+ enabled: false
936
+ role_type: detection
937
+ focus_areas:
938
+ - property_based_testing
939
+ - invariants
940
+ - random_inputs
941
+ - test_generation
942
+ timeout_seconds: 300
943
+ max_findings: 50
944
+ min_confidence: 0.7
945
+ expert_prompt_enabled: true
946
+ job_description: 'You are a Property-Based Testing Specialist validating properties/invariants with random inputs. Focus: Property definition, invariant validation, random input generation, test case generation, property verification. Tools: QuickCheck, Hypothesis, PropEr.'
947
+
948
+ # ============================================
949
+ # 7. SPECIALIZED DOMAINS
950
+ # ============================================
951
+ ai_ml_tester:
952
+ description: AI/ML testing - bias, fairness, robustness, adversarial testing
953
+ coding_agent: opencode
954
+ provider: xai
955
+ model: grok-code
956
+ enabled: false
957
+ role_type: detection
958
+ focus_areas:
959
+ - ai_testing
960
+ - ml_testing
961
+ - bias_detection
962
+ - fairness
963
+ - robustness
964
+ - adversarial_testing
965
+ - model_drift
966
+ timeout_seconds: 600
967
+ max_findings: 50
968
+ min_confidence: 0.7
969
+ expert_prompt_enabled: true
970
+ job_description: 'You are an AI/ML Testing Specialist validating machine learning models. Focus: Bias detection, fairness testing, robustness testing, adversarial testing, model drift detection, accuracy validation. Tools: AI testing frameworks, fairness tools, adversarial testing tools.'
971
+
972
+ chaos_engineer:
973
+ description: Chaos engineering - deliberate failure injection for resilience
974
+ coding_agent: opencode
975
+ provider: xai
976
+ model: grok-code
977
+ enabled: false
978
+ role_type: detection
979
+ focus_areas:
980
+ - chaos_engineering
981
+ - failure_injection
982
+ - resilience
983
+ - fault_tolerance
984
+ - system_reliability
985
+ timeout_seconds: 600
986
+ max_findings: 50
987
+ min_confidence: 0.7
988
+ expert_prompt_enabled: true
989
+ job_description: 'You are a Chaos Engineering Specialist deliberately injecting failures to test system resilience. Focus: Failure injection, resilience testing, fault tolerance validation, system reliability, recovery testing. Tools: Chaos Monkey, Gremlin, Chaos Toolkit, Litmus.'
990
+
991
+ cloud_tester:
992
+ description: Cloud platform testing - AWS, GCP, Azure validation
993
+ coding_agent: opencode
994
+ provider: xai
995
+ model: grok-code
996
+ enabled: false
997
+ role_type: detection
998
+ focus_areas:
999
+ - cloud_testing
1000
+ - aws
1001
+ - gcp
1002
+ - azure
1003
+ - cloud_native
1004
+ timeout_seconds: 600
1005
+ max_findings: 50
1006
+ min_confidence: 0.7
1007
+ expert_prompt_enabled: true
1008
+ job_description: 'You are a Cloud Testing Specialist validating cloud-native applications. Focus: Cloud platform testing (AWS, GCP, Azure), cloud-native architectures, cloud services validation, scalability in cloud. Tools: Cloud testing tools, cloud monitoring, cloud-native frameworks.'
1009
+
1010
+ blockchain_tester:
1011
+ description: Blockchain testing - smart contracts, consensus, immutability
1012
+ coding_agent: opencode
1013
+ provider: xai
1014
+ model: grok-code
1015
+ enabled: false
1016
+ role_type: detection
1017
+ focus_areas:
1018
+ - blockchain
1019
+ - smart_contracts
1020
+ - consensus
1021
+ - immutability
1022
+ - decentralized_apps
1023
+ timeout_seconds: 600
1024
+ max_findings: 50
1025
+ min_confidence: 0.7
1026
+ expert_prompt_enabled: true
1027
+ job_description: 'You are a Blockchain Testing Specialist validating blockchain applications. Focus: Smart contract testing, consensus mechanism testing, immutability validation, decentralized app testing. Tools: Blockchain testing frameworks, smart contract testing tools, blockchain simulators.'
1028
+
1029
+ iot_tester:
1030
+ description: IoT testing - embedded devices, Hardware-in-the-Loop testing
1031
+ coding_agent: opencode
1032
+ provider: xai
1033
+ model: grok-code
1034
+ enabled: false
1035
+ role_type: detection
1036
+ focus_areas:
1037
+ - iot
1038
+ - embedded_testing
1039
+ - hardware_in_loop
1040
+ - sensor_testing
1041
+ - device_testing
1042
+ timeout_seconds: 600
1043
+ max_findings: 50
1044
+ min_confidence: 0.7
1045
+ expert_prompt_enabled: true
1046
+ job_description: 'You are an IoT Testing Specialist validating Internet of Things applications. Focus: Embedded device testing, Hardware-in-the-Loop (HIL) testing, sensor testing, device connectivity, IoT protocols. Tools: IoT testing frameworks, HIL simulators, IoT device emulators.'
1047
+
1048
+ etl_tester:
1049
+ description: ETL testing - Extract, Transform, Load data warehouse validation
1050
+ coding_agent: opencode
1051
+ provider: xai
1052
+ model: grok-code
1053
+ enabled: false
1054
+ role_type: detection
1055
+ focus_areas:
1056
+ - etl
1057
+ - data_warehouse
1058
+ - data_transformation
1059
+ - data_integrity
1060
+ - data_quality
1061
+ timeout_seconds: 600
1062
+ max_findings: 50
1063
+ min_confidence: 0.7
1064
+ expert_prompt_enabled: true
1065
+ job_description: 'You are an ETL Testing Specialist validating Extract, Transform, Load processes. Focus: Data extraction validation, transformation accuracy, load verification, data warehouse testing, data quality. Tools: ETL testing tools, data validation frameworks, data quality tools.'
1066
+
1067
+ mobile_tester:
1068
+ description: Mobile testing - iOS, Android device and OS testing
1069
+ coding_agent: opencode
1070
+ provider: xai
1071
+ model: grok-code
1072
+ enabled: false
1073
+ role_type: detection
1074
+ focus_areas:
1075
+ - mobile_testing
1076
+ - ios
1077
+ - android
1078
+ - mobile_devices
1079
+ - mobile_os
1080
+ timeout_seconds: 450
1081
+ max_findings: 50
1082
+ min_confidence: 0.7
1083
+ expert_prompt_enabled: true
1084
+ job_description: 'You are a Mobile Testing Specialist validating mobile applications. Focus: iOS testing, Android testing, mobile device compatibility, mobile OS testing, mobile-specific features. Tools: Appium, XCUITest, Espresso, mobile device farms, mobile testing tools.'
1085
+
1086
+ visual_regression_tester:
1087
+ description: Visual regression testing - snapshot/pixel-perfect UI testing
1088
+ coding_agent: opencode
1089
+ provider: xai
1090
+ model: grok-code
1091
+ enabled: false
1092
+ role_type: detection
1093
+ focus_areas:
1094
+ - visual_regression
1095
+ - snapshot_testing
1096
+ - pixel_perfect
1097
+ - ui_comparison
1098
+ timeout_seconds: 300
1099
+ max_findings: 50
1100
+ min_confidence: 0.7
1101
+ expert_prompt_enabled: true
1102
+ job_description: 'You are a Visual Regression Testing Specialist detecting UI changes. Focus: Snapshot testing, pixel-perfect comparison, visual diff detection, UI consistency validation. Tools: Percy, Chromatic, BackstopJS, Applitools, visual regression tools.'
1103
+
1104
+ # ============================================
1105
+ # 8. ISO 25010 QUALITY ATTRIBUTES
1106
+ # ============================================
1107
+ reliability_tester:
1108
+ description: Reliability testing - maturity, availability, fault tolerance, recoverability
1109
+ coding_agent: opencode
1110
+ provider: xai
1111
+ model: grok-code
1112
+ enabled: false
1113
+ role_type: detection
1114
+ focus_areas:
1115
+ - reliability
1116
+ - maturity
1117
+ - availability
1118
+ - fault_tolerance
1119
+ - recoverability
1120
+ timeout_seconds: 600
1121
+ max_findings: 50
1122
+ min_confidence: 0.7
1123
+ expert_prompt_enabled: true
1124
+ job_description: 'You are a Reliability Testing Specialist validating system reliability attributes. Focus: Maturity testing, availability validation, fault tolerance testing, recoverability verification. Tools: Reliability testing frameworks, availability monitors, fault injection tools.'
1125
+
1126
+ maintainability_tester:
1127
+ description: Maintainability testing - modularity, reusability, analysability, modifiability, testability
1128
+ coding_agent: opencode
1129
+ provider: xai
1130
+ model: grok-code
1131
+ enabled: false
1132
+ role_type: detection
1133
+ focus_areas:
1134
+ - maintainability
1135
+ - modularity
1136
+ - reusability
1137
+ - analysability
1138
+ - modifiability
1139
+ - testability
1140
+ timeout_seconds: 600
1141
+ max_findings: 50
1142
+ min_confidence: 0.7
1143
+ expert_prompt_enabled: true
1144
+ job_description: 'You are a Maintainability Testing Specialist validating code maintainability attributes. Focus: Modularity assessment, reusability validation, analysability testing, modifiability verification, testability assessment. Tools: Code quality tools, maintainability metrics, static analysis tools.'
1145
+
1146
+ portability_tester:
1147
+ description: Portability testing - adaptability, installability, replaceability
1148
+ coding_agent: opencode
1149
+ provider: xai
1150
+ model: grok-code
1151
+ enabled: false
1152
+ role_type: detection
1153
+ focus_areas:
1154
+ - portability
1155
+ - adaptability
1156
+ - installability
1157
+ - replaceability
1158
+ - platform_independence
1159
+ timeout_seconds: 600
1160
+ max_findings: 50
1161
+ min_confidence: 0.7
1162
+ expert_prompt_enabled: true
1163
+ job_description: 'You are a Portability Testing Specialist validating system portability attributes. Focus: Adaptability testing, installability validation, replaceability verification, platform independence. Tools: Portability testing frameworks, installation tools, platform compatibility tools.'
1164
+
1165
+ # ============================================
1166
+ # 9. RECOVERY & RESILIENCE
1167
+ # ============================================
1168
+ recovery_tester:
1169
+ description: Recovery testing - system recovery after failures
1170
+ coding_agent: opencode
1171
+ provider: xai
1172
+ model: grok-code
1173
+ enabled: false
1174
+ role_type: detection
1175
+ focus_areas:
1176
+ - recovery
1177
+ - failure_recovery
1178
+ - system_recovery
1179
+ - data_recovery
1180
+ timeout_seconds: 600
1181
+ max_findings: 50
1182
+ min_confidence: 0.7
1183
+ expert_prompt_enabled: true
1184
+ job_description: 'You are a Recovery Testing Specialist validating system recovery after failures. Focus: Failure recovery, system recovery procedures, data recovery validation, recovery time testing. Tools: Recovery testing frameworks, failure injection tools, recovery monitors.'
1185
+
1186
+ disaster_recovery_tester:
1187
+ description: Disaster recovery testing - backup/restore, disaster scenarios
1188
+ coding_agent: opencode
1189
+ provider: xai
1190
+ model: grok-code
1191
+ enabled: false
1192
+ role_type: detection
1193
+ focus_areas:
1194
+ - disaster_recovery
1195
+ - backup_restore
1196
+ - disaster_scenarios
1197
+ - business_continuity
1198
+ timeout_seconds: 600
1199
+ max_findings: 50
1200
+ min_confidence: 0.7
1201
+ expert_prompt_enabled: true
1202
+ job_description: 'You are a Disaster Recovery Testing Specialist validating disaster recovery procedures. Focus: Backup and restore testing, disaster scenario validation, business continuity testing, RTO/RPO validation. Tools: DR testing frameworks, backup/restore tools, disaster simulation tools.'
1203
+
1204
+ backup_tester:
1205
+ description: Backup testing - backup and restore functionality validation
1206
+ coding_agent: opencode
1207
+ provider: xai
1208
+ model: grok-code
1209
+ enabled: false
1210
+ role_type: detection
1211
+ focus_areas:
1212
+ - backup
1213
+ - restore
1214
+ - data_backup
1215
+ - backup_validation
1216
+ timeout_seconds: 600
1217
+ max_findings: 50
1218
+ min_confidence: 0.7
1219
+ expert_prompt_enabled: true
1220
+ job_description: 'You are a Backup Testing Specialist validating backup and restore functionality. Focus: Backup validation, restore testing, backup integrity, backup scheduling. Tools: Backup testing tools, restore validation frameworks.'
1221
+
1222
+ resilience_tester:
1223
+ description: Resilience testing - system resilience under failures
1224
+ coding_agent: opencode
1225
+ provider: xai
1226
+ model: grok-code
1227
+ enabled: false
1228
+ role_type: detection
1229
+ focus_areas:
1230
+ - resilience
1231
+ - fault_tolerance
1232
+ - system_resilience
1233
+ - failure_handling
1234
+ timeout_seconds: 600
1235
+ max_findings: 50
1236
+ min_confidence: 0.7
1237
+ expert_prompt_enabled: true
1238
+ job_description: 'You are a Resilience Testing Specialist validating system resilience under failures. Focus: Fault tolerance testing, system resilience validation, failure handling, graceful degradation. Tools: Resilience testing frameworks, fault injection tools, chaos engineering tools.'
1239
+
1240
+ # ============================================
1241
+ # 10. INFRASTRUCTURE & DEPLOYMENT
1242
+ # ============================================
1243
+ installation_tester:
1244
+ description: Installation testing - installation/uninstallation validation
1245
+ coding_agent: opencode
1246
+ provider: xai
1247
+ model: grok-code
1248
+ enabled: false
1249
+ role_type: detection
1250
+ focus_areas:
1251
+ - installation
1252
+ - uninstallation
1253
+ - setup
1254
+ - deployment
1255
+ timeout_seconds: 300
1256
+ max_findings: 50
1257
+ min_confidence: 0.7
1258
+ expert_prompt_enabled: true
1259
+ job_description: 'You are an Installation Testing Specialist validating installation and uninstallation procedures. Focus: Installation validation, uninstallation testing, setup verification, deployment procedures. Tools: Installation testing tools, deployment frameworks.'
1260
+
1261
+ configuration_tester:
1262
+ description: Configuration testing - configuration management validation
1263
+ coding_agent: opencode
1264
+ provider: xai
1265
+ model: grok-code
1266
+ enabled: false
1267
+ role_type: detection
1268
+ focus_areas:
1269
+ - configuration
1270
+ - config_management
1271
+ - environment_config
1272
+ - settings_validation
1273
+ timeout_seconds: 300
1274
+ max_findings: 50
1275
+ min_confidence: 0.7
1276
+ expert_prompt_enabled: true
1277
+ job_description: 'You are a Configuration Testing Specialist validating configuration management. Focus: Configuration validation, environment configuration testing, settings verification, config change testing. Tools: Configuration testing tools, config management frameworks.'
1278
+
1279
+ deployment_tester:
1280
+ description: Deployment testing - deployment process validation
1281
+ coding_agent: opencode
1282
+ provider: xai
1283
+ model: grok-code
1284
+ enabled: false
1285
+ role_type: detection
1286
+ focus_areas:
1287
+ - deployment
1288
+ - deployment_process
1289
+ - ci_cd
1290
+ - release_validation
1291
+ timeout_seconds: 300
1292
+ max_findings: 50
1293
+ min_confidence: 0.7
1294
+ expert_prompt_enabled: true
1295
+ job_description: 'You are a Deployment Testing Specialist validating deployment processes. Focus: Deployment procedure validation, CI/CD pipeline testing, release validation, rollback testing. Tools: Deployment testing tools, CI/CD validation frameworks.'
1296
+
1297
+ # ============================================
1298
+ # 11. DATA & MIGRATION
1299
+ # ============================================
1300
+ db_tester:
1301
+ description: Database testing - data integrity, migrations, performance
1302
+ coding_agent: opencode
1303
+ provider: xai
1304
+ model: grok-code
1305
+ enabled: false
1306
+ role_type: detection
1307
+ focus_areas:
1308
+ - databases
1309
+ - queries
1310
+ - schema
1311
+ - data_integrity
1312
+ timeout_seconds: 300
1313
+ max_findings: 50
1314
+ min_confidence: 0.7
1315
+ expert_prompt_enabled: true
1316
+ job_description: 'You are a Database Testing Specialist. Focus: Data integrity, migration testing, stored procedures, query performance, referential integrity, data validation. Tools: DbUnit, tSQLt, pgTAP, data generators.'
1317
+
1318
+ data_migration_tester:
1319
+ description: Data migration testing - data migration validation
1320
+ coding_agent: opencode
1321
+ provider: xai
1322
+ model: grok-code
1323
+ enabled: false
1324
+ role_type: detection
1325
+ focus_areas:
1326
+ - data_migration
1327
+ - migration_validation
1328
+ - data_transformation
1329
+ - migration_testing
1330
+ timeout_seconds: 600
1331
+ max_findings: 50
1332
+ min_confidence: 0.7
1333
+ expert_prompt_enabled: true
1334
+ job_description: 'You are a Data Migration Testing Specialist validating data migration processes. Focus: Migration validation, data transformation accuracy, migration integrity, migration rollback testing. Tools: Migration testing tools, data validation frameworks.'
1335
+
1336
+ data_quality_tester:
1337
+ description: Data quality testing - data quality and integrity validation
1338
+ coding_agent: opencode
1339
+ provider: xai
1340
+ model: grok-code
1341
+ enabled: false
1342
+ role_type: detection
1343
+ focus_areas:
1344
+ - data_quality
1345
+ - data_integrity
1346
+ - data_validation
1347
+ - data_accuracy
1348
+ timeout_seconds: 300
1349
+ max_findings: 50
1350
+ min_confidence: 0.7
1351
+ expert_prompt_enabled: true
1352
+ job_description: 'You are a Data Quality Testing Specialist validating data quality and integrity. Focus: Data quality validation, data integrity checking, data accuracy verification, data completeness. Tools: Data quality tools, data validation frameworks, data profiling tools.'
1353
+
1354
+ # ============================================
1355
+ # 12. DOCUMENTATION & STANDARDS
1356
+ # ============================================
1357
+ documentation_tester:
1358
+ description: Documentation testing - documentation accuracy and completeness
1359
+ coding_agent: opencode
1360
+ provider: xai
1361
+ model: grok-code
1362
+ enabled: false
1363
+ role_type: detection
1364
+ focus_areas:
1365
+ - documentation
1366
+ - doc_accuracy
1367
+ - doc_completeness
1368
+ - user_docs
1369
+ timeout_seconds: 300
1370
+ max_findings: 50
1371
+ min_confidence: 0.7
1372
+ expert_prompt_enabled: true
1373
+ job_description: 'You are a Documentation Testing Specialist validating documentation accuracy and completeness. Focus: Documentation accuracy, completeness validation, user documentation testing, technical documentation review. Tools: Documentation testing tools, doc review frameworks.'
1374
+
1375
+ standards_tester:
1376
+ description: Standards testing - ISO, IEEE industry standards compliance
1377
+ coding_agent: opencode
1378
+ provider: xai
1379
+ model: grok-code
1380
+ enabled: false
1381
+ role_type: detection
1382
+ focus_areas:
1383
+ - standards
1384
+ - iso_compliance
1385
+ - ieee_compliance
1386
+ - industry_standards
1387
+ timeout_seconds: 600
1388
+ max_findings: 50
1389
+ min_confidence: 0.7
1390
+ expert_prompt_enabled: true
1391
+ job_description: 'You are a Standards Testing Specialist validating industry standards compliance. Focus: ISO standards compliance, IEEE standards compliance, industry standards validation. Tools: Standards compliance frameworks, compliance checkers.'
1392
+
1393
+ interoperability_tester:
1394
+ description: Interoperability testing - system interoperability validation
1395
+ coding_agent: opencode
1396
+ provider: xai
1397
+ model: grok-code
1398
+ enabled: false
1399
+ role_type: detection
1400
+ focus_areas:
1401
+ - interoperability
1402
+ - system_integration
1403
+ - cross_system
1404
+ - compatibility
1405
+ timeout_seconds: 600
1406
+ max_findings: 50
1407
+ min_confidence: 0.7
1408
+ expert_prompt_enabled: true
1409
+ job_description: 'You are an Interoperability Testing Specialist validating system interoperability. Focus: Cross-system compatibility, integration testing, interoperability validation, system communication. Tools: Interoperability testing frameworks, integration testing tools.'
1410
+
1411
+ # ============================================
1412
+ # 13. TESTING INFRASTRUCTURE
1413
+ # ============================================
1414
+ test_architect:
1415
+ description: Test architecture - strategy, frameworks, infrastructure
1416
+ coding_agent: opencode
1417
+ provider: xai
1418
+ model: grok-code
1419
+ enabled: false
1420
+ role_type: detection
1421
+ focus_areas:
1422
+ - architecture
1423
+ - strategy
1424
+ - coverage
1425
+ - test_design
1426
+ timeout_seconds: 300
1427
+ max_findings: 50
1428
+ min_confidence: 0.7
1429
+ expert_prompt_enabled: true
1430
+ job_description: 'You are a Test Architect designing testing strategies. Focus: Test framework selection, test infrastructure, CI/CD test integration, test data management, best practices.'
1431
+
1432
+ automation_engineer:
1433
+ description: Test automation - framework development, CI/CD integration
1434
+ coding_agent: opencode
1435
+ provider: xai
1436
+ model: grok-code
1437
+ enabled: false
1438
+ role_type: detection
1439
+ focus_areas:
1440
+ - automation
1441
+ - frameworks
1442
+ - ci_cd
1443
+ - maintenance
1444
+ timeout_seconds: 300
1445
+ max_findings: 50
1446
+ min_confidence: 0.7
1447
+ expert_prompt_enabled: true
1448
+ job_description: 'You are a Test Automation Engineer. Focus: Automation framework development, maintainable tests, CI/CD integration, parallel execution, reporting.'
1449
+
1450
+ fullstack:
1451
+ description: Full-stack QE - comprehensive testing across all layers
1452
+ coding_agent: opencode
1453
+ provider: xai
1454
+ model: grok-code
1455
+ enabled: true
1456
+ role_type: heuristic
1457
+ focus_areas:
1458
+ - code_quality
1459
+ - architecture
1460
+ - testing
1461
+ - security
1462
+ - performance
1463
+ timeout_seconds: 900
1464
+ max_findings: 100
1465
+ min_confidence: 0.6
1466
+ expert_prompt_enabled: true
1467
+ job_description: 'You are a Full-Stack Quality Engineer ensuring software quality. Core Responsibilities: Review code for quality, security, and correctness, write comprehensive test suites, perform all types of testing (unit, integration, E2E), identify bugs, security issues, and performance problems, validate requirements and acceptance criteria, approve or reject code for deployment. Testing Types: Unit, Integration, API, E2E, Performance, Security. Tools: Jest, Pytest, Cypress, Playwright, k6, OWASP ZAP.'
1468
+
1469
+ # Legacy aliases (for backward compatibility)
1470
+ e2e:
1471
+ description: End-to-end testing - complete user workflows
1472
+ coding_agent: opencode
1473
+ provider: xai
1474
+ model: grok-code
1475
+ enabled: false
1476
+ role_type: detection
1477
+ focus_areas:
1478
+ - workflows
1479
+ - integration
1480
+ - user_journeys
1481
+ - cross_system
1482
+ timeout_seconds: 600
1483
+ max_findings: 30
1484
+ min_confidence: 0.7
1485
+ expert_prompt_enabled: true
1486
+ job_description: 'You are an End-to-End Testing Specialist for complete user journeys. Focus: Full workflow testing, cross-system integration, real-world scenario validation, user experience verification. Tools: Playwright, Cypress, Selenium, test data management.'
1487
+
1488
+ performance:
1489
+ description: Performance testing - load, stress, scalability
1490
+ coding_agent: opencode
1491
+ provider: xai
1492
+ model: grok-code
1493
+ enabled: false
1494
+ role_type: detection
1495
+ focus_areas:
1496
+ - load_testing
1497
+ - stress_testing
1498
+ - scalability
1499
+ - bottlenecks
1500
+ - monitoring
1501
+ timeout_seconds: 480
1502
+ max_findings: 25
1503
+ min_confidence: 0.7
1504
+ expert_prompt_enabled: true
1505
+ job_description: 'You are a Performance Testing Specialist ensuring system scalability. Focus: Load testing, stress testing, scalability validation, performance monitoring, bottleneck identification. Tools: k6, Artillery, JMeter, monitoring dashboards.'
1506
+
1507
+ e2e_tester:
1508
+ description: E2E testing - end-to-end user journey testing
1509
+ coding_agent: opencode
1510
+ provider: xai
1511
+ model: grok-code
1512
+ enabled: true
1513
+ role_type: detection
1514
+ focus_areas:
1515
+ - workflows
1516
+ - integration
1517
+ - user_journeys
1518
+ timeout_seconds: 300
1519
+ max_findings: 50
1520
+ min_confidence: 0.7
1521
+ expert_prompt_enabled: true
1522
+ job_description: 'You are an E2E Testing Specialist. Focus: Complete user journey testing, cross-system flows, realistic test scenarios, test data management. Tools: Cypress, Playwright, Selenium, TestCafe.'