@nbiish/cognitive-tools-mcp 4.0.4 → 4.0.6
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.
- package/build/index.js +2 -2
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -111,8 +111,8 @@ function logToolError(toolName, error) {
|
|
|
111
111
|
* Acronym Key: CUC-N (Complexity, Uncertainty, Consequence, Novelty), CoT (Chain-of-Thought), PS (Plan-and-Solve), SCoT (Structured Chain-of-Thought), CoD/CR (Chain-of-Draft/Condensed Reasoning), ToT (Tree of Thoughts), PoT (Program of Thoughts), PAL (Program-aided Language Models).
|
|
112
112
|
*/
|
|
113
113
|
server.tool("deliberate", {
|
|
114
|
-
stage: z.enum(["orient", "reason", "acknowledge"]).describe("
|
|
115
|
-
content: z.string().describe("
|
|
114
|
+
stage: z.enum(["orient", "reason", "acknowledge"]).describe("Specifies the OOReDAct cognitive stage: 'orient' (for initial assessment and context engineering), 'reason' (for core deliberation), or 'acknowledge' (for simple confirmations)."),
|
|
115
|
+
content: z.string().describe("Provides the detailed cognitive output for the chosen stage. This includes CUC-N analysis and context engineering for 'orient', or a selected reasoning strategy (CoT, PS, etc.) for 'reason'. The content is returned verbatim for verification.")
|
|
116
116
|
}, async ({ stage, content }) => {
|
|
117
117
|
const toolName = 'deliberate';
|
|
118
118
|
logToolCall(toolName, `Stage: ${stage}`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nbiish/cognitive-tools-mcp",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.6",
|
|
4
4
|
"description": "Cognitive Tools MCP: SOTA reasoning suite focused on iterative refinement and tool integration for AI Pair Programming. Enables structured, iterative problem-solving through Chain of Draft methodology, with tools for draft generation, analysis, and refinement. Features advanced deliberation (`think`), rapid checks (`quick_think`), mandatory complexity assessment & thought mode selection (`assess_cuc_n_mode`), context synthesis, confidence gauging, proactive planning, explicit reasoning (CoT), and reflection with content return. Alternative package name for gikendaasowin-aabajichiganan-mcp.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|