lotuswisdomContemplative reasoning tool. Use for complex problems needing multi-perspective understanding, contradictions requiring integration, or questions holding their own wisdom.
**Workflow:** Always start with tag='begin' (returns framework). Then continue with contemplation tags. Do NOT output wisdom until status='WISDOM_READY'.
**Tags:** begin (FIRST - receives framework), then: open/engage/express (process), examine/reflect/verify/refine/complete (meta-cognitive), recognize/transform/integrate/transcend/embody (non-dual), upaya/expedient/direct/gradual/sudden (skillful-means), meditate (pause).Input schema{
"type": "object",
"properties": {
"tag": {
"type": "string",
"enum": [
"begin",
"upaya",
"expedient",
"direct",
"gradual",
"sudden",
"recognize",
"transform",
"integrate",
"transcend",
"embody",
"examine",
"reflect",
"verify",
"refine",
"complete",
"open",
"engage",
"express",
"meditate"
],
"description": "Current processing technique (wisdom-domain tag)"
},
"content": {
"type": "string",
"minLength": 1,
"description": "Your contemplation for this step"
},
"stepNumber": {
"type": "integer",
"minimum": 1,
"default": 1,
"description": "Current step number"
},
"totalSteps": {
"type": "integer",
"minimum": 1,
"default": 5,
"description": "Estimated total steps needed (adjustable as you go)"
},
"nextStepNeeded": {
"type": "boolean",
"default": true,
"description": "Whether another step is needed"
},
"isMeditation": {
"type": "boolean",
"description": "Whether this step is a meditative pause"
},
"meditationDuration": {
"type": "integer",
"minimum": 1,
"maximum": 10,
"description": "Duration for the meditation pause in seconds (1-10)"
},
"previousJourney": {
"type": "string",
"description": "Pass the journey string from the previous response to maintain journey tracking (e.g. \"begin → open → examine\")."
}
},
"required": [
"tag",
"content"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}Output schema{
"type": "object",
"properties": {
"status": {
"type": "string"
},
"contemplation": {
"type": "string"
},
"welcome": {
"type": "string"
},
"currentStep": {
"type": "string"
},
"finalStep": {
"type": "string"
},
"wisdomDomain": {
"type": "string"
},
"journey": {
"type": "string"
},
"finalJourney": {
"type": "string"
},
"domainJourney": {
"type": "string"
},
"stepNumber": {
"type": "number"
},
"totalSteps": {
"type": "number"
},
"nextStepNeeded": {
"type": "boolean"
},
"processLength": {
"type": "number"
},
"journeyLength": {
"type": "number"
},
"processComplete": {
"type": "boolean"
},
"instruction": {
"type": "string"
},
"duration": {
"type": "number"
},
"prompt": {
"type": "string"
},
"steps": {
"type": "array",
"items": {
"type": "object",
"properties": {
"tag": {
"type": "string"
},
"domain": {
"type": "string"
},
"stepNumber": {
"type": "number"
},
"brief": {
"type": "string"
}
},
"required": [
"tag",
"stepNumber",
"brief"
],
"additionalProperties": false
}
}
},
"required": [
"status"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}Annotations{
"title": "Lotus Wisdom",
"readOnlyHint": true,
"destructiveHint": false,
"idempotentHint": true,
"openWorldHint": false
} | — | Read onlyNon-destructiveIdempotentClosed world | — |
lotuswisdom_summaryGet a summary of the current contemplative journeyInput schema{
"type": "object",
"properties": {
"previousJourney": {
"type": "string",
"description": "Pass the journey string from a previous response to reconstruct the current journey summary."
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}Output schema{
"type": "object",
"properties": {
"status": {
"type": "string"
},
"journeyLength": {
"type": "number"
},
"domainJourney": {
"type": "string"
},
"steps": {
"type": "array",
"items": {
"type": "object",
"properties": {
"tag": {
"type": "string"
},
"domain": {
"type": "string"
},
"stepNumber": {
"type": "number"
},
"brief": {
"type": "string"
}
},
"required": [
"tag",
"stepNumber",
"brief"
],
"additionalProperties": false
}
}
},
"required": [
"status",
"journeyLength",
"domainJourney",
"steps"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}Annotations{
"title": "Lotus Wisdom Journey Summary",
"readOnlyHint": true,
"destructiveHint": false,
"idempotentHint": true,
"openWorldHint": false
} | — | Read onlyNon-destructiveIdempotentClosed world | — |