1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
//! # ReasonKit — The Reasoning Engine
//!
//! Complete ReasonKit suite providing auditable reasoning for production AI.
//!
//! This crate is a **meta-crate** that combines all ReasonKit components:
//!
//! | Component | Crate | Purpose |
//! |-----------|-------|---------|
//! | **Core** | [`reasonkit-core`] | Reasoning engine with ThinkTools |
//! | **Memory** | [`reasonkit-mem`] | Vector storage, hybrid search, RAPTOR trees |
//! | **Web** | [`reasonkit-web`] | Browser automation, MCP sidecar |
//! | **Org** | [`reasonkit-org`] | Task/time orchestration tooling |
//!
//! ## Quick Start
//!
//! ### Installation
//!
//! ```bash
//! # Install the complete suite (recommended)
//! cargo install reasonkit
//!
//! # Or install with specific features
//! cargo install reasonkit --no-default-features --features core
//! ```
//!
//! ### CLI Usage
//!
//! ```bash
//! # Run structured reasoning
//! reasonkit think --profile balanced "Should we migrate to microservices?"
//!
//! # Memory operations
//! reasonkit mem search "machine learning fundamentals"
//!
//! # Start MCP server
//! reasonkit serve
//! ```
//!
//! ### Library Usage
//!
//! ```rust,ignore
//! use reasonkit::prelude::*;
//!
//! #[tokio::main]
//! async fn main() -> anyhow::Result<()> {
//! // Access reasoning engine
//! let executor = reasonkit::reasoning::thinktool::ProtocolExecutor::new()?;
//! let result = executor.execute(
//! "gigathink",
//! reasonkit::reasoning::thinktool::ProtocolInput::query("Your question")
//! ).await?;
//!
//! Ok(())
//! }
//! ```
//!
//! ## Features
//!
//! | Feature | Description | Default |
//! |---------|-------------|---------|
//! | `full` | All components (core + mem + web + org) | Yes |
//! | `core` | Reasoning engine only | No |
//! | `mem` | Memory layer only | No |
//! | `web` | Web/browser automation only | No |
//! | `org` | Task/time orchestration tooling | No |
//! | `python` | Python bindings via PyO3 | No |
//! | `arf` | Autonomous Reasoning Framework | No |
//!
//! ## Architecture
//!
//! ```text
//! reasonkit (meta-crate)
//! │
//! ├── reasonkit-core ─── The Reasoning Engine
//! │ ├── ThinkTools (GigaThink, LaserLogic, BedRock, ProofGuard, BrutalHonesty)
//! │ ├── Protocol Executor
//! │ ├── LLM Client (18+ providers)
//! │ └── MCP Server
//! │
//! ├── reasonkit-mem ─── Memory Infrastructure
//! │ ├── Vector Storage (Qdrant)
//! │ ├── Sparse Index (Tantivy BM25)
//! │ ├── Hybrid Retrieval
//! │ └── RAPTOR Trees
//! │
//! ├── reasonkit-org ─── Operational Tooling
//! │ ├── Task/Time wrappers (Taskwarrior/Timewarrior)
//! │ ├── Local doctor / setup checks
//! │ └── Agent orchestration hooks (future)
//! │
//! └── reasonkit-web ─── Web Sensing Layer
//! ├── Browser Controller (CDP)
//! ├── Content Extraction
//! └── MCP Sidecar
//! ```
//!
//! ## Philosophy
//!
//! **"Designed, Not Dreamed"** — Structure beats raw intelligence.
//!
//! ReasonKit transforms ad-hoc LLM prompting into auditable, reproducible
//! reasoning chains through structured protocols.
//!
//! ## Links
//!
//! - Website: <https://reasonkit.sh>
//! - Documentation: <https://docs.rs/reasonkit>
//! - Repository: <https://github.com/reasonkit/reasonkit>
//!
//! [`reasonkit-core`]: https://docs.rs/reasonkit-core
//! [`reasonkit-mem`]: https://docs.rs/reasonkit-mem
//! [`reasonkit-org`]: https://docs.rs/reasonkit-org
//! [`reasonkit-web`]: https://docs.rs/reasonkit-web
// =============================================================================
// RE-EXPORTS
// =============================================================================
/// Re-export of `reasonkit-core` — The Reasoning Engine.
///
/// Provides ThinkTools, protocol execution, LLM client, and MCP server.
///
/// Note: Named `reasoning` to avoid conflict with Rust's `core` crate.
/// Re-export of `reasonkit-mem` — Memory Infrastructure.
///
/// Provides vector storage, hybrid search, RAPTOR trees, and knowledge base.
/// Re-export of `reasonkit-web` — Web Sensing Layer.
///
/// Provides browser automation, content extraction, and MCP sidecar.
// =============================================================================
// PRELUDE
// =============================================================================
/// Convenient imports for common usage patterns.
///
/// ```rust,ignore
/// use reasonkit::prelude::*;
/// ```
// =============================================================================
// VERSION INFO
// =============================================================================
/// Crate version string.
pub const VERSION: &str = env!;
/// Crate name.
pub const NAME: &str = env!;
/// Get version information for all enabled components.
/// Version information for all components.
// =============================================================================
// TESTS
// =============================================================================