@prosdevlab/dev-agent 0.8.5 → 0.10.0
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 -2
- package/dist/cli.js +15604 -19419
- package/dist/cli.js.map +1 -1
- package/dist/mcp.js +14188 -16160
- package/dist/mcp.js.map +1 -1
- package/dist/vendor/web-tree-sitter/lib/tree-sitter.wasm +0 -0
- package/dist/vendor/web-tree-sitter/tree-sitter.wasm +0 -0
- package/dist/wasm/tree-sitter-go.wasm +0 -0
- package/dist/wasm/tree-sitter.wasm +0 -0
- package/package.json +10 -12
package/README.md
CHANGED
|
@@ -10,9 +10,12 @@ Local-first semantic code search, GitHub integration, and development planning f
|
|
|
10
10
|
# Install globally
|
|
11
11
|
npm install -g @prosdevlab/dev-agent
|
|
12
12
|
|
|
13
|
+
# One-time setup (starts Antfly search backend)
|
|
14
|
+
dev setup
|
|
15
|
+
|
|
13
16
|
# Index your repository
|
|
14
17
|
cd /path/to/your/repo
|
|
15
|
-
dev index
|
|
18
|
+
dev index
|
|
16
19
|
|
|
17
20
|
# Install MCP integration
|
|
18
21
|
dev mcp install --cursor # For Cursor IDE
|
|
@@ -65,7 +68,7 @@ When integrated with Cursor or Claude Code, you get 6 powerful tools:
|
|
|
65
68
|
|
|
66
69
|
```bash
|
|
67
70
|
# Indexing
|
|
68
|
-
dev index
|
|
71
|
+
dev index # Index current repository
|
|
69
72
|
dev github index # Index GitHub issues/PRs
|
|
70
73
|
|
|
71
74
|
# MCP Server Integration
|