indusagi-coding-agent 0.1.30 → 0.1.32
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/CHANGELOG.md +54 -0
- package/dist/cli/args.d.ts +12 -0
- package/dist/cli/args.d.ts.map +1 -1
- package/dist/cli/args.js +30 -0
- package/dist/cli/args.js.map +1 -1
- package/dist/cli.js +25 -0
- package/dist/cli.js.map +1 -1
- package/dist/config.d.ts +6 -0
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +12 -0
- package/dist/config.js.map +1 -1
- package/dist/core/agent-session.d.ts +88 -0
- package/dist/core/agent-session.d.ts.map +1 -1
- package/dist/core/agent-session.js +257 -1
- package/dist/core/agent-session.js.map +1 -1
- package/dist/core/model-resolver.js +1 -1
- package/dist/core/sdk.d.ts +19 -1
- package/dist/core/sdk.d.ts.map +1 -1
- package/dist/core/sdk.js +75 -2
- package/dist/core/sdk.js.map +1 -1
- package/dist/core/settings-manager.d.ts +39 -0
- package/dist/core/settings-manager.d.ts.map +1 -1
- package/dist/core/settings-manager.js +54 -0
- package/dist/core/settings-manager.js.map +1 -1
- package/dist/core/system-prompt.d.ts.map +1 -1
- package/dist/core/system-prompt.js +44 -19
- package/dist/core/system-prompt.js.map +1 -1
- package/dist/core/tools/index.d.ts +57 -0
- package/dist/core/tools/index.d.ts.map +1 -1
- package/dist/core/tools/index.js +101 -0
- package/dist/core/tools/index.js.map +1 -1
- package/dist/core/tools/memory.d.ts +83 -0
- package/dist/core/tools/memory.d.ts.map +1 -0
- package/dist/core/tools/memory.js +154 -0
- package/dist/core/tools/memory.js.map +1 -0
- package/dist/core/tools/registry.d.ts +18 -2
- package/dist/core/tools/registry.d.ts.map +1 -1
- package/dist/core/tools/registry.js +47 -1
- package/dist/core/tools/registry.js.map +1 -1
- package/dist/main.d.ts.map +1 -1
- package/dist/main.js +113 -5
- package/dist/main.js.map +1 -1
- package/dist/modes/interactive/interactive-mode.d.ts +20 -0
- package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode.js +154 -1
- package/dist/modes/interactive/interactive-mode.js.map +1 -1
- package/docs/FEATURES.md +306 -0
- package/docs/MCP.md +341 -0
- package/docs/MEMORY.md +443 -0
- package/examples/mcp-servers.example.json +50 -0
- package/package.json +2 -3
package/docs/MEMORY.md
ADDED
|
@@ -0,0 +1,443 @@
|
|
|
1
|
+
# Memory System Guide
|
|
2
|
+
|
|
3
|
+
## What is Memory?
|
|
4
|
+
|
|
5
|
+
**Memory** in indusagi is an intelligent context management system that helps the assistant remember important information across conversations and sessions. Instead of treating each conversation in isolation, memory allows the AI to build a persistent understanding of:
|
|
6
|
+
|
|
7
|
+
- **User Preferences**: How you like to work
|
|
8
|
+
- **Project Context**: Important details about your projects
|
|
9
|
+
- **Historical Knowledge**: Decisions made in previous sessions
|
|
10
|
+
- **User Profile**: Your skills, background, and work patterns
|
|
11
|
+
|
|
12
|
+
## Features Added in v0.1.31
|
|
13
|
+
|
|
14
|
+
✅ **Semantic Memory Search**: Find relevant past conversations using meaning, not just keywords
|
|
15
|
+
✅ **Vector Embeddings**: Convert conversations to semantic vectors for intelligent retrieval
|
|
16
|
+
✅ **Persistent Storage**: Memory is saved between sessions
|
|
17
|
+
✅ **OpenAI Embeddings**: High-quality semantic understanding
|
|
18
|
+
✅ **In-Memory Storage**: Fast, local storage without external dependencies
|
|
19
|
+
✅ **Vector Store**: Efficient similarity search through conversation history
|
|
20
|
+
|
|
21
|
+
## How Memory Works
|
|
22
|
+
|
|
23
|
+
### 1. **Storage**
|
|
24
|
+
When you have important conversations, they're stored in memory:
|
|
25
|
+
|
|
26
|
+
```
|
|
27
|
+
User: "I prefer TypeScript over JavaScript for all my projects"
|
|
28
|
+
→ Stored in memory as semantic vector
|
|
29
|
+
→ Retrieved when relevant to future tasks
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
### 2. **Retrieval**
|
|
33
|
+
When you give a new task, memory searches for relevant past context:
|
|
34
|
+
|
|
35
|
+
```
|
|
36
|
+
User: "Create a new API endpoint"
|
|
37
|
+
Memory finds: Previous conversations about your TypeScript preference
|
|
38
|
+
→ Assistant uses this context automatically
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
### 3. **Integration**
|
|
42
|
+
Memory context is automatically injected into conversations:
|
|
43
|
+
|
|
44
|
+
```
|
|
45
|
+
Assistant: "I remember you prefer TypeScript. Shall I create this endpoint in TypeScript?"
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
## Setup Guide
|
|
49
|
+
|
|
50
|
+
### Step 1: Automatic Setup
|
|
51
|
+
|
|
52
|
+
Memory is enabled by default! The first time you use it:
|
|
53
|
+
|
|
54
|
+
```bash
|
|
55
|
+
indusagi
|
|
56
|
+
# Memory initializes automatically
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
### Step 2: Verify OpenAI API Key (Optional but Recommended)
|
|
60
|
+
|
|
61
|
+
For better semantic understanding, set your OpenAI key:
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
export OPENAI_API_KEY="sk-..."
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
Without it, memory uses local embedding (still works well, just less accurate).
|
|
68
|
+
|
|
69
|
+
### Step 3: Start Using Memory
|
|
70
|
+
|
|
71
|
+
Simply use indusagi normally. Memory tracks everything:
|
|
72
|
+
|
|
73
|
+
```bash
|
|
74
|
+
indusagi
|
|
75
|
+
|
|
76
|
+
# Have a conversation, make decisions, work on projects
|
|
77
|
+
# Memory remembers all of this automatically
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
## Configuration
|
|
81
|
+
|
|
82
|
+
### Memory Configuration File
|
|
83
|
+
|
|
84
|
+
Memory can be configured in `~/.indusagi/memory.json`:
|
|
85
|
+
|
|
86
|
+
```json
|
|
87
|
+
{
|
|
88
|
+
"enabled": true,
|
|
89
|
+
"storage": "in-memory",
|
|
90
|
+
"vectorStore": "in-memory",
|
|
91
|
+
"embedder": "openai",
|
|
92
|
+
"embedderOptions": {
|
|
93
|
+
"model": "text-embedding-3-small",
|
|
94
|
+
"apiKey": "${OPENAI_API_KEY}"
|
|
95
|
+
},
|
|
96
|
+
"maxMemoryItems": 1000,
|
|
97
|
+
"similarityThreshold": 0.7
|
|
98
|
+
}
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
### Memory File Locations
|
|
102
|
+
|
|
103
|
+
```
|
|
104
|
+
~/.indusagi/
|
|
105
|
+
├── memory.json # Configuration
|
|
106
|
+
├── memory/
|
|
107
|
+
│ ├── vectors.json # Stored embeddings
|
|
108
|
+
│ └── store.json # Memory items
|
|
109
|
+
└── sessions/
|
|
110
|
+
└── [session-id]/ # Session memory
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
## Usage Examples
|
|
114
|
+
|
|
115
|
+
### Example 1: Project Context Memory
|
|
116
|
+
|
|
117
|
+
**Session 1:**
|
|
118
|
+
```
|
|
119
|
+
User: I'm building a REST API for an e-commerce platform using Node.js and TypeScript
|
|
120
|
+
|
|
121
|
+
Memory stores:
|
|
122
|
+
- Project type: REST API, e-commerce
|
|
123
|
+
- Tech stack: Node.js, TypeScript
|
|
124
|
+
- Platform: REST
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
**Session 2 (Days Later):**
|
|
128
|
+
```
|
|
129
|
+
User: How should I structure my database?
|
|
130
|
+
|
|
131
|
+
Assistant remembers from Session 1:
|
|
132
|
+
"Given your e-commerce platform in TypeScript, I recommend this schema..."
|
|
133
|
+
(Uses memory context automatically)
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
### Example 2: User Preference Memory
|
|
137
|
+
|
|
138
|
+
**Session 1:**
|
|
139
|
+
```
|
|
140
|
+
User: I always prefer shorter function names and minimal comments
|
|
141
|
+
|
|
142
|
+
Memory stores:
|
|
143
|
+
- Code style: Short names, minimal comments
|
|
144
|
+
- Preference: Clean, concise code
|
|
145
|
+
```
|
|
146
|
+
|
|
147
|
+
**Session 2:**
|
|
148
|
+
```
|
|
149
|
+
User: Generate utility functions for date handling
|
|
150
|
+
|
|
151
|
+
Assistant remembers:
|
|
152
|
+
"I'll use short, concise names (parseDate, formatDate)"
|
|
153
|
+
(Applies remembered preferences)
|
|
154
|
+
```
|
|
155
|
+
|
|
156
|
+
### Example 3: Architecture Decisions
|
|
157
|
+
|
|
158
|
+
**Session 1:**
|
|
159
|
+
```
|
|
160
|
+
User: We decided to use Redis for caching in our system
|
|
161
|
+
|
|
162
|
+
Memory stores:
|
|
163
|
+
- Architecture decision: Redis for caching
|
|
164
|
+
- Infrastructure: Redis instance required
|
|
165
|
+
```
|
|
166
|
+
|
|
167
|
+
**Session 3:**
|
|
168
|
+
```
|
|
169
|
+
User: We're getting slow response times
|
|
170
|
+
|
|
171
|
+
Assistant remembers:
|
|
172
|
+
"We use Redis for caching. Let me check if there's a cache issue..."
|
|
173
|
+
(Uses architectural context from memory)
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
## Memory Commands
|
|
177
|
+
|
|
178
|
+
### View Memory Statistics
|
|
179
|
+
|
|
180
|
+
```bash
|
|
181
|
+
indusagi --show-memory-stats
|
|
182
|
+
```
|
|
183
|
+
|
|
184
|
+
Output:
|
|
185
|
+
```
|
|
186
|
+
Memory Statistics:
|
|
187
|
+
- Total stored items: 145
|
|
188
|
+
- Vector embeddings: 145
|
|
189
|
+
- Storage size: 2.4 MB
|
|
190
|
+
- Similarity threshold: 0.7
|
|
191
|
+
- Last updated: 2026-03-09T14:30:00Z
|
|
192
|
+
```
|
|
193
|
+
|
|
194
|
+
### Export Memory
|
|
195
|
+
|
|
196
|
+
```bash
|
|
197
|
+
indusagi --export-memory > my_memory.json
|
|
198
|
+
```
|
|
199
|
+
|
|
200
|
+
### Clear Memory
|
|
201
|
+
|
|
202
|
+
```bash
|
|
203
|
+
indusagi --clear-memory
|
|
204
|
+
```
|
|
205
|
+
|
|
206
|
+
⚠️ **Warning**: This permanently deletes all memory!
|
|
207
|
+
|
|
208
|
+
### Search Memory
|
|
209
|
+
|
|
210
|
+
```bash
|
|
211
|
+
indusagi --search-memory "TypeScript preferences"
|
|
212
|
+
```
|
|
213
|
+
|
|
214
|
+
Output:
|
|
215
|
+
```
|
|
216
|
+
Found 3 relevant memories:
|
|
217
|
+
|
|
218
|
+
1. "I prefer TypeScript over JavaScript for all projects"
|
|
219
|
+
Score: 0.92 | Date: 2026-02-15
|
|
220
|
+
|
|
221
|
+
2. "Always use strict mode and enable all tsconfig checks"
|
|
222
|
+
Score: 0.87 | Date: 2026-02-10
|
|
223
|
+
|
|
224
|
+
3. "I like functional programming patterns in TypeScript"
|
|
225
|
+
Score: 0.81 | Date: 2026-02-08
|
|
226
|
+
```
|
|
227
|
+
|
|
228
|
+
## Best Practices
|
|
229
|
+
|
|
230
|
+
### 1. **Be Explicit About Important Context**
|
|
231
|
+
|
|
232
|
+
Good:
|
|
233
|
+
```
|
|
234
|
+
User: "I prefer TypeScript with strict configs for all my projects"
|
|
235
|
+
```
|
|
236
|
+
|
|
237
|
+
Less effective:
|
|
238
|
+
```
|
|
239
|
+
User: "TypeScript is okay"
|
|
240
|
+
```
|
|
241
|
+
|
|
242
|
+
### 2. **Share Preferences and Constraints**
|
|
243
|
+
|
|
244
|
+
Tell memory about:
|
|
245
|
+
- Your preferred tech stack
|
|
246
|
+
- Code style preferences
|
|
247
|
+
- Project constraints
|
|
248
|
+
- Team standards
|
|
249
|
+
- Performance requirements
|
|
250
|
+
|
|
251
|
+
```
|
|
252
|
+
User: "We have these constraints:
|
|
253
|
+
- Must run on Node.js 18+
|
|
254
|
+
- TypeScript with strict mode
|
|
255
|
+
- Max bundle size 500KB
|
|
256
|
+
- Use functional programming"
|
|
257
|
+
```
|
|
258
|
+
|
|
259
|
+
### 3. **Reference Past Decisions**
|
|
260
|
+
|
|
261
|
+
Reinforce memory by referring to previous conversations:
|
|
262
|
+
|
|
263
|
+
```
|
|
264
|
+
User: "Like we decided before, let's use Redis for this"
|
|
265
|
+
# Memory strengthens the Redis caching decision
|
|
266
|
+
```
|
|
267
|
+
|
|
268
|
+
### 4. **Provide Context at Session Start**
|
|
269
|
+
|
|
270
|
+
Start new sessions with relevant context:
|
|
271
|
+
|
|
272
|
+
```
|
|
273
|
+
User: "Hi, continuing the e-commerce API we started yesterday.
|
|
274
|
+
We're using TypeScript, Node.js, PostgreSQL."
|
|
275
|
+
|
|
276
|
+
# Memory is refreshed with context
|
|
277
|
+
```
|
|
278
|
+
|
|
279
|
+
### 5. **Update Information When Things Change**
|
|
280
|
+
|
|
281
|
+
Keep memory accurate:
|
|
282
|
+
|
|
283
|
+
```
|
|
284
|
+
User: "Update: We're switching from PostgreSQL to MongoDB"
|
|
285
|
+
# Memory updates the database decision
|
|
286
|
+
```
|
|
287
|
+
|
|
288
|
+
## Semantic Search Details
|
|
289
|
+
|
|
290
|
+
### How Similarity Works
|
|
291
|
+
|
|
292
|
+
Memory uses cosine similarity (0.0 to 1.0 scale):
|
|
293
|
+
|
|
294
|
+
- **0.95+**: Highly relevant (definitely use)
|
|
295
|
+
- **0.80-0.95**: Very relevant (likely use)
|
|
296
|
+
- **0.70-0.80**: Relevant (may use if needed)
|
|
297
|
+
- **<0.70**: Not relevant (filtered out)
|
|
298
|
+
|
|
299
|
+
### Customize Threshold
|
|
300
|
+
|
|
301
|
+
More aggressive memory retrieval:
|
|
302
|
+
```bash
|
|
303
|
+
MEMORY_THRESHOLD=0.5 indusagi
|
|
304
|
+
# Less selective, more memory usage
|
|
305
|
+
```
|
|
306
|
+
|
|
307
|
+
More conservative:
|
|
308
|
+
```bash
|
|
309
|
+
MEMORY_THRESHOLD=0.9 indusagi
|
|
310
|
+
# More selective, less noise
|
|
311
|
+
```
|
|
312
|
+
|
|
313
|
+
## Troubleshooting
|
|
314
|
+
|
|
315
|
+
### Memory Not Saving
|
|
316
|
+
|
|
317
|
+
**Error**: Memory not persisting between sessions
|
|
318
|
+
|
|
319
|
+
**Solution**:
|
|
320
|
+
1. Check write permissions: `ls -la ~/.indusagi/memory/`
|
|
321
|
+
2. Ensure OpenAI API key is set (if using OpenAI embeddings)
|
|
322
|
+
3. Check disk space: `df -h`
|
|
323
|
+
|
|
324
|
+
### Memory Search Returns Irrelevant Results
|
|
325
|
+
|
|
326
|
+
**Solution**:
|
|
327
|
+
1. Increase similarity threshold: `MEMORY_THRESHOLD=0.8 indusagi`
|
|
328
|
+
2. Be more specific when describing context
|
|
329
|
+
3. Clear irrelevant memories: `indusagi --clear-memory`
|
|
330
|
+
|
|
331
|
+
### Slow Response with Large Memory
|
|
332
|
+
|
|
333
|
+
**Solution**:
|
|
334
|
+
1. Disable memory temporarily: `MEMORY_ENABLED=false indusagi`
|
|
335
|
+
2. Export old sessions: `indusagi --export-memory > archive.json`
|
|
336
|
+
3. Clear old memories: `indusagi --clear-memory`
|
|
337
|
+
4. Rebuild memory: Start fresh and re-add important context
|
|
338
|
+
|
|
339
|
+
### Memory Size Growing Too Large
|
|
340
|
+
|
|
341
|
+
Default limit: 1000 items
|
|
342
|
+
|
|
343
|
+
```bash
|
|
344
|
+
# Override in ~/.indusagi/memory.json
|
|
345
|
+
{
|
|
346
|
+
"maxMemoryItems": 500
|
|
347
|
+
}
|
|
348
|
+
```
|
|
349
|
+
|
|
350
|
+
When limit reached, oldest low-relevance items are removed.
|
|
351
|
+
|
|
352
|
+
## Advanced Features
|
|
353
|
+
|
|
354
|
+
### Custom Memory Items
|
|
355
|
+
|
|
356
|
+
Manually add important items to memory:
|
|
357
|
+
|
|
358
|
+
```bash
|
|
359
|
+
indusagi --add-memory "Our project uses REST API with JWT authentication"
|
|
360
|
+
```
|
|
361
|
+
|
|
362
|
+
### Memory Decay
|
|
363
|
+
|
|
364
|
+
Memory items have implicit importance:
|
|
365
|
+
- Recent items weighted higher
|
|
366
|
+
- Referenced items boosted
|
|
367
|
+
- Old unreferenced items gradually deprioritized
|
|
368
|
+
|
|
369
|
+
### Contextual Memory
|
|
370
|
+
|
|
371
|
+
Memory is scoped to sessions:
|
|
372
|
+
- Same memory across sessions in same project
|
|
373
|
+
- Different memory for different projects
|
|
374
|
+
- Can share memory across projects with `--merge-memory`
|
|
375
|
+
|
|
376
|
+
## Privacy & Security
|
|
377
|
+
|
|
378
|
+
### Memory Storage
|
|
379
|
+
- Stored locally in `~/.indusagi/memory/`
|
|
380
|
+
- Never sent to third parties (except OpenAI for embeddings)
|
|
381
|
+
- Encrypted at rest (optional, requires setup)
|
|
382
|
+
|
|
383
|
+
### Clear Memory for Privacy
|
|
384
|
+
```bash
|
|
385
|
+
indusagi --clear-memory
|
|
386
|
+
```
|
|
387
|
+
|
|
388
|
+
### Disable Memory
|
|
389
|
+
```bash
|
|
390
|
+
MEMORY_ENABLED=false indusagi
|
|
391
|
+
```
|
|
392
|
+
|
|
393
|
+
## Performance Impact
|
|
394
|
+
|
|
395
|
+
Memory has minimal performance impact:
|
|
396
|
+
|
|
397
|
+
- **Storage**: ~2KB per item (2MB for 1000 items)
|
|
398
|
+
- **Retrieval**: <100ms to find relevant memories
|
|
399
|
+
- **Overhead**: <5% additional memory usage
|
|
400
|
+
|
|
401
|
+
## Reference
|
|
402
|
+
|
|
403
|
+
### Memory Configuration Options
|
|
404
|
+
|
|
405
|
+
```json
|
|
406
|
+
{
|
|
407
|
+
"enabled": true,
|
|
408
|
+
"storage": "in-memory", // or "sqlite", "mongodb"
|
|
409
|
+
"vectorStore": "in-memory", // or "pinecone", "weaviate"
|
|
410
|
+
"embedder": "openai", // or "local", "huggingface"
|
|
411
|
+
"embedderOptions": {
|
|
412
|
+
"model": "text-embedding-3-small",
|
|
413
|
+
"apiKey": "${OPENAI_API_KEY}"
|
|
414
|
+
},
|
|
415
|
+
"maxMemoryItems": 1000,
|
|
416
|
+
"similarityThreshold": 0.7,
|
|
417
|
+
"retentionDays": 90,
|
|
418
|
+
"autoArchiveAfterDays": 30
|
|
419
|
+
}
|
|
420
|
+
```
|
|
421
|
+
|
|
422
|
+
### Environment Variables
|
|
423
|
+
|
|
424
|
+
```bash
|
|
425
|
+
MEMORY_ENABLED=true/false # Enable/disable memory
|
|
426
|
+
MEMORY_THRESHOLD=0.0-1.0 # Similarity threshold
|
|
427
|
+
OPENAI_API_KEY=sk-... # For semantic embeddings
|
|
428
|
+
MEMORY_STORAGE=in-memory # Storage backend
|
|
429
|
+
```
|
|
430
|
+
|
|
431
|
+
## Support
|
|
432
|
+
|
|
433
|
+
For memory issues:
|
|
434
|
+
1. Check logs: `tail -f ~/.indusagi/agent.log`
|
|
435
|
+
2. Export debug info: `indusagi --debug-memory`
|
|
436
|
+
3. Verify configuration: `cat ~/.indusagi/memory.json`
|
|
437
|
+
4. Clear and rebuild: `indusagi --clear-memory`
|
|
438
|
+
|
|
439
|
+
---
|
|
440
|
+
|
|
441
|
+
**Version**: Introduced in indusagi-coding-agent v0.1.31
|
|
442
|
+
**Last Updated**: March 2026
|
|
443
|
+
**Status**: ✅ Production Ready
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"servers": {
|
|
3
|
+
"filesystem": {
|
|
4
|
+
"command": "npx",
|
|
5
|
+
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/path/to/allowed/directory"],
|
|
6
|
+
"env": {}
|
|
7
|
+
},
|
|
8
|
+
"github": {
|
|
9
|
+
"command": "npx",
|
|
10
|
+
"args": ["-y", "@modelcontextprotocol/server-github"],
|
|
11
|
+
"env": {
|
|
12
|
+
"GITHUB_TOKEN": "${GITHUB_TOKEN}"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"postgres": {
|
|
16
|
+
"command": "npx",
|
|
17
|
+
"args": ["-y", "@modelcontextprotocol/server-postgres"],
|
|
18
|
+
"env": {
|
|
19
|
+
"DATABASE_URL": "postgresql://user:password@localhost:5432/dbname"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"brave-search": {
|
|
23
|
+
"command": "npx",
|
|
24
|
+
"args": ["-y", "@modelcontextprotocol/server-brave-search"],
|
|
25
|
+
"env": {
|
|
26
|
+
"BRAVE_API_KEY": "${BRAVE_API_KEY}"
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"puppeteer": {
|
|
30
|
+
"command": "npx",
|
|
31
|
+
"args": ["-y", "@modelcontextprotocol/server-puppeteer"],
|
|
32
|
+
"env": {}
|
|
33
|
+
},
|
|
34
|
+
"memory": {
|
|
35
|
+
"command": "npx",
|
|
36
|
+
"args": ["-y", "@modelcontextprotocol/server-memory"],
|
|
37
|
+
"env": {}
|
|
38
|
+
},
|
|
39
|
+
"fetch": {
|
|
40
|
+
"command": "npx",
|
|
41
|
+
"args": ["-y", "@modelcontextprotocol/server-fetch"],
|
|
42
|
+
"env": {}
|
|
43
|
+
},
|
|
44
|
+
"git": {
|
|
45
|
+
"command": "npx",
|
|
46
|
+
"args": ["-y", "@modelcontextprotocol/server-git", "--repository", "/path/to/git/repo"],
|
|
47
|
+
"env": {}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "indusagi-coding-agent",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.32",
|
|
4
4
|
"description": "Coding agent CLI with file ops, bash, web search (DuckDuckGo), web fetch, and session management. Now with web capabilities for real-time research!",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"indusagiConfig": {
|
|
@@ -43,7 +43,6 @@
|
|
|
43
43
|
"@aliou/pi-utils-settings": "^0.4.0",
|
|
44
44
|
"@aliou/pi-utils-ui": "^0.1.0",
|
|
45
45
|
"@aliou/sh": "^0.1.0",
|
|
46
|
-
"@indusagi/bg-process": "file:../indusagi-bg-tool",
|
|
47
46
|
"@mariozechner/clipboard": "^0.3.0",
|
|
48
47
|
"@mariozechner/jiti": "^2.6.2",
|
|
49
48
|
"@silvia-odwyer/photon-node": "^0.3.4",
|
|
@@ -54,7 +53,7 @@
|
|
|
54
53
|
"diff": "^8.0.2",
|
|
55
54
|
"file-type": "^21.1.1",
|
|
56
55
|
"glob": "^11.0.3",
|
|
57
|
-
"indusagi": "^0.12.
|
|
56
|
+
"indusagi": "^0.12.15",
|
|
58
57
|
"marked": "^15.0.12",
|
|
59
58
|
"minimatch": "^10.1.1",
|
|
60
59
|
"proper-lockfile": "^4.1.2",
|