@nbiish/cognitive-tools-mcp 0.3.11 → 0.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +2 -1
  2. package/build/index.js +112 -85
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @nbiish/gikendaasowin-aabajichiganan-mcp
2
2
 
3
- ᑭᑫᓐᑖᓱᐎᓐ ᐋᐸᒋᒋᑲᓇᓐ - Gikendaasowin Aabajichiganan - (Cognitive Tools v0.3.9): Provides a suite of advanced internal reasoning tools to guide an LLM agent in sophisticated problem-solving, emphasizing structured thought, planning, and self-correction.
3
+ ᑭᑫᓐᑖᓱᐎᓐ ᐋᐸᒋᒋᑲᓇᓐ - Gikendaasowin Aabajichiganan - (Cognitive Tools v0.6.1): Provides a suite of advanced internal reasoning tools to guide an LLM agent in sophisticated problem-solving, emphasizing structured thought, planning, and self-correction.
4
4
 
5
5
  Known as:
6
6
  - Anishinaabemowin: [`@nbiish/gikendaasowin-aabajichiganan-mcp`](https://www.npmjs.com/package/@nbiish/gikendaasowin-aabajichiganan-mcp)
@@ -189,6 +189,7 @@ Example Response:
189
189
 
190
190
  ## Version History
191
191
 
192
+ - **0.6.1**: Fixed tool naming issue for technical length limitation
192
193
  - **0.3.9**: Updated tool descriptions and fixed error handling to improve reliability
193
194
  - **0.3.6**: Updated repository URLs to point to gikendaasowin-aabajichiganan-mcp
194
195
  - **0.3.5**: Updated license link and repository URLs
package/build/index.js CHANGED
@@ -5,110 +5,134 @@ import { z } from "zod";
5
5
  // Create the MCP server
6
6
  const server = new McpServer({
7
7
  name: "gikendaasowin-aabajichiganan-mcp",
8
- version: "0.3.9", // Updated version
9
- description: "ᑭᑫᓐᑖᓱᐎᓐ ᐋᐸᒋᒋᑲᓇᓐ - Gikendaasowin Aabajichiganan - (Cognitive Tools v0.3.9): Provides a suite of advanced internal reasoning tools to guide an LLM agent in sophisticated problem-solving, emphasizing structured thought, planning, and self-correction."
8
+ // Version reflects novel tools and enhanced guidance
9
+ version: "0.6.0",
10
+ description: "ᑭᑫᓐᑖᓱᐎᓐ ᐋᐸᒋᒋᑲᓇᓐ - Gikendaasowin Aabajichiganan - (Cognitive Tools v0.6.0): SOTA internal reasoning suite for LLM agents. Features advanced deliberation (`think`), rapid checks (`quick_think`), explicit complexity assessment, context synthesis (`synthesize`), confidence gauging, planning, CoT, and reflection. Designed to maximize reliability, traceability, and performance on complex cognitive tasks, pushing beyond current research."
10
11
  });
11
- // --- Core Cognitive Tool ---
12
+ // --- Core Cognitive Deliberation Tools ---
12
13
  server.tool("think",
13
- // Enhanced Main Description: Emphasizes mandatory nature, purpose, and expected outcome (logged thought).
14
- "MANDATORY core cognitive step. Use this internal workspace for structured deliberation before ANY action or final response, AND after using ANY other cognitive tool. Logs your detailed thought process for analysis, planning, verification, risk assessment, and self-correction, ensuring traceable, robust, and compliant reasoning.", {
15
- // Enhanced Parameter Description: More explicit guidance on content and structure.
16
- thought: z.string().describe("Your detailed internal monologue and reasoning. Structure clearly (e.g., using headings like 'Analysis', 'Plan', 'Verification', 'Risk Assessment', 'Self-Correction'). Content MUST cover: 1) Deconstruction of request/situation, 2) Analysis of previous steps/tool outputs, 3) Formulation of next steps/plan, 4) Verification against constraints/policies, 5) Assessment of potential risks/edge cases, 6) Explicit self-correction if needed. Adapt structure logically but ensure comprehensive reasoning. This logs your thinking process.")
17
- },
18
- // Implementation: Correctly echoes the thought, as the tool's job is to log it.
19
- async ({ thought }) => {
20
- if (!thought || typeof thought !== 'string' || thought.trim().length === 0) { // Added trim check
21
- throw new Error('Invalid thought: Must be a non-empty string containing substantive reasoning.');
14
+ // Main Description: For High Cognitive Load situations.
15
+ "MANDATORY Cognitive Hub for **High Complexity/Uncertainty/Consequence/Novelty**. Use for deep analysis, planning, verification, risk assessment, self-correction, and integrating complex outputs (CoT, Plans, Critiques, Syntheses, Low Confidence Gauges). Logs detailed reasoning.", {
16
+ // Parameter Description: Must analyze inputs including novel tool outputs.
17
+ thought: z.string().describe("Your **detailed** internal monologue for complex situations. MUST explicitly analyze prior steps/generated text (CoT, Plans, Critiques, Synthesized summaries, Confidence justifications). Structure: ## Analysis, ## Plan, ## Verification, ## Risk Assessment, ## Self-Correction. Ensure depth and clear linkage.")
18
+ }, async ({ thought }) => {
19
+ if (!thought || typeof thought !== 'string' || thought.trim().length === 0) {
20
+ throw new Error('Invalid thought: Must be non-empty.');
22
21
  }
23
- // You could potentially add structured logging here if needed later
24
- console.error(`[CognitiveToolsServer] Think Tool Logged: ${thought.substring(0, 100)}...`); // Log confirmation
25
- return {
26
- content: [{
27
- type: "text",
28
- text: thought // Return the logged thought
29
- }]
30
- };
22
+ console.error(`[CognitiveToolsServer] Think Tool Logged: ${thought.substring(0, 100)}...`);
23
+ return { content: [{ type: "text", text: `Deep Thought Logged: ${thought}` }] };
31
24
  });
32
- // --- Supporting Cognitive Strategy Tools ---
33
- // Note: These tools primarily guide the LLM to generate specific reasoning patterns,
34
- // which are then analyzed using the mandatory 'think' tool.
35
- server.tool("chain_of_thought",
36
- // Enhanced Main Description: Clarifies it guides LLM generation.
37
- "Guides the LLM to generate explicit, sequential reasoning steps for a specific problem. Breaks down complexity into a detailed, linear, logical path. Primarily used for tasks needing high explainability. The generated reasoning MUST be subsequently analyzed using the 'think' tool.", {
38
- // Enhanced Parameter Description: Instructs the LLM on what *it* needs to generate for this field.
39
- problem_statement: z.string().describe("Provide the specific problem statement for which *you* (the LLM) must now generate and articulate a detailed, step-by-step logical deduction path (Chain of Thought). This output represents your reasoning process.")
40
- },
41
- // Implementation: Echoes the input, signaling the LLM performed the CoT generation *before* calling.
42
- async ({ problem_statement }) => {
43
- if (!problem_statement || typeof problem_statement !== 'string' || problem_statement.trim().length === 0) {
44
- throw new Error('Invalid problem statement: Must be a non-empty string.');
25
+ server.tool("quick_think",
26
+ // Main Description: For Low Cognitive Load situations. Explicitly contrasted with 'think'.
27
+ "Cognitive Checkpoint for **Low Complexity/Uncertainty/Consequence**. Use ONLY for simple confirmations, acknowledgements, minor step decisions, or sanity checks where deep analysis is clearly unnecessary. Logs brief thought.", {
28
+ brief_thought: z.string().describe("Your **concise** thought for simple situations (e.g., 'Acknowledged.', 'Proceeding with planned step X.', 'API call successful, extracting data.'). DO NOT use for analyzing complex outputs or making significant plans.")
29
+ }, async ({ brief_thought }) => {
30
+ if (!brief_thought || typeof brief_thought !== 'string' || brief_thought.trim().length === 0) {
31
+ throw new Error('Invalid brief_thought: Must be non-empty.');
45
32
  }
46
- console.error(`[CognitiveToolsServer] ChainOfThought Tool Triggered for: ${problem_statement.substring(0, 100)}...`);
47
- return {
48
- content: [{
49
- type: "text",
50
- // Return the problem statement to confirm the context for the CoT the LLM *should have generated*.
51
- // The actual CoT exists in the LLM's preceding generation turn.
52
- text: `Chain of Thought generation requested for: ${problem_statement}`
53
- }]
54
- };
33
+ console.error(`[CognitiveToolsServer] QuickThink Tool Logged: ${brief_thought.substring(0, 100)}...`);
34
+ return { content: [{ type: "text", text: `Quick Thought Logged: ${brief_thought}` }] };
55
35
  });
56
- server.tool("reflection",
57
- // Enhanced Main Description: Clarifies it guides LLM self-critique.
58
- "Guides the LLM to perform self-critique on previously generated reasoning or plans. Evaluates logical consistency, completeness, efficiency, and potential biases, suggesting specific refinements. The critique and refined output MUST be analyzed in a subsequent 'think' step.", {
59
- // Enhanced Parameter Description: Instructs the LLM on what *it* needs to generate.
60
- input_reasoning_or_plan: z.string().describe("Provide the specific reasoning segment or plan (e.g., from a 'think' step) that *you* (the LLM) must now critically evaluate. Your evaluation should identify flaws, biases, or inconsistencies and propose concrete improvements.")
61
- },
62
- // Implementation: Echoes the input, signaling the LLM performed the reflection *before* calling.
63
- async ({ input_reasoning_or_plan }) => {
64
- if (!input_reasoning_or_plan || typeof input_reasoning_or_plan !== 'string' || input_reasoning_or_plan.trim().length === 0) {
65
- throw new Error('Invalid input reasoning/plan: Must be a non-empty string.');
36
+ // --- Novel Meta-Cognitive & Context Management Tools ---
37
+ server.tool("assess_cuc_n_mode",
38
+ // Main Description: Forces explicit decision between think/quick_think.
39
+ "**Mandatory Pre-Thought Assessment.** Guides the LLM to explicitly evaluate the upcoming cognitive step's complexity, uncertainty, consequence, and novelty, and *commit* to using either `think` or `quick_think` next. Enhances deliberate cognitive resource allocation.", {
40
+ // Parameter Description: LLM provides its assessment and chosen mode.
41
+ assessment_and_choice: z.string().describe("Input your assessment: 1) Briefly describe the situation/next step. 2) Rate Complexity (Low/Med/High), Uncertainty (L/M/H), Consequence (L/M/H), Novelty (L/M/H). 3) State your choice: 'Selected Mode: think' or 'Selected Mode: quick_think'. *You* (LLM) make this assessment *before* calling.")
42
+ }, async ({ assessment_and_choice }) => {
43
+ if (!assessment_and_choice || typeof assessment_and_choice !== 'string' || (!assessment_and_choice.includes("Selected Mode: think") && !assessment_and_choice.includes("Selected Mode: quick_think"))) {
44
+ throw new Error('Invalid assessment: Must include complexity/uncertainty/consequence/novelty ratings and explicit mode selection ("Selected Mode: think" or "Selected Mode: quick_think").');
45
+ }
46
+ console.error(`[CognitiveToolsServer] AssessComplexity Tool Signaled: ${assessment_and_choice.substring(0, 150)}...`);
47
+ // Output confirms the assessment was made and which mode was selected.
48
+ const mode = assessment_and_choice.includes("Selected Mode: think") ? "think" : "quick_think";
49
+ return { content: [{ type: "text", text: `Complexity Assessment Completed. Selected Next Mode: ${mode}. Assessment: ${assessment_and_choice}` }] };
50
+ });
51
+ server.tool("synthesize_prior_reasoning",
52
+ // Main Description: Manages context window and focuses reasoning.
53
+ "Context Management Tool. Guides the LLM to **generate a concise summary text** of preceding lengthy reasoning chains (multiple `think` logs, CoT outputs). Used to manage context limits and refocus attention before major subsequent `think` steps.", {
54
+ // Parameter Description: LLM generates the summary internally first.
55
+ context_to_summarize_description: z.string().describe("Briefly describe the span of reasoning you are summarizing (e.g., 'Summary of planning phase', 'Key takeaways from debugging CoT'). *You* (LLM) must now *internally generate the concise summary text* before calling this tool. This signals the summary is ready.")
56
+ }, async ({ context_to_summarize_description }) => {
57
+ if (!context_to_summarize_description || typeof context_to_summarize_description !== 'string' || context_to_summarize_description.trim().length === 0) {
58
+ throw new Error('Invalid context description: Must be non-empty.');
59
+ }
60
+ console.error(`[CognitiveToolsServer] SynthesizeReasoning Tool Signaled for: ${context_to_summarize_description}...`);
61
+ // Output confirms context and implies summary text is available internally
62
+ return { content: [{ type: "text", text: `Synthesis internally generated for context: '${context_to_summarize_description}'. Ready for 'think' analysis.` }] };
63
+ });
64
+ server.tool("gauge_confidence",
65
+ // Main Description: Explicit meta-cognition about certainty.
66
+ "Meta-Cognitive Checkpoint. Guides the LLM to explicitly **state its confidence level (High/Medium/Low) and justification** regarding a specific plan, analysis, conclusion, or proposed action *before* proceeding. Low confidence may trigger Reflection or deeper Thinking.", {
67
+ // Parameter Description: LLM provides its confidence assessment.
68
+ assessment_and_confidence: z.string().describe("Input the item being assessed (e.g., 'Confidence in current plan', 'Confidence in generated code correctness'). Then state: 1) Confidence Level (High/Medium/Low). 2) Brief Justification for this level. *You* (LLM) make this assessment *before* calling.")
69
+ }, async ({ assessment_and_confidence }) => {
70
+ const confidenceRegex = /Confidence Level: (High|Medium|Low)/i;
71
+ if (!assessment_and_confidence || typeof assessment_and_confidence !== 'string' || !confidenceRegex.test(assessment_and_confidence)) {
72
+ throw new Error('Invalid confidence assessment: Must include "Confidence Level: High/Medium/Low" and justification.');
66
73
  }
67
- console.error(`[CognitiveToolsServer] Reflection Tool Triggered for analysis.`);
68
- return {
69
- content: [{
70
- type: "text",
71
- text: `Reflection requested on: ${input_reasoning_or_plan.substring(0, 150)}...` // Confirm context
72
- }]
73
- };
74
+ const match = assessment_and_confidence.match(confidenceRegex);
75
+ const level = match ? match[1] : "Unknown";
76
+ console.error(`[CognitiveToolsServer] GaugeConfidence Tool Signaled: Level ${level}`);
77
+ // Output confirms assessment and level
78
+ return { content: [{ type: "text", text: `Confidence Gauge Completed. Level: ${level}. Assessment: ${assessment_and_confidence}` }] };
74
79
  });
80
+ // --- Supporting Cognitive Strategy Tools (Enhanced Descriptions) ---
75
81
  server.tool("plan_and_solve",
76
- // Enhanced Main Description: Clarifies it guides LLM plan generation.
77
- "Guides the LLM to develop a high-level, structured strategy (plan) for complex, multi-stage objectives. Outlines major phases and potential tool usage. The generated plan MUST be reviewed, validated, and potentially refined using the 'think' tool.", {
78
- // Enhanced Parameter Description: Instructs the LLM on what *it* needs to generate.
79
- task_objective: z.string().describe("Provide the high-level task objective for which *you* (the LLM) must now create a structured, multi-step strategic plan. Outline the main phases and anticipated steps or tool usage.")
82
+ // Main Description: Highlights role in structuring complex tasks and managing agentic workflows.
83
+ "Guides the LLM to **generate a structured, multi-step plan text** for a complex objective. Outlines necessary phases, potential sub-tasks, and anticipated tool usage, improving manageability of multi-step agentic workflows. The generated plan MUST be validated and detailed via `think`, and can optionally be passed to `reflection` for critique.", {
84
+ // Parameter Description: Instructs LLM on plan generation.
85
+ task_objective: z.string().describe("Input the high-level objective. *You* (the LLM) must now *internally generate the structured plan text* before calling this tool. This signals the plan text is ready for analysis/critique.")
80
86
  },
81
- // Implementation: Echoes the input, signaling the LLM performed the planning *before* calling.
87
+ // Implementation: Signals Planning was performed.
82
88
  async ({ task_objective }) => {
83
89
  if (!task_objective || typeof task_objective !== 'string' || task_objective.trim().length === 0) {
84
90
  throw new Error('Invalid task objective: Must be a non-empty string.');
85
91
  }
86
- console.error(`[CognitiveToolsServer] PlanAndSolve Tool Triggered for: ${task_objective.substring(0, 100)}...`);
87
- return {
88
- content: [{
89
- type: "text",
90
- text: `Planning requested for objective: ${task_objective}` // Confirm context
91
- }]
92
- };
92
+ console.error(`[CognitiveToolsServer] PlanAndSolve Tool Signaled for: ${task_objective.substring(0, 100)}...`);
93
+ return { content: [{ type: "text", text: `Planning generation signaled for objective: ${task_objective}. Ready for 'think' analysis.` }] };
94
+ });
95
+ server.tool("chain_of_thought",
96
+ // Main Description: Emphasizes generating text for later analysis.
97
+ "Guides the LLM to **generate detailed, step-by-step reasoning text**. Used for complex logic or explainability. The *generated CoT text* MUST then be analyzed in a subsequent `think` call.", {
98
+ // Parameter Description: Focus on the input problem.
99
+ problem_statement: z.string().describe("Input the problem requiring detailed step-by-step reasoning. *You* (the LLM) must now *internally generate the full CoT text* before calling this tool. This signals that CoT text is ready for analysis in the next `think` step.")
100
+ },
101
+ // Implementation: Signals CoT was performed for the given problem.
102
+ async ({ problem_statement }) => {
103
+ if (!problem_statement || typeof problem_statement !== 'string' || problem_statement.trim().length === 0) {
104
+ throw new Error('Invalid problem statement: Must be a non-empty string.');
105
+ }
106
+ console.error(`[CognitiveToolsServer] ChainOfThought Tool Signaled for: ${problem_statement.substring(0, 100)}...`);
107
+ return { content: [{ type: "text", text: `Chain of Thought internally generated for problem: ${problem_statement}. Ready for 'think' analysis.` }] };
93
108
  });
94
109
  server.tool("chain_of_draft",
95
- // Enhanced Main Description: Clarifies it guides LLM draft generation.
96
- "Guides the LLM to generate concise, iterative drafts of reasoning steps, prioritizing efficiency. Useful for rapid exploration or brainstorming when full CoT verbosity isn't needed. The generated drafts MUST be subsequently analyzed via the 'think' tool.", {
97
- // Enhanced Parameter Description: Instructs the LLM on what *it* needs to generate.
98
- problem_statement: z.string().describe("Provide the problem statement for which *you* (the LLM) will now generate brief, iterative reasoning drafts (Chain of Draft). Focus on key steps/insights concisely.")
110
+ // Main Description: Positions for efficient exploration and hypothesis generation.
111
+ "Guides the LLM to **generate concise, iterative reasoning draft texts** ('thought-sketches'). Useful for efficiently exploring multiple solution paths, brainstorming hypotheses, or outlining approaches when full CoT verbosity is premature. Drafts MUST be analyzed comparatively via `think`.", {
112
+ // Parameter Description: Instructs LLM on draft generation.
113
+ problem_statement: z.string().describe("Input the problem or question for exploration. *You* (the LLM) must now *internally generate brief, iterative draft texts* (key steps, pros/cons, core ideas) for potential approaches *before* calling this tool.")
99
114
  },
100
- // Implementation: Echoes the input, signaling the LLM performed the drafting *before* calling.
115
+ // Implementation: Signals Drafting was performed.
101
116
  async ({ problem_statement }) => {
102
117
  if (!problem_statement || typeof problem_statement !== 'string' || problem_statement.trim().length === 0) {
103
118
  throw new Error('Invalid problem statement: Must be a non-empty string.');
104
119
  }
105
- console.error(`[CognitiveToolsServer] ChainOfDraft Tool Triggered for: ${problem_statement.substring(0, 100)}...`);
106
- return {
107
- content: [{
108
- type: "text",
109
- text: `Chain of Draft generation requested for: ${problem_statement}` // Confirm context
110
- }]
111
- };
120
+ console.error(`[CognitiveToolsServer] ChainOfDraft Tool Signaled for: ${problem_statement.substring(0, 100)}...`);
121
+ return { content: [{ type: "text", text: `Chain of Draft generation signaled for problem: ${problem_statement}. Ready for 'think' analysis.` }] };
122
+ });
123
+ server.tool("reflection",
124
+ // Main Description: Explicitly mentions taking prior text as input for critique.
125
+ "Guides the LLM to perform critical self-evaluation on **previously generated text** (reasoning, plans, code concepts). Essential for iterative refinement and improving accuracy. The *generated critique text* MUST be analyzed via `think`.", {
126
+ // Parameter Description: Input is the text to be critiqued.
127
+ input_reasoning_or_plan: z.string().describe("Input the **exact text** (e.g., from a prior `think` log, or internally generated plan/CoT/code concept) that *you* (the LLM) must now *internally generate a critique for*. Your critique should identify flaws and suggest improvements.")
128
+ },
129
+ // Implementation: Signals Reflection was performed.
130
+ async ({ input_reasoning_or_plan }) => {
131
+ if (!input_reasoning_or_plan || typeof input_reasoning_or_plan !== 'string' || input_reasoning_or_plan.trim().length === 0) {
132
+ throw new Error('Invalid input reasoning/plan: Must be a non-empty string.');
133
+ }
134
+ console.error(`[CognitiveToolsServer] Reflection Tool Signaled for analysis.`);
135
+ return { content: [{ type: "text", text: `Reflection internally generated for input text: '${input_reasoning_or_plan.substring(0, 100)}...'. Ready for 'think' analysis.` }] };
112
136
  });
113
137
  // --- Server Lifecycle and Error Handling ---
114
138
  process.on('SIGINT', async () => {
@@ -123,20 +147,23 @@ process.on('SIGTERM', async () => {
123
147
  });
124
148
  process.on('uncaughtException', (error) => {
125
149
  console.error('[CognitiveToolsServer] Uncaught exception:', error);
150
+ // Depending on severity, you might want to gracefully shutdown or just log
126
151
  });
127
152
  process.on('unhandledRejection', (reason, promise) => {
128
153
  console.error('[CognitiveToolsServer] Unhandled promise rejection:', reason);
154
+ // Depending on severity, you might want to gracefully shutdown or just log
129
155
  });
130
156
  // Start the server
131
157
  async function main() {
132
158
  try {
133
159
  const transport = new StdioServerTransport();
134
160
  await server.connect(transport);
135
- console.error('ᑭᑫᓐᑖᓱᐎᓐ ᐋᐸᒋᒋᑲᓇᓐ - Gikendaasowin Aabajichiganan - (Cognitive Tools) MCP Server running on stdio');
161
+ console.error('ᑭᑫᓐᑖᓱᐎᓐ ᐋᐸᒋᒋᑲᓇᓐ - Gikendaasowin Aabajichiganan - (Cognitive Tools v0.6.0) MCP Server running on stdio');
136
162
  }
137
163
  catch (error) {
138
- console.error('Fatal error in main():', error);
164
+ console.error('[CognitiveToolsServer] Fatal error during startup:', error);
139
165
  process.exit(1);
140
166
  }
141
167
  }
168
+ // Execute the main function to start the server
142
169
  main();
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@nbiish/cognitive-tools-mcp",
3
- "version": "0.3.11",
4
- "description": "ᑭᑫᓐᑖᓱᐎᓐ ᐋᐸᒋᒋᑲᓇᓐ - Gikendaasowin Aabajichiganan - (Cognitive Tools v0.3.11): Provides a suite of advanced internal reasoning tools to guide an LLM agent in sophisticated problem-solving, emphasizing structured thought, planning, and self-correction. [SYNC NOTE: This repository publishes both packages: 1) @nbiish/gikendaasowin-aabajichiganan-mcp (current), and 2) @nbiish/cognitive-tools-mcp (https://www.npmjs.com/package/@nbiish/cognitive-tools-mcp). Publishing workflow: First publish this version, then update package.json name to @nbiish/cognitive-tools-mcp and publish again, finally restore name back to @nbiish/gikendaasowin-aabajichiganan-mcp. Both packages should maintain version parity. Current version: 0.3.11]",
3
+ "version": "0.6.1",
4
+ "description": "ᑭᑫᓐᑖᓱᐎᓐ ᐋᐸᒋᒋᑲᓇᓐ - Gikendaasowin Aabajichiganan - (Cognitive Tools v0.6.1): SOTA internal reasoning suite for LLM agents. Features advanced deliberation (`think`), rapid checks (`quick_think`), explicit complexity assessment, context synthesis (`synthesize`), confidence gauging, planning, CoT, and reflection. Designed to maximize reliability, traceability, and performance on complex cognitive tasks.",
5
5
  "private": false,
6
6
  "type": "module",
7
7
  "bin": {