@codemap-ai/cli 0.1.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/.claude-plugin/plugin.json +12 -0
- package/.codex-plugin/plugin.json +35 -0
- package/.cursor-plugin/plugin.json +16 -0
- package/agent-pack/README.md +44 -0
- package/agent-pack/agents/codemap-explorer.md +12 -0
- package/agent-pack/commands/feature-area.md +8 -0
- package/agent-pack/rules/install.md +35 -0
- package/agent-pack/rules/mcp-first.md +18 -0
- package/agent-pack/rules/task-lifecycle.md +11 -0
- package/agent-pack/rules/workflow-skills.md +97 -0
- package/agent-pack/skills/brainstorming/SKILL.md +41 -0
- package/agent-pack/skills/executing-plans/SKILL.md +26 -0
- package/agent-pack/skills/feature-area-investigation/SKILL.md +15 -0
- package/agent-pack/skills/interpreting-codemap-output/SKILL.md +29 -0
- package/agent-pack/skills/mcp-first-exploration/SKILL.md +10 -0
- package/agent-pack/skills/safe-edit-and-reimport/SKILL.md +18 -0
- package/agent-pack/skills/symbol-level-debugging/SKILL.md +15 -0
- package/agent-pack/skills/test-driven-development/SKILL.md +36 -0
- package/agent-pack/skills/token-efficient-code-review/SKILL.md +15 -0
- package/agent-pack/skills/verification-before-completion/SKILL.md +25 -0
- package/agent-pack/skills/writing-plans/SKILL.md +32 -0
- package/agent-pack/templates/AGENTS.md +21 -0
- package/agent-pack/templates/CLAUDE.md +19 -0
- package/agent-pack/templates/COPILOT.md +75 -0
- package/agent-pack/templates/GEMINI.md +77 -0
- package/agent-pack/templates/design-spec.md +34 -0
- package/agent-pack/templates/implementation-plan.md +26 -0
- package/agent-pack/templates/opencode-AGENTS.md +76 -0
- package/agent-pack/templates/opencode-INSTALL.md +5 -0
- package/agent-pack/templates/verification-report.md +18 -0
- package/dist/chat-terminal-DFFYQ6AF.js +1743 -0
- package/dist/chunk-A2QHID6K.js +34 -0
- package/dist/chunk-AXGGL47C.js +457 -0
- package/dist/chunk-FFFJKKKM.js +218262 -0
- package/dist/chunk-KWYP3ADN.js +1742 -0
- package/dist/chunk-WNJNT3FC.js +216 -0
- package/dist/chunk-YRXVMFXS.js +99 -0
- package/dist/index.js +9225 -0
- package/dist/login-screen-2DJBDM47.js +143 -0
- package/dist/pi-tui-app-GVZ3AN42.js +2073 -0
- package/package.json +59 -0
package/package.json
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@codemap-ai/cli",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "CodeMap — AI-powered code intelligence and coding agent CLI",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"main": "dist/index.js",
|
|
8
|
+
"bin": {
|
|
9
|
+
"codemap": "dist/index.js"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
".claude-plugin",
|
|
13
|
+
".codex-plugin",
|
|
14
|
+
".cursor-plugin",
|
|
15
|
+
"agent-pack",
|
|
16
|
+
"dist",
|
|
17
|
+
"README.md",
|
|
18
|
+
"package.json"
|
|
19
|
+
],
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"@ai-sdk/openai": "^3.0.63",
|
|
22
|
+
"@earendil-works/pi-tui": "^0.74.0",
|
|
23
|
+
"@git-diff-view/core": "^0.1.3",
|
|
24
|
+
"@mastra/mcp": "1.7.0",
|
|
25
|
+
"@modelcontextprotocol/sdk": "^1.21.0",
|
|
26
|
+
"ai": "^6.0.176",
|
|
27
|
+
"cfonts": "^3.3.1",
|
|
28
|
+
"execa": "^9.6.1",
|
|
29
|
+
"jszip": "^3.10.1",
|
|
30
|
+
"marked": "^15.0.12",
|
|
31
|
+
"marked-terminal": "^7.3.0",
|
|
32
|
+
"mastracode": "^0.19.1",
|
|
33
|
+
"shiki": "^4.0.2",
|
|
34
|
+
"tree-sitter-python": "^0.25.0",
|
|
35
|
+
"tree-sitter-wasms": "^0.1.13",
|
|
36
|
+
"web-tree-sitter": "^0.26.8",
|
|
37
|
+
"zod": "^4.3.6",
|
|
38
|
+
"@codemap/code-index": "1.0.0",
|
|
39
|
+
"@codemap/shared": "1.0.0"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@mastra/core": "^1.35.0",
|
|
43
|
+
"@types/node": "^24.12.2",
|
|
44
|
+
"tsup": "^8.5.1",
|
|
45
|
+
"tsx": "^4.21.0",
|
|
46
|
+
"typescript": "~5.9.2"
|
|
47
|
+
},
|
|
48
|
+
"publishConfig": {
|
|
49
|
+
"access": "public"
|
|
50
|
+
},
|
|
51
|
+
"scripts": {
|
|
52
|
+
"build": "tsup && chmod +x dist/index.js",
|
|
53
|
+
"build:tsc": "tsc -p tsconfig.json",
|
|
54
|
+
"dev": "tsx src/index.ts",
|
|
55
|
+
"start": "node dist/index.js",
|
|
56
|
+
"dev:watch": "tsx watch src/index.ts",
|
|
57
|
+
"test": "tsx test/semantic-tools.test.ts"
|
|
58
|
+
}
|
|
59
|
+
}
|