@sdsrs/code-graph 0.36.0 → 0.38.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/README.md CHANGED
@@ -281,6 +281,8 @@ All tools are also available as CLI subcommands for shell scripts, hooks, and te
281
281
 
282
282
  Common options: `--json` (JSON output), `--compact` (compact output), `--limit N`, `--depth N`, `--file <path>`.
283
283
 
284
+ As of **v0.37.0** the CLI is [clap](https://docs.rs/clap)-based: **every subcommand has `--help`** for its full flag list (`code-graph-mcp <command> --help`), value flags accept both `--flag value` and `--flag=value`, and unknown flags or malformed arguments fail fast with a clear error and a non-zero exit code (`2`) instead of being silently ignored. For example, `trace` hides downstream middleware with `--no-middleware` (shown by default), and `snapshot` is a `create`/`inspect` subcommand pair.
285
+
284
286
  ## Plugin Slash Commands
285
287
 
286
288
  Available when installed as a Claude Code plugin:
@@ -4,7 +4,7 @@
4
4
  "author": {
5
5
  "name": "sdsrs"
6
6
  },
7
- "version": "0.36.0",
7
+ "version": "0.38.0",
8
8
  "keywords": [
9
9
  "code-graph",
10
10
  "ast",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sdsrs/code-graph",
3
- "version": "0.36.0",
3
+ "version": "0.38.0",
4
4
  "description": "MCP server that indexes codebases into an AST knowledge graph with semantic search, call graph traversal, and HTTP route tracing",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -35,10 +35,10 @@
35
35
  "node": ">=16"
36
36
  },
37
37
  "optionalDependencies": {
38
- "@sdsrs/code-graph-linux-x64": "0.36.0",
39
- "@sdsrs/code-graph-linux-arm64": "0.36.0",
40
- "@sdsrs/code-graph-darwin-x64": "0.36.0",
41
- "@sdsrs/code-graph-darwin-arm64": "0.36.0",
42
- "@sdsrs/code-graph-win32-x64": "0.36.0"
38
+ "@sdsrs/code-graph-linux-x64": "0.38.0",
39
+ "@sdsrs/code-graph-linux-arm64": "0.38.0",
40
+ "@sdsrs/code-graph-darwin-x64": "0.38.0",
41
+ "@sdsrs/code-graph-darwin-arm64": "0.38.0",
42
+ "@sdsrs/code-graph-win32-x64": "0.38.0"
43
43
  }
44
44
  }