@gotza02/seq-thinking 1.1.2 → 1.1.4

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 (75) hide show
  1. package/README.md +64 -95
  2. package/data/agents/1770106504306-dljh9ef.json +68 -0
  3. package/data/agents/1770106504310-4oarrst.json +58 -0
  4. package/data/agents/1770106540588-pvitt55.json +68 -0
  5. package/data/agents/1770106540595-z2ya871.json +58 -0
  6. package/data/agents/1770106710890-0e2naq1.json +68 -0
  7. package/data/agents/1770106710893-r076yxx.json +58 -0
  8. package/data/agents/1770109212161-4ybd0i7.json +68 -0
  9. package/data/agents/1770109212166-gkhya8h.json +58 -0
  10. package/data/agents/1770117726716-lrnm415.json +68 -0
  11. package/data/agents/1770117726719-w6hsf3v.json +58 -0
  12. package/data/sessions/1770100622009-5afiuyv.json +499 -0
  13. package/data/sessions/1770106504312-75zk750.json +107 -0
  14. package/data/sessions/1770106540597-z8e8soo.json +150 -0
  15. package/data/sessions/1770106710894-0kxgy5x.json +150 -0
  16. package/data/sessions/1770109212169-zpddeb9.json +150 -0
  17. package/data/sessions/1770117726720-frcwj99.json +150 -0
  18. package/dist/__tests__/sequential-thinking.test.js +21 -21
  19. package/dist/__tests__/sequential-thinking.test.js.map +1 -1
  20. package/dist/agents/base-agent.d.ts +1 -0
  21. package/dist/agents/base-agent.d.ts.map +1 -1
  22. package/dist/agents/base-agent.js +5 -3
  23. package/dist/agents/base-agent.js.map +1 -1
  24. package/dist/agents/meta-reasoning-agent.d.ts +4 -55
  25. package/dist/agents/meta-reasoning-agent.d.ts.map +1 -1
  26. package/dist/agents/meta-reasoning-agent.js +41 -333
  27. package/dist/agents/meta-reasoning-agent.js.map +1 -1
  28. package/dist/agents/synthesizer-agent.d.ts +3 -17
  29. package/dist/agents/synthesizer-agent.d.ts.map +1 -1
  30. package/dist/agents/synthesizer-agent.js +41 -139
  31. package/dist/agents/synthesizer-agent.js.map +1 -1
  32. package/dist/index.d.ts +1 -1
  33. package/dist/index.js +1 -1
  34. package/dist/mcp-server.d.ts.map +1 -1
  35. package/dist/mcp-server.js +10 -7
  36. package/dist/mcp-server.js.map +1 -1
  37. package/dist/real_world_test.d.ts +2 -0
  38. package/dist/real_world_test.d.ts.map +1 -0
  39. package/dist/real_world_test.js +78 -0
  40. package/dist/real_world_test.js.map +1 -0
  41. package/dist/sequential-thinking.d.ts +5 -5
  42. package/dist/sequential-thinking.d.ts.map +1 -1
  43. package/dist/sequential-thinking.js +68 -32
  44. package/dist/sequential-thinking.js.map +1 -1
  45. package/dist/swarm-coordinator.d.ts +1 -1
  46. package/dist/swarm-coordinator.d.ts.map +1 -1
  47. package/dist/swarm-coordinator.js +39 -13
  48. package/dist/swarm-coordinator.js.map +1 -1
  49. package/dist/utils/llm-adapter.d.ts +2 -2
  50. package/dist/utils/llm-adapter.d.ts.map +1 -1
  51. package/dist/utils/llm-adapter.js +57 -33
  52. package/dist/utils/llm-adapter.js.map +1 -1
  53. package/dist/utils/logger.d.ts +20 -0
  54. package/dist/utils/logger.d.ts.map +1 -0
  55. package/dist/utils/logger.js +49 -0
  56. package/dist/utils/logger.js.map +1 -0
  57. package/dist/utils/persistence.d.ts.map +1 -1
  58. package/dist/utils/persistence.js +4 -3
  59. package/dist/utils/persistence.js.map +1 -1
  60. package/package.json +1 -1
  61. package/real_world_test.log +200 -0
  62. package/real_world_test_dynamic.log +184 -0
  63. package/real_world_test_real.log +184 -0
  64. package/src/__tests__/sequential-thinking.test.ts +21 -21
  65. package/src/agents/base-agent.ts +6 -3
  66. package/src/agents/meta-reasoning-agent.ts +45 -403
  67. package/src/agents/synthesizer-agent.ts +48 -165
  68. package/src/index.ts +1 -1
  69. package/src/mcp-server.ts +10 -7
  70. package/src/real_world_test.ts +89 -0
  71. package/src/sequential-thinking.ts +87 -33
  72. package/src/swarm-coordinator.ts +41 -13
  73. package/src/utils/llm-adapter.ts +66 -32
  74. package/src/utils/logger.ts +56 -0
  75. package/src/utils/persistence.ts +4 -3
