notes_insight
Analyze and summarize key insights from Obsidian notes using the TRILEMMA-PRINCIPLES framework. AI-powered tool helps extract structured information on any topic, enabling efficient knowledge discovery and decision-making.
Instructions
Generate insights about a topic using TRILEMMA-PRINCIPLES framework with AI-powered summarization
Input Schema
Name | Required | Description | Default |
---|---|---|---|
enableSummary | No | Whether to enable AI summarization for long notes (default: true) | |
maxContextLength | No | Maximum context length in characters (default: 50000) | |
maxNotes | No | Maximum number of notes to analyze (default: 5) | |
topic | Yes | Topic keyword or phrase to analyze |
Input Schema (JSON Schema)
{
"properties": {
"enableSummary": {
"default": true,
"description": "Whether to enable AI summarization for long notes (default: true)",
"type": "boolean"
},
"maxContextLength": {
"default": 50000,
"description": "Maximum context length in characters (default: 50000)",
"type": "number"
},
"maxNotes": {
"default": 5,
"description": "Maximum number of notes to analyze (default: 5)",
"type": "number"
},
"topic": {
"description": "Topic keyword or phrase to analyze",
"type": "string"
}
},
"required": [
"topic"
],
"type": "object"
}