@gotza02/mathinking 2.0.0 → 2.1.0
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 +24 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,7 +8,8 @@ A powerful, autonomous Model Context Protocol (MCP) server that empowers AI agen
|
|
|
8
8
|
## 🚀 Features
|
|
9
9
|
|
|
10
10
|
### 🧠 The Brain (Autonomous Agent Ready)
|
|
11
|
-
- **
|
|
11
|
+
- **Keyword Trigger:** Start any prompt with **"mathinking"** (e.g., "mathinking build a bot") to automatically trigger the full reasoning and execution protocol.
|
|
12
|
+
- **Autonomous Bridge:** Directly trigger the Body (mathinking_body) from a thinking conclusion using `execute_conclusion`.
|
|
12
13
|
- **Iterative Reasoning:** Think step-by-step with adjustable depth.
|
|
13
14
|
- **Self-Critique:** Evaluate current reasoning for risks, bias, or errors.
|
|
14
15
|
- **Branch Merging:** Combine multiple thinking paths into a consolidated synthesis.
|
|
@@ -17,17 +18,31 @@ A powerful, autonomous Model Context Protocol (MCP) server that empowers AI agen
|
|
|
17
18
|
- **Branching & Revision:** Explore alternative paths and correct previous thoughts.
|
|
18
19
|
- **Hypothesis Testing:** Formulate and verify theories with evidence.
|
|
19
20
|
|
|
20
|
-
### 🤖 The Body (
|
|
21
|
+
### 🤖 The Body (mathinking_body)
|
|
21
22
|
- **Real-World Execution:**
|
|
22
23
|
- **Web Search:** Integrated search capabilities (Scraping/API).
|
|
23
24
|
- **Real Fetch:** Fetch real data from URLs (JSON/Text).
|
|
24
25
|
- **File System:** Read, write, and list local files and directories.
|
|
25
26
|
- **Shell Execute:** Run bash commands directly.
|
|
26
|
-
- **Conditional Logic (`runIf`):** Tasks can run conditionally based on previous results
|
|
27
|
+
- **Conditional Logic (`runIf`):** Tasks can run conditionally based on previous results.
|
|
27
28
|
- **Parallel Processing:** Group independent tasks into layers for concurrent execution.
|
|
28
29
|
- **Dependency Resolution:** Automatic DAG (Directed Acyclic Graph) management.
|
|
29
30
|
- **Long-term Memory:** Save and query facts/preferences via `memory_save` and `memory_query`.
|
|
30
|
-
- **🛡️ Safety & Flood Protection:** Automatic rate-limiting to prevent AI provider bans.
|
|
31
|
+
- **🛡️ Safety & Flood Protection:** Automatic rate-limiting (800ms-1000ms delay) to prevent AI provider bans.
|
|
32
|
+
|
|
33
|
+
---
|
|
34
|
+
|
|
35
|
+
## 💡 How to Use (Pro-tip)
|
|
36
|
+
|
|
37
|
+
If you use **Gemini CLI** or **Claude CLI**, you can prefix your request with the keyword **`mathinking`**:
|
|
38
|
+
|
|
39
|
+
> **You:** mathinking write a script to monitor disk space and email me if it is low.
|
|
40
|
+
|
|
41
|
+
The agent will immediately:
|
|
42
|
+
1. **Think** and analyze the requirements using `mathinking_brain`.
|
|
43
|
+
2. **Critique** the plan for safety and efficiency.
|
|
44
|
+
3. **Merge** findings into a final deployment plan.
|
|
45
|
+
4. **Execute** the script using `mathinking_body` via the autonomous bridge.
|
|
31
46
|
|
|
32
47
|
---
|
|
33
48
|
|
|
@@ -116,6 +131,11 @@ You can define tasks that only run if a certain condition is met:
|
|
|
116
131
|
|
|
117
132
|
## 📝 Changelog
|
|
118
133
|
|
|
134
|
+
### v2.1.0
|
|
135
|
+
- **Added:** New **"mathinking"** keyword trigger support for Gemini/Claude CLI protocols.
|
|
136
|
+
- **Improved:** Documentation and "How to Use" guides for autonomous workflows.
|
|
137
|
+
- **Optimized:** Tool descriptions for better AI context understanding.
|
|
138
|
+
|
|
119
139
|
### v2.0.0 (Major Release - Breaking Changes)
|
|
120
140
|
- **Renamed:** `sequential_thinking` → `mathinking_brain`.
|
|
121
141
|
- **Renamed:** `orchestrator` → `mathinking_body`.
|