@prosdevlab/dev-agent 0.10.2 → 0.10.4
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 +4 -5
- package/dist/cli.js +206 -523
- package/dist/cli.js.map +1 -1
- package/dist/mcp.js +184 -513
- package/dist/mcp.js.map +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -39,8 +39,7 @@ When integrated with Cursor or Claude Code, you get 6 powerful tools:
|
|
|
39
39
|
- `dev_refs` - Find callers/callees of functions
|
|
40
40
|
- `dev_map` - Codebase structure with change frequency
|
|
41
41
|
- `dev_patterns` - File analysis and pattern checking
|
|
42
|
-
- `dev_status` - Repository status and
|
|
43
|
-
- `dev_health` - Component health checks
|
|
42
|
+
- `dev_status` - Repository status, health checks, and Antfly stats
|
|
44
43
|
|
|
45
44
|
## Requirements
|
|
46
45
|
|
|
@@ -110,11 +109,11 @@ All processing happens on your machine:
|
|
|
110
109
|
# Find authentication-related code
|
|
111
110
|
dev_search: "JWT token validation middleware"
|
|
112
111
|
|
|
113
|
-
#
|
|
114
|
-
dev_patterns: {
|
|
112
|
+
# Analyze coding patterns
|
|
113
|
+
dev_patterns: { filePath: "src/auth/middleware.ts" }
|
|
115
114
|
|
|
116
115
|
# Check system health
|
|
117
|
-
|
|
116
|
+
dev_status: { section: "health" }
|
|
118
117
|
```
|
|
119
118
|
|
|
120
119
|
## Support
|