@nbiish/cognitive-tools-mcp 6.0.1 → 6.0.2
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/README.md +1 -0
- package/build/index.js +11 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -62,6 +62,7 @@ Known as:
|
|
|
62
62
|
Both packages are maintained in parallel and receive the same updates. You can use either package name in your projects - they provide identical functionality.
|
|
63
63
|
|
|
64
64
|
**◇ Recent Updates ◇**
|
|
65
|
+
- **◇ v6.0.2 ◇** 📝 Enhanced in-code documentation for the `deliberate` tool to better align with the Modern Prompting Framework. The new documentation instructs models to adopt the OOReDAct cognitive cycle only when complex deliberation is needed and to resume standard operational mode afterward, ensuring proper contextual application of advanced reasoning.
|
|
65
66
|
- **◇ v6.0.0 ◇** 🚀 MAJOR ARCHITECTURE TRANSFORMATION: Complete redesign from instruction-based passthrough to internal cognitive processing engine. The `deliberate` tool now performs sophisticated cognitive deliberation internally using the OOReDAct framework, rather than instructing LLMs how to think. Features four processing modes (analyze, decide, synthesize, evaluate) with automatic CUC-N assessment, hypothesis generation, and structured action planning. LLMs now simply provide inputs and receive comprehensive analysis results.
|
|
66
67
|
- **◇ v4.0.12 ◇** Synchronized all package versions to 4.0.12, updated in-file version documentation, and rebuilt the project to ensure all changes are consistently applied.
|
|
67
68
|
- **◇ v4.0.10 ◇** 🚀 ENHANCED COGNITIVE AMPLIFICATION: Redesigned tool descriptions to dramatically encourage frequent usage and integration with other MCP tools. Added compelling performance benefits, visual indicators, and strategic positioning to make the deliberation tool more attractive for consistent LLM usage. Updated all package descriptions and version synchronization.
|
package/build/index.js
CHANGED
|
@@ -339,10 +339,17 @@ function identifyRollbackTriggers(decision, mode) {
|
|
|
339
339
|
/**
|
|
340
340
|
* Tool: deliberate (Cognitive Processing Engine)
|
|
341
341
|
*
|
|
342
|
-
*
|
|
343
|
-
*
|
|
344
|
-
*
|
|
345
|
-
*
|
|
342
|
+
* **MODERN PROMPTING FRAMEWORK ADOPTION:** When faced with complex tasks requiring
|
|
343
|
+
* deliberation, you are to adopt the **OOReDAct cognitive cycle** as your primary reasoning
|
|
344
|
+
* framework. This tool is the core engine for that cycle. Your own reasoning should
|
|
345
|
+
* follow the stages outlined in the framework (Observe, Orient, Reason, Decide, Act).
|
|
346
|
+
* This tool encapsulates and executes a full deliberation cycle (`orient` and `reason` stages)
|
|
347
|
+
* when called.
|
|
348
|
+
*
|
|
349
|
+
* **IMPORTANT:** This structured cognitive mode is to be engaged *only* when complex
|
|
350
|
+
* deliberation is required and you are preparing to use this tool. After receiving the
|
|
351
|
+
* result, you should integrate it into your action plan and resume your standard
|
|
352
|
+
* operational mode. Do not apply the full OOReDAct framework to simple tasks.
|
|
346
353
|
*
|
|
347
354
|
* **📥 INPUT:** Provide a problem, question, decision, or situation that needs deliberation.
|
|
348
355
|
* **📤 OUTPUT:** Receives structured cognitive analysis with recommendations and insights.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nbiish/cognitive-tools-mcp",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.2",
|
|
4
4
|
"description": "MCP server with internal cognitive deliberation engine. Uses OOReDAct framework to perform sophisticated problem analysis, decision making, knowledge synthesis, and evaluation with structured outputs.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|