Skip to content

Commit 00246f5

Browse files
invalidclaude
andcommitted
refactor: restructure to ccplugin/ layout matching Claude Code marketplace pattern
- Move plugin.json, skills/, cli/ into ccplugin/ subdirectory - Add .claude-plugin/marketplace.json at root with source: ./ccplugin - Enrich plugin.json with author, homepage, repository, license, keywords - Update README with new directory structure and corrected paths Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 86f1df3 commit 00246f5

56 files changed

Lines changed: 244 additions & 28 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.claude-plugin/marketplace.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"$schema": "https://anthropic.com/claude-code/marketplace.schema.json",
3+
"name": "codemap-plugins",
4+
"owner": {
5+
"name": "killvxk",
6+
"email": ""
7+
},
8+
"metadata": {
9+
"description": "AST-based code graph mapping plugin for Claude Code — scan once, persist structural graph, load compact slices to save ~95% tokens",
10+
"version": "0.1.0"
11+
},
12+
"plugins": [
13+
{
14+
"name": "codemap",
15+
"description": "AST-based code graph mapping plugin — scan codebase, persist structural graph, load compact slices in future sessions, saving ~95% tokens compared to re-reading all source files",
16+
"version": "0.1.0",
17+
"source": "./ccplugin",
18+
"category": "productivity",
19+
"author": { "name": "killvxk" },
20+
"homepage": "https://github.com/killvxk/CodeMap",
21+
"repository": "https://github.com/killvxk/CodeMap",
22+
"license": "MIT",
23+
"keywords": ["ast", "code-graph", "tree-sitter", "code-map", "scan", "slice", "incremental", "impact-analysis"],
24+
"tags": ["productivity", "code-intelligence", "ast", "context-optimization"]
25+
}
26+
]
27+
}

.claude-plugin/plugin.json

Lines changed: 0 additions & 12 deletions
This file was deleted.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ dist/
33
.codemap/
44
docs/
55
*.log
6+
*.tgz
67
.DS_Store

README.md

Lines changed: 196 additions & 16 deletions
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "codemap",
3+
"version": "0.1.0",
4+
"description": "AST-based code graph mapping plugin for Claude Code — scan once, persist structural graph, load compact slices to save ~95% tokens",
5+
"author": {
6+
"name": "killvxk",
7+
"url": "https://github.com/killvxk"
8+
},
9+
"homepage": "https://github.com/killvxk/CodeMap",
10+
"repository": "https://github.com/killvxk/CodeMap",
11+
"license": "MIT",
12+
"keywords": ["ast", "code-graph", "tree-sitter", "code-map", "scan", "slice", "incremental", "impact-analysis"],
13+
"skills": [
14+
"skills/scan",
15+
"skills/load",
16+
"skills/update",
17+
"skills/query",
18+
"skills/impact"
19+
]
20+
}

0 commit comments

Comments
 (0)