agentmap-cli 0.4.0 → 0.4.1
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 +47 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# agentmap-cli
|
|
2
|
+
|
|
3
|
+
CLI tool to prepare codebases for AI agents by generating hierarchical documentation.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
# Using npx (no install required)
|
|
9
|
+
npx agentmap-cli
|
|
10
|
+
|
|
11
|
+
# Or install globally
|
|
12
|
+
npm install -g agentmap-cli
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Usage
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
# Generate docs for current directory
|
|
19
|
+
npx agentmap-cli
|
|
20
|
+
|
|
21
|
+
# Start MCP server for AI tools
|
|
22
|
+
npx agentmap-cli serve --mcp
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## MCP Server
|
|
26
|
+
|
|
27
|
+
Use agentmap as an MCP server with Claude Desktop, Cursor, OpenCode, and other AI tools:
|
|
28
|
+
|
|
29
|
+
```json
|
|
30
|
+
{
|
|
31
|
+
"mcpServers": {
|
|
32
|
+
"agentmap": {
|
|
33
|
+
"command": "npx",
|
|
34
|
+
"args": ["agentmap-cli", "serve", "--mcp"]
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## Documentation
|
|
41
|
+
|
|
42
|
+
- [Full Documentation](https://github.com/nguyenphutrong/agentmap)
|
|
43
|
+
- [MCP Server Setup](https://github.com/nguyenphutrong/agentmap/blob/main/docs/mcp-server.md)
|
|
44
|
+
|
|
45
|
+
## License
|
|
46
|
+
|
|
47
|
+
MIT
|