@prosdevlab/dev-agent 0.10.0 → 0.10.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 +8 -17
- package/dist/cli.js +10569 -11666
- package/dist/cli.js.map +1 -1
- package/dist/mcp.js +12535 -13474
- package/dist/mcp.js.map +1 -1
- package/package.json +1 -2
package/README.md
CHANGED
|
@@ -27,8 +27,6 @@ dev mcp install # For Claude Code
|
|
|
27
27
|
## Features
|
|
28
28
|
|
|
29
29
|
- 🔍 **Semantic Code Search** - Natural language queries across your codebase
|
|
30
|
-
- 🐙 **GitHub Integration** - Search issues/PRs with semantic understanding
|
|
31
|
-
- 📋 **Implementation Planning** - Generate plans from GitHub issues with code context
|
|
32
30
|
- 🔎 **Code Exploration** - Discover patterns, find similar code, analyze relationships
|
|
33
31
|
- 💚 **Health Monitoring** - Check component status and system health
|
|
34
32
|
- 📊 **Repository Status** - View indexing progress and statistics
|
|
@@ -38,16 +36,15 @@ dev mcp install # For Claude Code
|
|
|
38
36
|
When integrated with Cursor or Claude Code, you get 6 powerful tools:
|
|
39
37
|
|
|
40
38
|
- `dev_search` - Semantic code search
|
|
39
|
+
- `dev_refs` - Find callers/callees of functions
|
|
40
|
+
- `dev_map` - Codebase structure with change frequency
|
|
41
|
+
- `dev_patterns` - File analysis and pattern checking
|
|
41
42
|
- `dev_status` - Repository status and health
|
|
42
|
-
- `dev_inspect` - File analysis and pattern checking
|
|
43
|
-
- `dev_plan` - Implementation planning from issues
|
|
44
|
-
- `dev_gh` - GitHub issue/PR search
|
|
45
43
|
- `dev_health` - Component health checks
|
|
46
44
|
|
|
47
45
|
## Requirements
|
|
48
46
|
|
|
49
47
|
- Node.js >= 22 (LTS)
|
|
50
|
-
- For GitHub integration: [GitHub CLI](https://cli.github.com/)
|
|
51
48
|
|
|
52
49
|
## Production Features
|
|
53
50
|
|
|
@@ -86,8 +83,8 @@ dev <command> --help # Help for specific command
|
|
|
86
83
|
## How It Works
|
|
87
84
|
|
|
88
85
|
1. **Index** - Scans your TypeScript/JavaScript codebase and builds semantic vectors
|
|
89
|
-
2. **Search** - Uses local embeddings (
|
|
90
|
-
3. **Store** -
|
|
86
|
+
2. **Search** - Uses local embeddings (BAAI/bge-small-en-v1.5) for semantic understanding
|
|
87
|
+
3. **Store** - Antfly hybrid search (BM25 + vector), all data stays on your machine
|
|
91
88
|
4. **Integrate** - MCP protocol connects to Cursor/Claude Code
|
|
92
89
|
5. **Query** - AI tools can now understand your codebase semantically
|
|
93
90
|
|
|
@@ -102,8 +99,8 @@ All processing happens on your machine:
|
|
|
102
99
|
## Technology
|
|
103
100
|
|
|
104
101
|
- **Analysis:** TypeScript Compiler API + ts-morph
|
|
105
|
-
- **Embeddings:**
|
|
106
|
-
- **Vector Storage:**
|
|
102
|
+
- **Embeddings:** Antfly Termite (ONNX, BAAI/bge-small-en-v1.5)
|
|
103
|
+
- **Vector Storage:** Antfly (hybrid search: BM25 + vector + RRF)
|
|
107
104
|
- **GitHub:** GitHub CLI for local metadata
|
|
108
105
|
- **Protocol:** Model Context Protocol (MCP)
|
|
109
106
|
|
|
@@ -113,14 +110,8 @@ All processing happens on your machine:
|
|
|
113
110
|
# Find authentication-related code
|
|
114
111
|
dev_search: "JWT token validation middleware"
|
|
115
112
|
|
|
116
|
-
# Plan implementation from GitHub issue
|
|
117
|
-
dev_plan: issue #42
|
|
118
|
-
|
|
119
113
|
# Find similar code patterns
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
# Search GitHub issues semantically
|
|
123
|
-
dev_gh: search "memory leak in vector storage"
|
|
114
|
+
dev_patterns: { action: "compare", query: "src/auth/middleware.ts" }
|
|
124
115
|
|
|
125
116
|
# Check system health
|
|
126
117
|
dev_health: verbose
|