@gotza02/sequential-thinking 1.0.1 → 1.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.
Files changed (2) hide show
  1. package/README.md +22 -7
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -49,9 +49,14 @@
49
49
  "command": "npx",
50
50
  "args": ["-y", "@gotza02/sequential-thinking"],
51
51
  "env": {
52
- "BRAVE_API_KEY": "YOUR_KEY_HERE",
52
+ "BRAVE_API_KEY": "YOUR_BRAVE_KEY",
53
+ "EXA_API_KEY": "YOUR_EXA_KEY",
54
+ "GOOGLE_SEARCH_API_KEY": "YOUR_GOOGLE_KEY",
55
+ "GOOGLE_SEARCH_CX": "YOUR_GOOGLE_CX",
53
56
  "THOUGHTS_STORAGE_PATH": "/absolute/path/to/thoughts_history.json",
54
- "NOTES_STORAGE_PATH": "/absolute/path/to/project_notes.json"
57
+ "NOTES_STORAGE_PATH": "/absolute/path/to/project_notes.json",
58
+ "THOUGHT_DELAY_MS": "0",
59
+ "DISABLE_THOUGHT_LOGGING": "false"
55
60
  }
56
61
  }
57
62
  }
@@ -68,7 +73,12 @@
68
73
  "command": "npx",
69
74
  "args": ["-y", "@gotza02/sequential-thinking"],
70
75
  "env": {
71
- "BRAVE_API_KEY": "YOUR_KEY_HERE"
76
+ "BRAVE_API_KEY": "YOUR_BRAVE_KEY",
77
+ "EXA_API_KEY": "YOUR_EXA_KEY",
78
+ "GOOGLE_SEARCH_API_KEY": "YOUR_GOOGLE_KEY",
79
+ "GOOGLE_SEARCH_CX": "YOUR_GOOGLE_CX",
80
+ "THOUGHTS_STORAGE_PATH": "/absolute/path/to/thoughts_history.json",
81
+ "NOTES_STORAGE_PATH": "/absolute/path/to/project_notes.json"
72
82
  }
73
83
  }
74
84
  }
@@ -98,9 +108,14 @@
98
108
  "command": "node",
99
109
  "args": ["/Users/username/projects/sequential-thinking/dist/index.js"],
100
110
  "env": {
101
- "BRAVE_API_KEY": "YOUR_KEY_HERE",
102
- "THOUGHTS_STORAGE_PATH": "thoughts_history.json",
103
- "NOTES_STORAGE_PATH": "project_notes.json"
111
+ "BRAVE_API_KEY": "YOUR_BRAVE_KEY",
112
+ "EXA_API_KEY": "YOUR_EXA_KEY",
113
+ "GOOGLE_SEARCH_API_KEY": "YOUR_GOOGLE_KEY",
114
+ "GOOGLE_SEARCH_CX": "YOUR_GOOGLE_CX",
115
+ "THOUGHTS_STORAGE_PATH": "thoughts_history.json",
116
+ "NOTES_STORAGE_PATH": "project_notes.json",
117
+ "THOUGHT_DELAY_MS": "0",
118
+ "DISABLE_THOUGHT_LOGGING": "false"
104
119
  }
105
120
  }
106
121
  }
@@ -165,4 +180,4 @@ npm test
165
180
  ```
166
181
 
167
182
  ## License
168
- MIT
183
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gotza02/sequential-thinking",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -46,4 +46,4 @@
46
46
  "shx": "^0.3.4",
47
47
  "vitest": "^2.1.8"
48
48
  }
49
- }
49
+ }