write_results_section
Generate results section templates for quantitative research papers using APA, ASA, or Econometrica formatting styles based on analysis type and findings.
Instructions
결과 섹션 작성 템플릿 생성
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| analysis_type | Yes | 분석 유형 | |
| results | Yes | 주요 결과 | |
| style | No | 스타일 |
Implementation Reference
- src/tools/index.ts:523-534 (registration)Registers the 'write_results_section' tool in the main tools array, including its name, description, and input schema definition.name: "write_results_section", description: "결과 섹션 작성 템플릿 생성", inputSchema: { type: "object", properties: { analysis_type: { type: "string", description: "분석 유형" }, results: { type: "object", description: "주요 결과" }, style: { type: "string", enum: ["apa", "asa", "econometrica"], description: "스타일" }, }, required: ["analysis_type", "results"], }, },
- src/tools/index.ts:1771-1777 (handler)The main handler function that implements the logic for the 'write_results_section' tool. It extracts analysis_type and style from args and returns a placeholder template response.function handleWriteResultsSection(args: Record<string, unknown>) { return { analysis_type: args.analysis_type, style: args.style, template: "Results section template based on analysis type and style guide" }; }
- src/tools/index.ts:858-859 (registration)Dispatches calls to the 'write_results_section' tool to its handler function within the central handleToolCall switch statement.case "write_results_section": return handleWriteResultsSection(args);
- src/tools/index.ts:525-533 (schema)Defines the input schema for the 'write_results_section' tool, specifying properties for analysis_type, results, and style with required fields.inputSchema: { type: "object", properties: { analysis_type: { type: "string", description: "분석 유형" }, results: { type: "object", description: "주요 결과" }, style: { type: "string", enum: ["apa", "asa", "econometrica"], description: "스타일" }, }, required: ["analysis_type", "results"], },