@@ -170,7 +170,7 @@ Your mission is to deliver a comprehensive code investigation report that fully
170170 - Partial understanding: Medium confidence
171171 - Ambiguous implementation: Low confidence
172172
173- 3 . ** Generate Structured Output :** (See schema below)
173+ 3 . ** Generate Report :** Produce comprehensive code investigation findings
174174
175175## 📚 Repository Registry
176176
@@ -221,161 +221,6 @@ Only clone repositories that are:
2212212. Relevant to the current QUESTION
2222223. Necessary for complete understanding
223223
224- ## 📋 Structured Output Schema (YAML)
225-
226- ` ` ` yaml
227- question : <verbatim QUESTION from orchestrator>
228- context :
229- business_intent : <extracted from CONTEXT>
230- technical_scope : <inferred scope>
231-
232- repositories :
233- - name : <repo-name>
234- path : ./_repos/<repo-name>
235- commit : <short-hash>
236- status : cloned|updated|failed
237- files_examined : <count>
238-
239- search :
240- terms : [list, of, search, terms]
241- patterns : [grep, patterns, used]
242-
243- discovered_signals :
244- entry_points :
245- - path : <file-path>
246- lines : [start-end]
247- type : main|api|event|configuration
248- description : <what this entry point does>
249-
250- key_components :
251- - name : <component-name>
252- path : <file-path>
253- lines : [start-end]
254- type : class|function|module|service
255- responsibility : <what it does>
256-
257- behavior_analysis :
258- overview : |
259- <Two-paragraph plain description of current behavior>
260-
261- execution_flow :
262- inputs :
263- - source : <where input comes from>
264- type : <data type/format>
265- validation : <how it's validated>
266-
267- processing_steps :
268- - step : 1
269- location : <file:lines>
270- description : <what happens>
271- data_transformation : <how data changes>
272-
273- outputs :
274- - destination : <where output goes>
275- type : <data type/format>
276- side_effects : [list]
277-
278- configuration :
279- files :
280- - path : <config-file>
281- relevant_sections : [section-names]
282-
283- parameters :
284- - name : <param-name>
285- location : <file:lines>
286- default : <default-value>
287- effect : <how this influences behavior>
288-
289- error_handling :
290- - condition : <error-condition>
291- location : <file:lines>
292- handling : <how it's handled>
293- recovery : <recovery strategy>
294-
295- concurrency :
296- threading_model : <sync|async|concurrent>
297- synchronization : [mechanisms]
298- race_conditions : [potential issues]
299-
300- dependencies :
301- internal :
302- - from : <module>
303- to : <module>
304- type : import|inherit|compose|inject
305- purpose : <why this dependency exists>
306-
307- external :
308- - library : <name>
309- version : <if found>
310- usage : <how it's used>
311- location : <where imported>
312-
313- impact_analysis :
314- affected_modules :
315- - path : <file-path>
316- impact_level : direct|indirect
317- reason : <why affected>
318-
319- invariants :
320- - invariant : <what must remain true>
321- enforced_by : <mechanism>
322- location : <file:lines>
323-
324- risks :
325- - risk : <potential issue>
326- likelihood : high|medium|low
327- mitigation : <how to avoid>
328-
329- change_complexity :
330- estimate : trivial|simple|moderate|complex|very_complex
331- factors : [list of complicating factors]
332-
333- evidence :
334- files_read :
335- - path : <file-path>
336- lines : [start-end]
337- purpose : <why this file was examined>
338- key_findings : [list]
339-
340- grep_results :
341- - pattern : <regex-pattern>
342- matches : <count>
343- relevant_files : [paths]
344-
345- test_coverage :
346- - test_file : <path>
347- covers : <what it tests>
348- insights : <what tests reveal about behavior>
349-
350- open_questions :
351- - question : <specific question needing clarification>
352- blocking : yes|no
353- suggested_investigation : <next steps>
354-
355- recommendations :
356- implementation_approach : |
357- <If change is needed, high-level approach>
358-
359- further_investigation :
360- - area : <what to investigate>
361- reason : <why it matters>
362- method : <how to investigate>
363-
364- confidence : 0.95 # 0.00-1.00 scale
365- confidence_factors :
366- positive :
367- - <what increased confidence>
368- negative :
369- - <what reduced confidence>
370-
371- metadata :
372- execution_time_ms : <integer>
373- files_read : <count>
374- grep_operations : <count>
375- total_lines_analyzed : <approximate>
376- repository_size_mb : <total size>
377- ` ` ` yaml
378-
379224## ⚡ Performance & Concurrency Guidelines
380225
381226### 🚀 CRITICAL: CONCURRENT EXECUTION FOR ALL ACTIONS
0 commit comments