@snevins/repo-mapper 1.1.0 → 1.2.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.
Files changed (2) hide show
  1. package/README.md +22 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -107,6 +107,28 @@ Clear cache with: `rm -rf .repomap.cache.v2`
107
107
  4. **Rank** - Run PageRank to score files by importance
108
108
  5. **Budget** - Binary search to fit top definitions within token limit
109
109
 
110
+ ## Claude Code Plugin
111
+
112
+ repo-mapper includes a Claude Code plugin with commands and skills.
113
+
114
+ ### Installation
115
+
116
+ ```bash
117
+ # Add to your Claude Code plugins
118
+ claude plugins add /path/to/repo-mapper-ts
119
+ ```
120
+
121
+ ### Commands
122
+
123
+ | Command | Description |
124
+ |---------|-------------|
125
+ | `/status` | Check if repo-mapper is installed and up to date |
126
+ | `/update-codemap` | Generate or update CODEMAP.md with smart language detection |
127
+
128
+ ### Skills
129
+
130
+ The `using-repo-mapper` skill provides guidance on effective repo-mapper usage patterns.
131
+
110
132
  ## License
111
133
 
112
134
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@snevins/repo-mapper",
3
- "version": "1.1.0",
3
+ "version": "1.2.0",
4
4
  "description": "Generate token-budgeted repo maps for LLM context using tree-sitter and PageRank",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",