seu-claude 1.0.0 → 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.
- package/CHANGELOG.md +49 -2
- package/README.md +139 -42
- package/dist/__tests__/chunker.test.d.ts +2 -0
- package/dist/__tests__/chunker.test.d.ts.map +1 -0
- package/dist/__tests__/chunker.test.js +351 -0
- package/dist/__tests__/chunker.test.js.map +1 -0
- package/dist/__tests__/config.test.d.ts +2 -0
- package/dist/__tests__/config.test.d.ts.map +1 -0
- package/dist/__tests__/config.test.js +88 -0
- package/dist/__tests__/config.test.js.map +1 -0
- package/dist/__tests__/crawler.test.d.ts +2 -0
- package/dist/__tests__/crawler.test.d.ts.map +1 -0
- package/dist/__tests__/crawler.test.js +251 -0
- package/dist/__tests__/crawler.test.js.map +1 -0
- package/dist/__tests__/embed.test.d.ts +2 -0
- package/dist/__tests__/embed.test.d.ts.map +1 -0
- package/dist/__tests__/embed.test.js +310 -0
- package/dist/__tests__/embed.test.js.map +1 -0
- package/dist/__tests__/file-index.test.d.ts +2 -0
- package/dist/__tests__/file-index.test.d.ts.map +1 -0
- package/dist/__tests__/file-index.test.js +252 -0
- package/dist/__tests__/file-index.test.js.map +1 -0
- package/dist/__tests__/git-tracker.test.d.ts +5 -0
- package/dist/__tests__/git-tracker.test.d.ts.map +1 -0
- package/dist/__tests__/git-tracker.test.js +175 -0
- package/dist/__tests__/git-tracker.test.js.map +1 -0
- package/dist/__tests__/logger.test.d.ts +2 -0
- package/dist/__tests__/logger.test.d.ts.map +1 -0
- package/dist/__tests__/logger.test.js +77 -0
- package/dist/__tests__/logger.test.js.map +1 -0
- package/dist/__tests__/parser.test.d.ts +2 -0
- package/dist/__tests__/parser.test.d.ts.map +1 -0
- package/dist/__tests__/parser.test.js +448 -0
- package/dist/__tests__/parser.test.js.map +1 -0
- package/dist/__tests__/search-xrefs.test.d.ts +5 -0
- package/dist/__tests__/search-xrefs.test.d.ts.map +1 -0
- package/dist/__tests__/search-xrefs.test.js +260 -0
- package/dist/__tests__/search-xrefs.test.js.map +1 -0
- package/dist/__tests__/server.test.d.ts +2 -0
- package/dist/__tests__/server.test.d.ts.map +1 -0
- package/dist/__tests__/server.test.js +201 -0
- package/dist/__tests__/server.test.js.map +1 -0
- package/dist/__tests__/store.test.d.ts +2 -0
- package/dist/__tests__/store.test.d.ts.map +1 -0
- package/dist/__tests__/store.test.js +358 -0
- package/dist/__tests__/store.test.js.map +1 -0
- package/dist/__tests__/tools.test.d.ts +2 -0
- package/dist/__tests__/tools.test.d.ts.map +1 -0
- package/dist/__tests__/tools.test.js +751 -0
- package/dist/__tests__/tools.test.js.map +1 -0
- package/dist/__tests__/validation.test.d.ts +5 -0
- package/dist/__tests__/validation.test.d.ts.map +1 -0
- package/dist/__tests__/validation.test.js +170 -0
- package/dist/__tests__/validation.test.js.map +1 -0
- package/dist/__tests__/xref-tracker.test.d.ts +5 -0
- package/dist/__tests__/xref-tracker.test.d.ts.map +1 -0
- package/dist/__tests__/xref-tracker.test.js +251 -0
- package/dist/__tests__/xref-tracker.test.js.map +1 -0
- package/dist/cli-index.d.ts +7 -0
- package/dist/cli-index.d.ts.map +1 -0
- package/dist/cli-index.js +110 -0
- package/dist/cli-index.js.map +1 -0
- package/dist/doctor.d.ts +7 -0
- package/dist/doctor.d.ts.map +1 -0
- package/dist/doctor.js +276 -0
- package/dist/doctor.js.map +1 -0
- package/dist/index.js +30 -5
- package/dist/index.js.map +1 -1
- package/dist/indexer/chunker.d.ts +14 -0
- package/dist/indexer/chunker.d.ts.map +1 -1
- package/dist/indexer/chunker.js +24 -0
- package/dist/indexer/chunker.js.map +1 -1
- package/dist/indexer/crawler.d.ts +10 -0
- package/dist/indexer/crawler.d.ts.map +1 -1
- package/dist/indexer/crawler.js +47 -0
- package/dist/indexer/crawler.js.map +1 -1
- package/dist/indexer/file-index.d.ts +28 -0
- package/dist/indexer/file-index.d.ts.map +1 -0
- package/dist/indexer/file-index.js +117 -0
- package/dist/indexer/file-index.js.map +1 -0
- package/dist/indexer/git-tracker.d.ts +49 -0
- package/dist/indexer/git-tracker.d.ts.map +1 -0
- package/dist/indexer/git-tracker.js +183 -0
- package/dist/indexer/git-tracker.js.map +1 -0
- package/dist/indexer/parser.d.ts.map +1 -1
- package/dist/indexer/parser.js +5 -31
- package/dist/indexer/parser.js.map +1 -1
- package/dist/indexer/xref-tracker.d.ts +124 -0
- package/dist/indexer/xref-tracker.d.ts.map +1 -0
- package/dist/indexer/xref-tracker.js +504 -0
- package/dist/indexer/xref-tracker.js.map +1 -0
- package/dist/lsp/client.d.ts +132 -0
- package/dist/lsp/client.d.ts.map +1 -0
- package/dist/lsp/client.js +384 -0
- package/dist/lsp/client.js.map +1 -0
- package/dist/server.d.ts +2 -0
- package/dist/server.d.ts.map +1 -1
- package/dist/server.js +67 -3
- package/dist/server.js.map +1 -1
- package/dist/setup.d.ts +7 -0
- package/dist/setup.d.ts.map +1 -0
- package/dist/setup.js +182 -0
- package/dist/setup.js.map +1 -0
- package/dist/tools/index-codebase.d.ts +17 -1
- package/dist/tools/index-codebase.d.ts.map +1 -1
- package/dist/tools/index-codebase.js +132 -7
- package/dist/tools/index-codebase.js.map +1 -1
- package/dist/tools/read-context.d.ts.map +1 -1
- package/dist/tools/read-context.js.map +1 -1
- package/dist/tools/search-xrefs.d.ts +40 -0
- package/dist/tools/search-xrefs.d.ts.map +1 -0
- package/dist/tools/search-xrefs.js +208 -0
- package/dist/tools/search-xrefs.js.map +1 -0
- package/dist/utils/validation.d.ts.map +1 -1
- package/dist/utils/validation.js +8 -7
- package/dist/utils/validation.js.map +1 -1
- package/dist/vector/embed.d.ts.map +1 -1
- package/dist/vector/embed.js +2 -1
- package/dist/vector/embed.js.map +1 -1
- package/dist/vector/store.d.ts.map +1 -1
- package/dist/vector/store.js +1 -4
- package/dist/vector/store.js.map +1 -1
- package/languages/tree-sitter-c.wasm +0 -0
- package/languages/tree-sitter-cpp.wasm +0 -0
- package/languages/tree-sitter-go.wasm +0 -0
- package/languages/tree-sitter-java.wasm +0 -0
- package/languages/tree-sitter-javascript.wasm +0 -0
- package/languages/tree-sitter-python.wasm +0 -0
- package/languages/tree-sitter-rust.wasm +0 -0
- package/languages/tree-sitter-typescript.wasm +0 -0
- package/package.json +7 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,26 +5,72 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.0.2] - 2026-01-16
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **Incremental Indexing** - New `FileIndex` class tracks file hashes and mtimes to skip unchanged files during re-indexing
|
|
13
|
+
- **Progress Reporting** - Callback-based progress reporting during indexing with phase tracking (crawling, analyzing, embedding, saving)
|
|
14
|
+
- CLI now shows real-time progress during `seu-claude index` command
|
|
15
|
+
- `IndexResult` now includes `filesSkipped`, `filesUpdated`, and `filesDeleted` counts
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- `index_codebase` MCP tool output now shows incremental statistics
|
|
20
|
+
- Improved indexing performance by only processing changed files
|
|
21
|
+
- Better memory efficiency during large codebase indexing
|
|
22
|
+
|
|
23
|
+
### Technical Details
|
|
24
|
+
|
|
25
|
+
- **Test Coverage**: 301 tests passing
|
|
26
|
+
- **New Classes**: `FileIndex` for persistent file tracking
|
|
27
|
+
- **New Types**: `IndexProgress`, `IndexPhase`, `ProgressCallback`
|
|
28
|
+
|
|
29
|
+
## [1.0.1] - 2026-01-15
|
|
30
|
+
|
|
31
|
+
### Changed
|
|
32
|
+
|
|
33
|
+
- 📚 Updated documentation to reflect complete v1.0 feature set
|
|
34
|
+
- Updated README roadmap with completed feature indicators
|
|
35
|
+
- Updated FEATURE_AUDIT with `search_xrefs` tool documentation
|
|
36
|
+
- Added cross-reference tracking and git-aware indexing sections
|
|
37
|
+
- Corrected test counts and coverage metrics across all docs
|
|
38
|
+
- Applied Prettier formatting to all markdown files
|
|
39
|
+
|
|
40
|
+
### Fixed
|
|
41
|
+
|
|
42
|
+
- Fixed project structure in README to include `search-xrefs.ts`
|
|
43
|
+
- Corrected tool count from 3 to 4 in documentation
|
|
44
|
+
|
|
8
45
|
## [1.0.0] - 2026-01-15
|
|
9
46
|
|
|
10
47
|
### Added
|
|
48
|
+
|
|
11
49
|
- 🎉 Initial stable release
|
|
12
50
|
- **MCP Server** - Full Model Context Protocol implementation for Claude Code/Desktop
|
|
13
51
|
- **Semantic Indexing** - AST-based code chunking using Tree-sitter
|
|
14
52
|
- **Vector Search** - LanceDB-powered similarity search with 384-dimension embeddings
|
|
15
53
|
- **Multi-language Support** - TypeScript, JavaScript, Python, Java, C/C++, Go, Rust
|
|
16
|
-
- **
|
|
54
|
+
- **Cross-Reference Tracking** - Callers/callees graph powered by AST analysis
|
|
55
|
+
- **Git-Aware Indexing** - Track file changes and prioritize recent modifications
|
|
56
|
+
- **Four MCP Tools**:
|
|
17
57
|
- `index_codebase` - Index entire codebase with incremental updates
|
|
18
58
|
- `search_codebase` - Semantic search across indexed code
|
|
19
59
|
- `read_semantic_context` - Read code with AST-aware context
|
|
60
|
+
- `search_xrefs` - Query cross-references (who calls this? what does this call?)
|
|
61
|
+
- **CLI Commands**:
|
|
62
|
+
- `seu-claude doctor` - Diagnose environment and index health
|
|
63
|
+
- `seu-claude-setup` - Configure MCP settings
|
|
20
64
|
|
|
21
65
|
### Technical Details
|
|
66
|
+
|
|
22
67
|
- **Embedding Model**: `Xenova/all-MiniLM-L6-v2` (no authentication required)
|
|
23
68
|
- **Vector Dimensions**: 384
|
|
24
|
-
- **Test Coverage**:
|
|
69
|
+
- **Test Coverage**: 78%+ (285 tests)
|
|
25
70
|
- **Memory Usage**: ~100MB idle, ~500MB during indexing
|
|
26
71
|
|
|
27
72
|
### Performance
|
|
73
|
+
|
|
28
74
|
- Indexed 26-file TypeScript project in 5.39 seconds
|
|
29
75
|
- Created 359 semantic chunks
|
|
30
76
|
- Query latency ~50ms
|
|
@@ -32,6 +78,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
32
78
|
## [0.1.0] - 2026-01-14
|
|
33
79
|
|
|
34
80
|
### Added
|
|
81
|
+
|
|
35
82
|
- Initial development release
|
|
36
83
|
- Core indexing and search functionality
|
|
37
84
|
- Basic MCP integration
|
package/README.md
CHANGED
|
@@ -4,12 +4,17 @@
|
|
|
4
4
|
|
|
5
5
|
[](https://opensource.org/licenses/MIT)
|
|
6
6
|
[](https://nodejs.org)
|
|
7
|
+
[](https://www.npmjs.com/package/seu-claude)
|
|
8
|
+
[](https://github.com/jardhel/seu-claude/actions)
|
|
9
|
+
[](https://github.com/jardhel/seu-claude/issues)
|
|
10
|
+
[](https://github.com/jardhel/seu-claude/stargazers)
|
|
7
11
|
|
|
8
12
|
> Give Claude Code deep, proactive understanding of your entire codebase - not just the files it has touched.
|
|
9
13
|
|
|
10
14
|
## The Problem
|
|
11
15
|
|
|
12
16
|
Current memory plugins for Claude Code suffer from "goldfish memory":
|
|
17
|
+
|
|
13
18
|
- They only remember files the AI has explicitly accessed
|
|
14
19
|
- Heavy resource usage (35GB+ RAM with in-memory vector databases)
|
|
15
20
|
- Complex Python dependencies that conflict with your environment
|
|
@@ -34,11 +39,38 @@ Current memory plugins for Claude Code suffer from "goldfish memory":
|
|
|
34
39
|
# Install globally
|
|
35
40
|
npm install -g seu-claude
|
|
36
41
|
|
|
37
|
-
# Or use npx
|
|
42
|
+
# Or use npx directly
|
|
38
43
|
npx seu-claude
|
|
39
44
|
```
|
|
40
45
|
|
|
41
|
-
### Configuration
|
|
46
|
+
### Automatic Configuration
|
|
47
|
+
|
|
48
|
+
After installing, run the setup command from your project directory:
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
# With npx (recommended)
|
|
52
|
+
npx seu-claude setup
|
|
53
|
+
|
|
54
|
+
# Or if installed globally
|
|
55
|
+
seu-claude setup
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
This will automatically:
|
|
59
|
+
|
|
60
|
+
- Detect your project root
|
|
61
|
+
- Create `.claude/settings.json` for Claude Code
|
|
62
|
+
- Configure `claude_desktop_config.json` for Claude Desktop
|
|
63
|
+
- Set up the MCP server connection
|
|
64
|
+
|
|
65
|
+
### Verify Installation
|
|
66
|
+
|
|
67
|
+
Check if everything is configured correctly:
|
|
68
|
+
|
|
69
|
+
```bash
|
|
70
|
+
npx seu-claude doctor
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
### Manual Configuration
|
|
42
74
|
|
|
43
75
|
#### Claude Code
|
|
44
76
|
|
|
@@ -78,19 +110,26 @@ Add to `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS)
|
|
|
78
110
|
|
|
79
111
|
### First Run
|
|
80
112
|
|
|
81
|
-
Once configured, Claude will have access to
|
|
113
|
+
Once configured, Claude will have access to four powerful tools:
|
|
82
114
|
|
|
83
115
|
1. **Index your codebase** (run once, then incremental):
|
|
116
|
+
|
|
84
117
|
> "Index this codebase for semantic search"
|
|
85
118
|
|
|
86
119
|
2. **Search semantically**:
|
|
120
|
+
|
|
87
121
|
> "Where is the user authentication logic?"
|
|
88
122
|
> "Find all database connection handling code"
|
|
89
123
|
> "Show me how API rate limiting is implemented"
|
|
90
124
|
|
|
91
125
|
3. **Read with context**:
|
|
126
|
+
|
|
92
127
|
> "Read the AuthService.login method with its surrounding context"
|
|
93
128
|
|
|
129
|
+
4. **Search cross-references** (find callers/callees):
|
|
130
|
+
> "Who calls the validateUser function?"
|
|
131
|
+
> "What functions does processOrder call?"
|
|
132
|
+
|
|
94
133
|
## How It Works
|
|
95
134
|
|
|
96
135
|
### Architecture
|
|
@@ -123,21 +162,21 @@ Once configured, Claude will have access to three new tools:
|
|
|
123
162
|
|
|
124
163
|
Unlike naive text splitting that breaks code mid-function, seu-claude uses Abstract Syntax Tree analysis to create semantically meaningful chunks:
|
|
125
164
|
|
|
126
|
-
| Code Structure | Chunking Logic
|
|
127
|
-
|
|
128
|
-
| Function
|
|
129
|
-
| Class
|
|
130
|
-
| Interface
|
|
131
|
-
| Method
|
|
165
|
+
| Code Structure | Chunking Logic | Metadata |
|
|
166
|
+
| -------------- | ----------------------------------- | ----------------------- |
|
|
167
|
+
| Function | Complete function with signature | Type, Name, Scope |
|
|
168
|
+
| Class | Header + methods as separate chunks | Type, Name, Methods |
|
|
169
|
+
| Interface | Complete definition | Type, Module |
|
|
170
|
+
| Method | Full body with context | Parent Class, Signature |
|
|
132
171
|
|
|
133
172
|
### Technology Stack
|
|
134
173
|
|
|
135
|
-
| Component
|
|
136
|
-
|
|
137
|
-
| Runtime
|
|
138
|
-
| Parser
|
|
139
|
-
| Vector DB
|
|
140
|
-
| Embeddings | Transformers.js | Local, GPU-accelerated
|
|
174
|
+
| Component | Technology | Why |
|
|
175
|
+
| ---------- | --------------- | -------------------------- |
|
|
176
|
+
| Runtime | Node.js 20+ | Native MCP compatibility |
|
|
177
|
+
| Parser | web-tree-sitter | WASM-based, multi-language |
|
|
178
|
+
| Vector DB | LanceDB | Disk-based, <100MB RAM |
|
|
179
|
+
| Embeddings | Transformers.js | Local, GPU-accelerated |
|
|
141
180
|
|
|
142
181
|
## MCP Tools
|
|
143
182
|
|
|
@@ -177,17 +216,35 @@ Read code with AST-aware context.
|
|
|
177
216
|
}
|
|
178
217
|
```
|
|
179
218
|
|
|
219
|
+
### `search_xrefs`
|
|
220
|
+
|
|
221
|
+
Find callers and callees of functions/methods. Understand code dependencies and call graphs.
|
|
222
|
+
|
|
223
|
+
```typescript
|
|
224
|
+
{
|
|
225
|
+
symbol: string; // Function/method name to search for
|
|
226
|
+
direction?: string; // "callers" | "callees" | "both" (default)
|
|
227
|
+
max_results?: number; // Max results (default: 20)
|
|
228
|
+
}
|
|
229
|
+
```
|
|
230
|
+
|
|
231
|
+
**Example prompts:**
|
|
232
|
+
|
|
233
|
+
> "Who calls the authenticate function?"
|
|
234
|
+
> "What does processPayment call?"
|
|
235
|
+
> "Show me the cross-references for handleRequest"
|
|
236
|
+
|
|
180
237
|
## Configuration
|
|
181
238
|
|
|
182
239
|
### Environment Variables
|
|
183
240
|
|
|
184
|
-
| Variable
|
|
185
|
-
|
|
186
|
-
| `PROJECT_ROOT`
|
|
187
|
-
| `DATA_DIR`
|
|
188
|
-
| `EMBEDDING_MODEL`
|
|
189
|
-
| `EMBEDDING_DIMENSIONS` | `384`
|
|
190
|
-
| `LOG_LEVEL`
|
|
241
|
+
| Variable | Default | Description |
|
|
242
|
+
| ---------------------- | ------------------------- | ------------------------- |
|
|
243
|
+
| `PROJECT_ROOT` | Current directory | Root of codebase to index |
|
|
244
|
+
| `DATA_DIR` | `~/.seu-claude` | Where to store index data |
|
|
245
|
+
| `EMBEDDING_MODEL` | `Xenova/all-MiniLM-L6-v2` | HuggingFace model |
|
|
246
|
+
| `EMBEDDING_DIMENSIONS` | `384` | Vector dimensions |
|
|
247
|
+
| `LOG_LEVEL` | `info` | debug, info, warn, error |
|
|
191
248
|
|
|
192
249
|
### Ignore Patterns
|
|
193
250
|
|
|
@@ -206,27 +263,43 @@ path/to/large/file.ts
|
|
|
206
263
|
|
|
207
264
|
## Performance
|
|
208
265
|
|
|
209
|
-
###
|
|
266
|
+
### Token Savings Benchmark
|
|
267
|
+
|
|
268
|
+
seu-claude dramatically reduces token consumption by returning only semantically relevant code chunks instead of entire files.
|
|
269
|
+
|
|
270
|
+
| Metric | Without seu-claude | With seu-claude | Savings |
|
|
271
|
+
| ---------------- | ------------------ | --------------- | ------- |
|
|
272
|
+
| Tokens per query | ~22,000 | ~1,500 | **91%** |
|
|
273
|
+
| Cost per session | $0.52 | $0.05 | **91%** |
|
|
274
|
+
| Context accuracy | N/A | 95%+ | - |
|
|
275
|
+
|
|
276
|
+
Run the benchmark yourself:
|
|
210
277
|
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
278
|
+
```bash
|
|
279
|
+
npx tsx scripts/benchmark-tokens.ts
|
|
280
|
+
```
|
|
281
|
+
|
|
282
|
+
### Indexing Performance (seu-claude codebase - 34 files)
|
|
283
|
+
|
|
284
|
+
| Metric | Result |
|
|
285
|
+
| ----------------- | ------ |
|
|
286
|
+
| Indexing time | ~6s |
|
|
287
|
+
| Files processed | 34 |
|
|
288
|
+
| Chunks created | 406 |
|
|
289
|
+
| Memory (idle) | ~100MB |
|
|
217
290
|
| Memory (indexing) | ~500MB |
|
|
218
|
-
| Query latency
|
|
291
|
+
| Query latency | ~5ms |
|
|
219
292
|
|
|
220
293
|
### Comparison
|
|
221
294
|
|
|
222
|
-
| Metric
|
|
223
|
-
|
|
224
|
-
| RAM (idle)
|
|
225
|
-
| RAM (indexing)
|
|
226
|
-
| Index time (26 files) | ~5s
|
|
227
|
-
| Query latency
|
|
228
|
-
| Startup time
|
|
229
|
-
| Dependencies
|
|
295
|
+
| Metric | seu-claude | Traditional RAG |
|
|
296
|
+
| --------------------- | ------------ | --------------- |
|
|
297
|
+
| RAM (idle) | ~100MB | 35GB+ |
|
|
298
|
+
| RAM (indexing) | ~500MB | N/A |
|
|
299
|
+
| Index time (26 files) | ~5s | Minutes |
|
|
300
|
+
| Query latency | ~50ms | <10ms |
|
|
301
|
+
| Startup time | <2s | 30s+ |
|
|
302
|
+
| Dependencies | Node.js only | Python + CUDA |
|
|
230
303
|
|
|
231
304
|
## Development
|
|
232
305
|
|
|
@@ -256,7 +329,8 @@ seu-claude/
|
|
|
256
329
|
│ └── tools/
|
|
257
330
|
│ ├── index-codebase.ts
|
|
258
331
|
│ ├── search-codebase.ts
|
|
259
|
-
│
|
|
332
|
+
│ ├── read-context.ts
|
|
333
|
+
│ └── search-xrefs.ts
|
|
260
334
|
├── languages/ # Tree-sitter WASM grammars
|
|
261
335
|
└── models/ # Downloaded embedding models
|
|
262
336
|
```
|
|
@@ -270,14 +344,37 @@ npm test
|
|
|
270
344
|
## Roadmap
|
|
271
345
|
|
|
272
346
|
- [ ] Language Server Protocol integration for better symbol resolution
|
|
273
|
-
- [
|
|
274
|
-
- [
|
|
347
|
+
- [x] Git-aware indexing (prioritize recent changes)
|
|
348
|
+
- [x] Cross-reference graph (callers/callees) - via `search_xrefs` tool
|
|
275
349
|
- [ ] VSCode extension for index management
|
|
276
350
|
- [ ] Support for more languages (Kotlin, Swift, PHP)
|
|
277
351
|
|
|
352
|
+
See [ROADMAP.md](ROADMAP.md) for detailed plans.
|
|
353
|
+
|
|
278
354
|
## Contributing
|
|
279
355
|
|
|
280
|
-
|
|
356
|
+
We welcome contributions! Please see:
|
|
357
|
+
|
|
358
|
+
- [Contributing Guidelines](CONTRIBUTING.md) - How to contribute code
|
|
359
|
+
- [Code of Conduct](CODE_OF_CONDUCT.md) - Community standards
|
|
360
|
+
- [Support](.github/SUPPORT.md) - Getting help
|
|
361
|
+
- [GitHub Discussions](https://github.com/jardhel/seu-claude/discussions) - Ask questions
|
|
362
|
+
|
|
363
|
+
### Quick Start for Contributors
|
|
364
|
+
|
|
365
|
+
```bash
|
|
366
|
+
git clone https://github.com/jardhel/seu-claude.git
|
|
367
|
+
cd seu-claude
|
|
368
|
+
npm install
|
|
369
|
+
npm run build
|
|
370
|
+
npm test
|
|
371
|
+
```
|
|
372
|
+
|
|
373
|
+
## Community
|
|
374
|
+
|
|
375
|
+
- 💬 [GitHub Discussions](https://github.com/jardhel/seu-claude/discussions) - Ask questions, share ideas
|
|
376
|
+
- 🐛 [Issue Tracker](https://github.com/jardhel/seu-claude/issues) - Report bugs or request features
|
|
377
|
+
- 🌟 [Star the repo](https://github.com/jardhel/seu-claude) - Show your support!
|
|
281
378
|
|
|
282
379
|
## License
|
|
283
380
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"chunker.test.d.ts","sourceRoot":"","sources":["../../src/__tests__/chunker.test.ts"],"names":[],"mappings":""}
|