deliberate
Facilitates structured decision-making through stages: orient for context, reason for analysis, and acknowledge for confirmation. Input markdown to track and refine cognitive processes.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | Free‑form markdown for the selected stage. Returned verbatim so you can verify state and plan next actions. | |
stage | Yes | Stage selector. Start with 'orient', use 'reason' before decisions, and 'acknowledge' for brief confirmations. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"content": {
"description": "Free‑form markdown for the selected stage. Returned verbatim so you can verify state and plan next actions.",
"type": "string"
},
"stage": {
"description": "Stage selector. Start with 'orient', use 'reason' before decisions, and 'acknowledge' for brief confirmations.",
"enum": [
"orient",
"reason",
"acknowledge"
],
"type": "string"
}
},
"required": [
"stage",
"content"
],
"type": "object"
}