feat(mcp-server): suggest recursive section content retrieval

Add recursive:true flag to ask262_get_section_content call to retrieve nested sections.
This commit is contained in:
2026-04-14 19:29:34 +05:30
parent ad97aff10a
commit 0cab20d6e4
+1 -1
View File
@@ -229,7 +229,7 @@ I'll use one of these orchestration patterns:
PATTERN 1 - For "What happens when I run this code?" questions: PATTERN 1 - For "What happens when I run this code?" questions:
- Use ask262Debug.startImportant() and ask262Debug.stopImportant() in the code to mark only important sections. - Use ask262Debug.startImportant() and ask262Debug.stopImportant() in the code to mark only important sections.
- STEP 1: ask262_evaluate_in_engine262(code: markedCode) - STEP 1: ask262_evaluate_in_engine262(code: markedCode)
- STEP 2: ask262_get_section_content(sectionId: importantSections[0]) - STEP 2: ask262_get_section_content(sectionId: importantSections[0], recursive: true)
- Explain which spec sections were hit and why - Explain which spec sections were hit and why
PATTERN 2 - For "How does X work?" questions (e.g., "${question}"): PATTERN 2 - For "How does X work?" questions (e.g., "${question}"):