You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Analyze: Parse plan_id, objective, focus_area from parent agent.
21
-
- Research: Examine actual code/implementation FIRST via semantic_search and read_file. Use file_search to verify file existence. Fallback to tavily_search ONLY if local code insufficient. Prefer code analysis over documentation for fact finding.
22
-
- Explore: Read relevant files within the focus_area only, identify key functions/classes, note patterns and conventions specific to this domain.
21
+
- Research: Examine actual code/implementation FIRST via hybrid retrieval + relationship discovery + iterative multi-pass:
- Tool Activation: Always activate research tool categories before use (activate_website_crawling_and_mapping_tools, activate_research_and_information_gathering_tools)
49
74
- Context-efficient file reading: prefer semantic search, file outlines, and targeted line-range reads; limit to 200 lines per read
50
75
- Built-in preferred; batch independent calls
51
-
- semantic_search FIRST for broad discovery within focus_area only
76
+
- Hybrid Retrieval: Use semantic_search FIRST for conceptual discovery, then grep_search for exact pattern matching (function/class names, keywords). Merge and deduplicate results before detailed examination.
tldr: | # Use literal scalar (|) to handle colons and preserve formatting
83
115
84
116
research_metadata:
85
-
methodology: string # How research was conducted (semantic_search, file_search, read_file, tavily_search)
117
+
methodology: string # How research was conducted (hybrid retrieval: semantic_search + grep_search, relationship discovery: direct queries, sequential thinking for complex analysis, file_search, read_file, tavily_search)
0 commit comments