package/README.md CHANGED
@@ -1,73 +1,21 @@
1
1
  # MCP Sequential Thinking with Swarm Coordination
2
2
 
3
- [![Version](https://img.shields.io/badge/version-1.1.0-blue.svg)](https://github.com/yourusername/mcp-sequential-thinking)
3
+ [![Version](https://img.shields.io/badge/version-1.1.4-blue.svg)](https://github.com/yourusername/mcp-sequential-thinking)
4
4
  [![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)
5
5
  [![Node.js](https://img.shields.io/badge/node-%3E%3D18.0.0-brightgreen.svg)](https://nodejs.org/)
6
6
 
7
- Advanced Sequential Thinking MCP Tool with Swarm Agent Coordination - A superior alternative to Claude's sequential thinking capabilities, integrated with real LLM power via your favorite CLI tools.
7
+ **Advanced Sequential Thinking MCP Server** with integrated Swarm Intelligence. This tool empowers your AI environment with structured reasoning, self-correction, and a coordinated team of specialized agents, leveraging your existing local LLM CLI tools.
8
8
 
9
- ## Overview
9
+ ## 🚀 Key Features
10
10
 
11
- This system provides advanced sequential thinking capabilities with:
11
+ * **🧠 Advanced Sequential Thinking**: Supports branching, merging, and pruning of thought paths.
12
+ * **🤖 Swarm Intelligence**: Coordinates specialized agents (**Reasoner**, **Critic**, **Synthesizer**, **Meta-Reasoner**) to solve complex problems.
13
+ * **🔌 BYO-LLM (Bring Your Own LLM)**: Connects directly to **Gemini**, **Claude**, **Kimi**, and **OpenCode** via their CLI tools—no extra API keys required if you're already logged in.
14
+ * **🔄 Auto-Fallback & Robustness**: Automatically switches providers if one fails (e.g., `gemini` -> `claude`). Includes retry logic for resilient task execution.
15
+ * **💾 Persistence**: Automatically saves sessions and agent states to disk (`./data/`), allowing you to resume complex reasoning tasks anytime.
16
+ * **🔍 Self-Correction**: Proactively detects logical fallacies and confidence dips, triggering corrective actions.
12
17
 
13
- - **Real LLM Integration**: Connects directly to Gemini, Claude (Claude Code), Kimi, and OpenCode via CLI.
14
- - **Self-Correction Loops**: Automatically detect and fix reasoning errors.
15
- - **Parallel Hypothesis Generation**: Explore multiple reasoning paths simultaneously.
16
- - **Meta-Reasoning**: Reflect on and improve the thinking process.
17
- - **Adaptive Granularity**: Adjust detail level based on problem complexity.
18
- - **Persistence Layer**: All thinking sessions and agent states are saved to disk.
19
- - **Swarm Agent Coordination**: Multiple specialized agents working together with retry logic.
20
-
21
- ## AI System Instructions
22
-
23
- This project includes a [SYSTEM_INSTRUCTIONS.md](./SYSTEM_INSTRUCTIONS.md) file specifically designed to guide AI models on how to use these tools effectively. It covers initialization, branching, and swarm delegation strategies.
24
-
25
- ## Architecture
26
-
27
- ```
28
- ┌─────────────────────────────────────────────────────────────────┐
29
- │ MCP TOOL INTERFACE │
30
- │ ┌─────────────┐ ┌─────────────┐ ┌─────────────────────────┐ │
31
- │ │ Sequential │ │ Swarm │ │ Tool Registry │ │
32
- │ │ Thinking │ │ Coordination│ │ │ │
33
- │ └──────┬──────┘ └──────┬──────┘ └─────────────────────────┘ │
34
- └─────────┼────────────────┼──────────────────────────────────────┘
35
- │ │
36
- ┌─────────┼────────────────┼──────────────────────────────────────┐
37
- │ │ ORCHESTRATION ENGINE │
38
- │ ┌──────┴──────┐ ┌──────────────┐ ┌──────────────────────┐ │
39
- │ │State Manager│ │ Flow Control │ │ Scheduler │ │
40
- │ │(Persistence)│ │ (Retry Logic)│ │ │ │
41
- │ └──────┴──────┘ └──────────────┘ └──────────────────────┘ │
42
- └─────────┬───────────────────────────────────────────────────────┘
43
-
44
- ┌─────────┴──────────────────────────────────────────────────────┐
45
- │ │ SWARM AGENT COORDINATOR │
46
- │ ┌──────┴──────┐ ┌─────────────┐ ┌──────────────────────┐ │
47
- │ │ Reasoner │ │ Critic │ │ Synthesizer │ │
48
- │ │ Agents │ │ Agents │ │ Agents │ │
49
- │ └──────┬──────┘ └──────┬──────┘ └───────────┬──────────┘ │
50
- └─────────┼────────────────┼─────────────────────┼────────────────┘
51
- │ │ │
52
- ┌─────────┴────────────────┴─────────────────────┴────────────────┐
53
- │ LLM ADAPTER (CLI BRIDGE) │
54
- │ ┌──────────┐ ┌──────────┐ ┌──────────┐ ┌──────────┐ │
55
- │ │ Gemini │ │ Claude │ │ Kimi │ │ OpenCode │ │
56
- │ └──────────┘ └──────────┘ └──────────┘ └──────────┘ │
57
- └─────────────────────────────────────────────────────────────────┘
58
- ```
59
-
60
- ## LLM Providers (CLI Integration)
61
-
62
- The system is designed to use LLMs that you have already logged into via your command line. This simplifies authentication and leverages your existing CLI tools.
63
-
64
- Supported Providers:
65
- - **gemini**: Uses `gemini ask "..."`
66
- - **claude**: Uses `claude "..." --non-interactive` (Compatible with Claude Code)
67
- - **kimi**: Uses `kimi chat "..."`
68
- - **opencode**: Uses `opencode ask "..."`
69
-
70
- ## Installation
18
+ ## 📦 Installation
71
19
 
72
20
  ```bash
73
21
  # Clone the repository
@@ -81,18 +29,18 @@ npm install
81
29
  npm run build
82
30
  ```
83
31
 
84
- ## Configuration (MCP JSON)
32
+ ## ⚙️ Configuration
85
33
 
86
- Add this to your MCP settings file (e.g., `claude_desktop_config.json`, `gemini-cli.json`, or Kimi's `mcp.json`):
34
+ Add this configuration to your MCP client (e.g., `claude_desktop_config.json`, `gemini-cli.json`):
87
35
 
88
36
  ```json
89
37
  {
90
38
  "mcpServers": {
91
39
  "advanced-thinking": {
92
40
  "command": "node",
93
- "args": ["/absolute/path/to/dist/mcp-server.js"],
41
+ "args": ["/absolute/path/to/mcp-sequential-thinking/dist/mcp-server.js"],
94
42
  "env": {
95
- "provider": "gemini",
43
+ "provider": "gemini,claude",
96
44
  "MOCK_LLM": "false"
97
45
  }
98
46
  }
@@ -102,48 +50,69 @@ Add this to your MCP settings file (e.g., `claude_desktop_config.json`, `gemini-
102
50
 
103
51
  ### Environment Variables
104
52
 
105
- | Variable | Description | Default |
106
- |----------|-------------|---------|
107
- | `provider` | The LLM provider to use (`gemini`, `claude`, `kimi`, `opencode`) | `gemini` |
108
- | `MOCK_LLM` | If `true`, returns mock data instead of calling the CLI (useful for testing) | `false` |
53
+ | Variable | Description | Default | Example |
54
+ |----------|-------------|---------|---------|
55
+ | `provider` | Comma-separated list of LLM CLIs to use. The system tries them in order. | `gemini` | `gemini,claude,kimi` |
56
+ | `MOCK_LLM` | If `true`, returns mock responses (for testing without API costs). | `false` | `true` |
109
57
 
110
- ## Persistence
58
+ **Supported CLI Tools:**
59
+ * **Gemini:** Requires `gemini` CLI installed and authenticated.
60
+ * **Claude:** Requires `claude` (Claude Code) CLI installed and authenticated.
61
+ * **Kimi:** Requires `kimi` CLI.
62
+ * **OpenCode:** Requires `opencode` CLI.
111
63
 
112
- Thinking sessions are automatically persisted to the `./data` directory.
113
- - **Sessions**: Stored in `./data/sessions/`
114
- - **Agents**: Stored in `./data/agents/`
64
+ ## 🛠️ Usage
115
65
 
116
- This ensures that your reasoning state is preserved even if the MCP server restarts.
66
+ This server provides two main tools to your AI client:
117
67
 
118
- ## Enhanced Swarm Logic
68
+ ### 1. `advanced_sequential_thinking`
69
+ The core thinking engine.
70
+ * **Operations:** `initialize`, `add_thought`, `branch_thought`, `self_correct`, `complete_session`, etc.
71
+ * **Use Case:** Deep, step-by-step problem solving with ability to backtrack.
119
72
 
120
- - **Automated Retries**: Tasks assigned to agents will automatically retry up to 3 times with exponential backoff on failure.
121
- - **Intelligent Context**: When reaching consensus, agents receive current swarm statistics and history of previous votes to make more informed decisions.
122
- - **Async Workflow**: All operations are non-blocking, ensuring the MCP server remains responsive during long reasoning tasks.
73
+ ### 2. `swarm_agent_coordination`
74
+ The workforce manager.
75
+ * **Operations:** `register_agent`, `assign_task`, `reach_consensus`, `resolve_conflict`.
76
+ * **Use Case:** Delegating sub-tasks to specialized "virtual experts" (e.g., asking a "Critic" agent to review a plan).
123
77
 
124
- ## API Documentation
125
-
126
- *(Standard Sequential Thinking and Swarm Coordination operations are supported as documented in the internal tool definitions)*
127
-
128
- ## Testing
78
+ ## 🧪 Testing & Development
129
79
 
80
+ ### Run Unit Tests
81
+ Verifies the logic of all components (Agents, Graph, Persistence).
130
82
  ```bash
131
- # Run tests with mock LLM responses
83
+ # Run all tests using mock LLM data
132
84
  export MOCK_LLM=true
133
85
  npm test
134
86
  ```
135
87
 
136
- ## License
88
+ ### Run Real-World Scenario
89
+ Simulates a full end-to-end workflow: creating a session, registering agents, delegating tasks, and self-correction.
90
+ ```bash
91
+ # Run the E2E simulation
92
+ export MOCK_LLM=true
93
+ node dist/real_world_test.js
94
+ ```
95
+
96
+ ## 🏗️ Architecture
137
97
 
138
- MIT License - see [LICENSE](LICENSE) file for details.
98
+ The system is built on a modular architecture:
99
+ * **Orchestration Layer:** Manages state, flow control, and error handling.
100
+ * **Swarm Coordinator:** Assigns tasks based on agent capabilities and availability.
101
+ * **Thought Graph:** A directed acyclic graph (DAG) representing the reasoning process.
102
+ * **LLM Adapter:** A unified interface for communicating with various CLI-based models.
103
+
104
+ ## 📝 Changelog
139
105
 
140
- ## Changelog
106
+ ### v1.1.4 (2026-02-03)
107
+ - **Fix:** Fixed a critical bug in `MetaReasoningAgent` that caused crashes when analyzing thoughts with missing confidence data.
108
+ - **Improvement:** Enhanced robustness of `overall` confidence calculation across all agents.
109
+ - **Doc:** Updated README with comprehensive usage and testing instructions.
141
110
 
142
- ### v1.1.0 (2026-02-03)
143
- - Added CLI-based LLM Adapters (Gemini, Claude, Kimi, OpenCode).
144
- - Implemented Disk Persistence for sessions and agents.
145
- - Added Task Retry logic in Swarm Coordinator.
146
- - Updated all tests to support asynchronous operations.
111
+ ### v1.1.3 (2026-02-03)
112
+ - **Feature:** Multi-Provider Auto-Fallback.
113
+ - **Feature:** Dynamic Provider Selection per task.
114
+ - **Refactor:** Replaced console logs with structured `Logger`.
147
115
 
148
- ### v1.0.0 (2025-02-03)
149
- - Initial release with core swarm and sequential thinking logic.
116
+ ## 📄 License
117
+
118
+ MIT License - see [LICENSE](LICENSE) file for details.
@@ -0,0 +1,68 @@
1
+ {
2
+ "config": {
3
+ "id": "1770106504306-dljh9ef",
4
+ "name": "LogicMaster",
5
+ "type": "reasoner",
6
+ "subtype": "chain_of_thought",
7
+ "capabilities": [
8
+ {
9
+ "name": "chain_of_thought",
10
+ "description": "Step-by-step reasoning",
11
+ "confidence": 0.9,
12
+ "performanceMetrics": {
13
+ "tasksCompleted": 0,
14
+ "averageQuality": 0,
15
+ "averageTimeMs": 0
16
+ }
17
+ },
18
+ {
19
+ "name": "tree_of_thought",
20
+ "description": "Explore multiple reasoning paths",
21
+ "confidence": 0.85,
22
+ "performanceMetrics": {
23
+ "tasksCompleted": 0,
24
+ "averageQuality": 0,
25
+ "averageTimeMs": 0
26
+ }
27
+ },
28
+ {
29
+ "name": "analogical_reasoning",
30
+ "description": "Reason by analogy",
31
+ "confidence": 0.8,
32
+ "performanceMetrics": {
33
+ "tasksCompleted": 0,
34
+ "averageQuality": 0,
35
+ "averageTimeMs": 0
36
+ }
37
+ },
38
+ {
39
+ "name": "abductive_reasoning",
40
+ "description": "Inference to best explanation",
41
+ "confidence": 0.75,
42
+ "performanceMetrics": {
43
+ "tasksCompleted": 0,
44
+ "averageQuality": 0,
45
+ "averageTimeMs": 0
46
+ }
47
+ },
48
+ {
49
+ "name": "problem_solving",
50
+ "description": "General problem-solving",
51
+ "confidence": 0.8,
52
+ "performanceMetrics": {
53
+ "tasksCompleted": 0,
54
+ "averageQuality": 0,
55
+ "averageTimeMs": 0
56
+ }
57
+ }
58
+ ],
59
+ "maxConcurrentTasks": 3,
60
+ "confidenceThreshold": 0.7,
61
+ "metadata": {
62
+ "createdAt": "2026-02-03T08:15:04.306Z",
63
+ "version": "1.0.0",
64
+ "config": {}
65
+ }
66
+ },
67
+ "performanceHistory": []
68
+ }
@@ -0,0 +1,58 @@
1
+ {
2
+ "config": {
3
+ "id": "1770106504310-4oarrst",
4
+ "name": "SafetyCheck",
5
+ "type": "critic",
6
+ "subtype": "safety",
7
+ "capabilities": [
8
+ {
9
+ "name": "evaluation",
10
+ "description": "Evaluate outputs from other agents",
11
+ "confidence": 0.85,
12
+ "performanceMetrics": {
13
+ "tasksCompleted": 0,
14
+ "averageQuality": 0,
15
+ "averageTimeMs": 0
16
+ }
17
+ },
18
+ {
19
+ "name": "validation",
20
+ "description": "Validate correctness and accuracy",
21
+ "confidence": 0.8,
22
+ "performanceMetrics": {
23
+ "tasksCompleted": 0,
24
+ "averageQuality": 0,
25
+ "averageTimeMs": 0
26
+ }
27
+ },
28
+ {
29
+ "name": "feedback",
30
+ "description": "Provide constructive feedback",
31
+ "confidence": 0.9,
32
+ "performanceMetrics": {
33
+ "tasksCompleted": 0,
34
+ "averageQuality": 0,
35
+ "averageTimeMs": 0
36
+ }
37
+ },
38
+ {
39
+ "name": "logical_analysis",
40
+ "description": "Analyze logical consistency",
41
+ "confidence": 0.85,
42
+ "performanceMetrics": {
43
+ "tasksCompleted": 0,
44
+ "averageQuality": 0,
45
+ "averageTimeMs": 0
46
+ }
47
+ }
48
+ ],
49
+ "maxConcurrentTasks": 5,
50
+ "confidenceThreshold": 0.7,
51
+ "metadata": {
52
+ "createdAt": "2026-02-03T08:15:04.310Z",
53
+ "version": "1.0.0",
54
+ "config": {}
55
+ }
56
+ },
57
+ "performanceHistory": []
58
+ }
@@ -0,0 +1,68 @@
1
+ {
2
+ "config": {
3
+ "id": "1770106540588-pvitt55",
4
+ "name": "LogicMaster",
5
+ "type": "reasoner",
6
+ "subtype": "chain_of_thought",
7
+ "capabilities": [
8
+ {
9
+ "name": "chain_of_thought",
10
+ "description": "Step-by-step reasoning",
11
+ "confidence": 0.9,
12
+ "performanceMetrics": {
13
+ "tasksCompleted": 0,
14
+ "averageQuality": 0,
15
+ "averageTimeMs": 0
16
+ }
17
+ },
18
+ {
19
+ "name": "tree_of_thought",
20
+ "description": "Explore multiple reasoning paths",
21
+ "confidence": 0.85,
22
+ "performanceMetrics": {
23
+ "tasksCompleted": 0,
24
+ "averageQuality": 0,
25
+ "averageTimeMs": 0
26
+ }
27
+ },
28
+ {
29
+ "name": "analogical_reasoning",
30
+ "description": "Reason by analogy",
31
+ "confidence": 0.8,
32
+ "performanceMetrics": {
33
+ "tasksCompleted": 0,
34
+ "averageQuality": 0,
35
+ "averageTimeMs": 0
36
+ }
37
+ },
38
+ {
39
+ "name": "abductive_reasoning",
40
+ "description": "Inference to best explanation",
41
+ "confidence": 0.75,
42
+ "performanceMetrics": {
43
+ "tasksCompleted": 0,
44
+ "averageQuality": 0,
45
+ "averageTimeMs": 0
46
+ }
47
+ },
48
+ {
49
+ "name": "problem_solving",
50
+ "description": "General problem-solving",
51
+ "confidence": 0.8,
52
+ "performanceMetrics": {
53
+ "tasksCompleted": 0,
54
+ "averageQuality": 0,
55
+ "averageTimeMs": 0
56
+ }
57
+ }
58
+ ],
59
+ "maxConcurrentTasks": 3,
60
+ "confidenceThreshold": 0.7,
61
+ "metadata": {
62
+ "createdAt": "2026-02-03T08:15:40.588Z",
63
+ "version": "1.0.0",
64
+ "config": {}
65
+ }
66
+ },
67
+ "performanceHistory": []
68
+ }
@@ -0,0 +1,58 @@
1
+ {
2
+ "config": {
3
+ "id": "1770106540595-z2ya871",
4
+ "name": "SafetyCheck",
5
+ "type": "critic",
6
+ "subtype": "safety",
7
+ "capabilities": [
8
+ {
9
+ "name": "evaluation",
10
+ "description": "Evaluate outputs from other agents",
11
+ "confidence": 0.85,
12
+ "performanceMetrics": {
13
+ "tasksCompleted": 0,
14
+ "averageQuality": 0,
15
+ "averageTimeMs": 0
16
+ }
17
+ },
18
+ {
19
+ "name": "validation",
20
+ "description": "Validate correctness and accuracy",
21
+ "confidence": 0.8,
22
+ "performanceMetrics": {
23
+ "tasksCompleted": 0,
24
+ "averageQuality": 0,
25
+ "averageTimeMs": 0
26
+ }
27
+ },
28
+ {
29
+ "name": "feedback",
30
+ "description": "Provide constructive feedback",
31
+ "confidence": 0.9,
32
+ "performanceMetrics": {
33
+ "tasksCompleted": 0,
34
+ "averageQuality": 0,
35
+ "averageTimeMs": 0
36
+ }
37
+ },
38
+ {
39
+ "name": "logical_analysis",
40
+ "description": "Analyze logical consistency",
41
+ "confidence": 0.85,
42
+ "performanceMetrics": {
43
+ "tasksCompleted": 0,
44
+ "averageQuality": 0,
45
+ "averageTimeMs": 0
46
+ }
47
+ }
48
+ ],
49
+ "maxConcurrentTasks": 5,
50
+ "confidenceThreshold": 0.7,
51
+ "metadata": {
52
+ "createdAt": "2026-02-03T08:15:40.595Z",
53
+ "version": "1.0.0",
54
+ "config": {}
55
+ }
56
+ },
57
+ "performanceHistory": []
58
+ }
@@ -0,0 +1,68 @@
1
+ {
2
+ "config": {
3
+ "id": "1770106710890-0e2naq1",
4
+ "name": "LogicMaster",
5
+ "type": "reasoner",
6
+ "subtype": "chain_of_thought",
7
+ "capabilities": [
8
+ {
9
+ "name": "chain_of_thought",
10
+ "description": "Step-by-step reasoning",
11
+ "confidence": 0.9,
12
+ "performanceMetrics": {
13
+ "tasksCompleted": 0,
14
+ "averageQuality": 0,
15
+ "averageTimeMs": 0
16
+ }
17
+ },
18
+ {
19
+ "name": "tree_of_thought",
20
+ "description": "Explore multiple reasoning paths",
21
+ "confidence": 0.85,
22
+ "performanceMetrics": {
23
+ "tasksCompleted": 0,
24
+ "averageQuality": 0,
25
+ "averageTimeMs": 0
26
+ }
27
+ },
28
+ {
29
+ "name": "analogical_reasoning",
30
+ "description": "Reason by analogy",
31
+ "confidence": 0.8,
32
+ "performanceMetrics": {
33
+ "tasksCompleted": 0,
34
+ "averageQuality": 0,
35
+ "averageTimeMs": 0
36
+ }
37
+ },
38
+ {
39
+ "name": "abductive_reasoning",
40
+ "description": "Inference to best explanation",
41
+ "confidence": 0.75,
42
+ "performanceMetrics": {
43
+ "tasksCompleted": 0,
44
+ "averageQuality": 0,
45
+ "averageTimeMs": 0
46
+ }
47
+ },
48
+ {
49
+ "name": "problem_solving",
50
+ "description": "General problem-solving",
51
+ "confidence": 0.8,
52
+ "performanceMetrics": {
53
+ "tasksCompleted": 0,
54
+ "averageQuality": 0,
55
+ "averageTimeMs": 0
56
+ }
57
+ }
58
+ ],
59
+ "maxConcurrentTasks": 3,
60
+ "confidenceThreshold": 0.7,
61
+ "metadata": {
62
+ "createdAt": "2026-02-03T08:18:30.890Z",
63
+ "version": "1.0.0",
64
+ "config": {}
65
+ }
66
+ },
67
+ "performanceHistory": []
68
+ }
@@ -0,0 +1,58 @@
1
+ {
2
+ "config": {
3
+ "id": "1770106710893-r076yxx",
4
+ "name": "SafetyCheck",
5
+ "type": "critic",
6
+ "subtype": "safety",
7
+ "capabilities": [
8
+ {
9
+ "name": "evaluation",
10
+ "description": "Evaluate outputs from other agents",
11
+ "confidence": 0.85,
12
+ "performanceMetrics": {
13
+ "tasksCompleted": 0,
14
+ "averageQuality": 0,
15
+ "averageTimeMs": 0
16
+ }
17
+ },
18
+ {
19
+ "name": "validation",
20
+ "description": "Validate correctness and accuracy",
21
+ "confidence": 0.8,
22
+ "performanceMetrics": {
23
+ "tasksCompleted": 0,
24
+ "averageQuality": 0,
25
+ "averageTimeMs": 0
26
+ }
27
+ },
28
+ {
29
+ "name": "feedback",
30
+ "description": "Provide constructive feedback",
31
+ "confidence": 0.9,
32
+ "performanceMetrics": {
33
+ "tasksCompleted": 0,
34
+ "averageQuality": 0,
35
+ "averageTimeMs": 0
36
+ }
37
+ },
38
+ {
39
+ "name": "logical_analysis",
40
+ "description": "Analyze logical consistency",
41
+ "confidence": 0.85,
42
+ "performanceMetrics": {
43
+ "tasksCompleted": 0,
44
+ "averageQuality": 0,
45
+ "averageTimeMs": 0
46
+ }
47
+ }
48
+ ],
49
+ "maxConcurrentTasks": 5,
50
+ "confidenceThreshold": 0.7,
51
+ "metadata": {
52
+ "createdAt": "2026-02-03T08:18:30.893Z",
53
+ "version": "1.0.0",
54
+ "config": {}
55
+ }
56
+ },
57
+ "performanceHistory": []
58
+ }
@@ -0,0 +1,68 @@
1
+ {
2
+ "config": {
3
+ "id": "1770109212161-4ybd0i7",
4
+ "name": "LogicMaster",
5
+ "type": "reasoner",
6
+ "subtype": "chain_of_thought",
7
+ "capabilities": [
8
+ {
9
+ "name": "chain_of_thought",
10
+ "description": "Step-by-step reasoning",
11
+ "confidence": 0.9,
12
+ "performanceMetrics": {
13
+ "tasksCompleted": 0,
14
+ "averageQuality": 0,
15
+ "averageTimeMs": 0
16
+ }
17
+ },
18
+ {
19
+ "name": "tree_of_thought",
20
+ "description": "Explore multiple reasoning paths",
21
+ "confidence": 0.85,
22
+ "performanceMetrics": {
23
+ "tasksCompleted": 0,
24
+ "averageQuality": 0,
25
+ "averageTimeMs": 0
26
+ }
27
+ },
28
+ {
29
+ "name": "analogical_reasoning",
30
+ "description": "Reason by analogy",
31
+ "confidence": 0.8,
32
+ "performanceMetrics": {
33
+ "tasksCompleted": 0,
34
+ "averageQuality": 0,
35
+ "averageTimeMs": 0
36
+ }
37
+ },
38
+ {
39
+ "name": "abductive_reasoning",
40
+ "description": "Inference to best explanation",
41
+ "confidence": 0.75,
42
+ "performanceMetrics": {
43
+ "tasksCompleted": 0,
44
+ "averageQuality": 0,
45
+ "averageTimeMs": 0
46
+ }
47
+ },
48
+ {
49
+ "name": "problem_solving",
50
+ "description": "General problem-solving",
51
+ "confidence": 0.8,
52
+ "performanceMetrics": {
53
+ "tasksCompleted": 0,
54
+ "averageQuality": 0,
55
+ "averageTimeMs": 0
56
+ }
57
+ }
58
+ ],
59
+ "maxConcurrentTasks": 3,
60
+ "confidenceThreshold": 0.7,
61
+ "metadata": {
62
+ "createdAt": "2026-02-03T09:00:12.161Z",
63
+ "version": "1.0.0",
64
+ "config": {}
65
+ }
66
+ },
67
+ "performanceHistory": []
68
+ }