lotuswisdom_summary
Summarize your contemplative journey using a structured wisdom framework that combines analytical thinking with intuitive insights.
Instructions
Get a summary of the current contemplative journey
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.ts:397-417 (handler)The core handler function for the lotuswisdom_summary tool. It generates a JSON summary of the current contemplative journey, including journey length, domain progression, and brief summaries of each step.public getJourneySummary(): { content: Array<{ type: string; text: string }> } { const domainJourney = this.thoughtProcess .map(step => step.wisdomDomain) .filter((domain, index, array) => index === 0 || domain !== array[index - 1]) .join(' → '); return { content: [{ type: "text", text: JSON.stringify({ journeyLength: this.thoughtProcess.length, domainJourney: domainJourney, steps: this.thoughtProcess.map(step => ({ tag: step.tag, domain: step.wisdomDomain, stepNumber: step.stepNumber, brief: step.content.substring(0, 50) + '...' })) }, null, 2) }] };
- server.ts:470-478 (schema)Schema definition for the lotuswisdom_summary tool, specifying no input parameters required.const JOURNEY_SUMMARY_TOOL: Tool = { name: "lotuswisdom_summary", description: "Get a summary of the current contemplative journey", inputSchema: { type: "object", properties: {}, required: [] } };
- server.ts:496-498 (registration)Registration of the lotuswisdom_summary tool in the list of available tools returned by ListToolsRequest.server.setRequestHandler(ListToolsRequestSchema, async () => ({ tools: [LOTUS_WISDOM_TOOL, JOURNEY_SUMMARY_TOOL], }));
- server.ts:501-505 (registration)Dispatch logic in CallToolRequest handler that routes calls to lotuswisdom_summary to the getJourneySummary method.if (request.params.name === "lotuswisdom") { return wisdomServer.processThought(request.params.arguments); } else if (request.params.name === "lotuswisdom_summary") { return wisdomServer.getJourneySummary(); }