@gotza02/sequential-thinking 2026.2.42 → 2026.2.43

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 (2) hide show
  1. package/README.md +32 -8
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -190,15 +190,39 @@ You are equipped with 33 definitive capabilities. You must choose the tool that
190
190
 
191
191
  ## Configuration Variables
192
192
 
193
- | Variable | Description | Required For |
193
+ ### Core Configuration
194
+ | Variable | Description | Default |
194
195
  | :--- | :--- | :--- |
195
- | `BRAVE_API_KEY` | Brave Search API Token | `web_search` (Provider: Brave) |
196
- | `EXA_API_KEY` | Exa.ai API Key | `web_search` (Provider: Exa) |
197
- | `GOOGLE_SEARCH_API_KEY` | Google Custom Search API Key | `web_search` (Provider: Google) |
198
- | `GOOGLE_SEARCH_CX` | Google Custom Search Engine ID | `web_search` (Provider: Google) |
199
- | `THOUGHTS_STORAGE_PATH` | Path to save thinking history (default: `thoughts_history.json`) | Persistence |
200
- | `NOTES_STORAGE_PATH` | Path to save notes (default: `project_notes.json`) | Persistence |
201
- | `DISABLE_THOUGHT_LOGGING` | Set to `true` to hide thoughts in console output | Optional |
196
+ | `THOUGHTS_STORAGE_PATH` | Path to save thinking history | `thoughts_history.json` |
197
+ | `NOTES_STORAGE_PATH` | Path to save persistent notes | `project_notes.json` |
198
+ | `CODE_DB_PATH` | Path to save code snippets | `code_database.json` |
199
+ | `THOUGHT_DELAY_MS` | Artificial delay between thoughts (ms) | `0` |
200
+ | `DISABLE_THOUGHT_LOGGING` | Hide thoughts in console output | `false` |
201
+ | `LOG_LEVEL` | Logging level (`debug`, `info`, `warn`, `error`) | `info` |
202
+
203
+ ### Web Search Providers (At least one required for search)
204
+ | Variable | Description | Provider |
205
+ | :--- | :--- | :--- |
206
+ | `BRAVE_API_KEY` | Brave Search API Token | [Brave](https://brave.com/search/api/) |
207
+ | `EXA_API_KEY` | Exa.ai API Key | [Exa](https://exa.ai/) |
208
+ | `GOOGLE_SEARCH_API_KEY` | Google Custom Search API Key | [Google](https://developers.google.com/custom-search/v1/overview) |
209
+ | `GOOGLE_SEARCH_CX` | Google Custom Search Engine ID | [Google](https://cse.google.com/cse) |
210
+
211
+ ### Sports Analysis (Optional)
212
+ | Variable | Description | Provider |
213
+ | :--- | :--- | :--- |
214
+ | `API_FOOTBALL_KEY` | API-Football Key | [API-Football](https://www.api-football.com/) |
215
+ | `FOOTBALL_DATA_KEY` | Football-Data.org API Key | [Football-Data](https://www.football-data.org/) |
216
+ | `SPORTS_DB_KEY` | TheSportsDB API Key | [TheSportsDB](https://www.thesportsdb.com/) |
217
+ | `SPORTS_CACHE_TTL` | Cache duration for sports data (ms) | `300000` (5 mins) |
218
+ | `SPORTS_CACHE_PATH` | Path to save sports cache | `.sports_cache.json` |
219
+
220
+ ### HTTP Server Mode (Optional)
221
+ | Variable | Description | Default |
222
+ | :--- | :--- | :--- |
223
+ | `PORT` | Port for HTTP server | `3000` |
224
+ | `CORS_ORIGIN` | Allowed CORS origin | `*` |
225
+ | `BODY_LIMIT` | Request body size limit | `10mb` |
202
226
 
203
227
  ## License
204
228
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gotza02/sequential-thinking",
3
- "version": "2026.2.42",
3
+ "version": "2026.2.43",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },