@suatkocar/codegraph 0.1.3 → 0.2.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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/install.js +1 -1
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -26,6 +26,6 @@ codegraph init
26
26
 
27
27
  ## What It Does
28
28
 
29
- CodeGraph builds a semantic graph of your codebase (15 languages, 13 MCP tools) and makes it instantly available to AI coding agents. **68% fewer tokens** per task compared to reading all files.
29
+ CodeGraph builds a semantic graph of your codebase (32 languages, 44 MCP tools) and makes it instantly available to AI coding agents. **68% fewer tokens** per task compared to reading all files.
30
30
 
31
31
  See [GitHub](https://github.com/suatkocar/codegraph) for full documentation.
package/install.js CHANGED
@@ -119,7 +119,7 @@ async function main() {
119
119
  try {
120
120
  // Try GitHub release first
121
121
  const release = await getLatestRelease();
122
- const assetName = `${BINARY}-${target}.tar.gz`;
122
+ const assetName = `${BINARY}-${release.tag_name}-${target}.tar.gz`;
123
123
  const asset = release.assets.find((a) => a.name === assetName);
124
124
 
125
125
  if (!asset) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@suatkocar/codegraph",
3
- "version": "0.1.3",
4
- "description": "Codebase intelligence as an MCP server — semantic code graph with 15 languages, 13 tools, and 68% token reduction",
3
+ "version": "0.2.1",
4
+ "description": "Codebase intelligence as an MCP server — semantic code graph with 32 languages, 44 tools, and 68% token reduction",
5
5
  "author": "Suat Kocar",
6
6
  "license": "MIT",
7
7
  "repository": {