@muvon/octocode 0.26.0 → 0.26.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/README.md +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -156,7 +156,7 @@ See [Installation Guide](INSTALL.md) for platform-specific instructions.
|
|
|
156
156
|
### 2. Set Up API Keys
|
|
157
157
|
|
|
158
158
|
```bash
|
|
159
|
-
#
|
|
159
|
+
# Optional: embedding provider (defaults to local FastEmbed — no key needed)
|
|
160
160
|
export VOYAGE_API_KEY="your-voyage-api-key"
|
|
161
161
|
|
|
162
162
|
# Optional: LLM for commit messages, code review
|
|
@@ -205,7 +205,7 @@ octocode search "authentication middleware"
|
|
|
205
205
|
octocode search "auth" "middleware" "session"
|
|
206
206
|
|
|
207
207
|
# Filter by language
|
|
208
|
-
octocode search "database connection pool" --
|
|
208
|
+
octocode search "database connection pool" --language rust
|
|
209
209
|
|
|
210
210
|
# Search commit history
|
|
211
211
|
octocode search "authentication refactor" --mode commits
|
|
@@ -307,7 +307,7 @@ claude mcp add octocode -- octocode mcp --path /path/to/your/project
|
|
|
307
307
|
|
|
308
308
|
## 🌐 Supported Languages
|
|
309
309
|
|
|
310
|
-
|
|
310
|
+
17 languages with full tree-sitter AST parsing:
|
|
311
311
|
|
|
312
312
|
| Language | Extensions | Features |
|
|
313
313
|
|----------|------------|----------|
|
|
@@ -323,10 +323,10 @@ claude mcp add octocode -- octocode mcp --path /path/to/your/project
|
|
|
323
323
|
| **Swift** | `.swift` | Class/struct/protocol extraction, import analysis |
|
|
324
324
|
| **Svelte** | `.svelte` | Component structure, script/style block extraction |
|
|
325
325
|
| **Lua** | `.lua` | Function and table extraction |
|
|
326
|
-
| **CSS** | `.css` | Rule and selector extraction |
|
|
326
|
+
| **CSS** | `.css`, `.scss`, `.sass` | Rule and selector extraction |
|
|
327
327
|
| **JSON** | `.json` | Structure analysis, key extraction |
|
|
328
328
|
| **Bash** | `.sh`, `.bash` | Function and variable extraction |
|
|
329
|
-
| **Markdown** | `.md` | Document section indexing, header extraction |
|
|
329
|
+
| **Markdown** | `.md`, `.markdown` | Document section indexing, header extraction |
|
|
330
330
|
|
|
331
331
|
## 📚 Documentation
|
|
332
332
|
|