@xcraftmind/mastermind 0.28.0 → 0.28.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 (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -54,7 +54,7 @@ Three pieces — the split is the part that trips people up:
54
54
  |---|---|---|---|
55
55
  | **Index** — `init` + `index` | **per project** | `.mastermind/mmcg.db` in each repo | once per repo, refresh with `index` / `watch` |
56
56
  | **Workflow** — subagents, skills, commands | global | `~/.claude/{agents,skills,commands}/` | installed + refreshed by `init` |
57
- | **MCP registration** — `setup claude` | once | `~/.claude/.mcp.json` | once for all projects |
57
+ | **MCP registration** — `setup claude` | once | `~/.claude.json` (via `claude mcp add`) | once for all projects |
58
58
 
59
59
  - **The index is always per-project.** Run `mastermind init` in *every* repo you want indexed. `doctor` reporting `index database not found` just means you haven't done this in the current directory yet (the exact situation if you run `doctor` from `/tmp` or a fresh shell).
60
60
  - **The workflow installs globally on `init`** — subagents, skills + slash commands land in `~/.claude/{agents,skills,commands}/`, overwriting Mastermind's own files to keep them current (`--no-global` to skip). Ships with the npm package; cargo installs use the plugin marketplace instead.
@@ -71,7 +71,7 @@ Three pieces — the split is the part that trips people up:
71
71
  npm install -g @xcraftmind/mastermind
72
72
  ```
73
73
 
74
- Puts `mastermind` on your PATH. `setup claude --write-mcp` registers `command: "mastermind"` in `~/.claude/.mcp.json`.
74
+ Puts `mastermind` on your PATH. `setup claude --write-mcp` registers `command: "mastermind"` at Claude Code user scope via `claude mcp add --scope user` (writes `~/.claude.json`).
75
75
 
76
76
  ### Project-local
77
77
 
@@ -116,7 +116,7 @@ mastermind query callers <symbol> # one-shot CLI query (agents use the
116
116
  mastermind uninstall [--scope <s>] # remove project setup (.mastermind/ + project .mcp.json); --scope global|all for the global MCP entry
117
117
  ```
118
118
 
119
- `mmcg` is a legacy alias for the same binary (cargo installs expose it under that name) prefer `mastermind`. See `mastermind <subcommand> --help` for full options.
119
+ `mmcg` is the cargo binary name (`cargo install mmcg` puts `mmcg` on PATH rather than `mastermind`) — same code, same subcommands. See `mastermind <subcommand> --help` for full options.
120
120
 
121
121
  ## Supported platforms
122
122
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xcraftmind/mastermind",
3
- "version": "0.28.0",
3
+ "version": "0.28.1",
4
4
  "description": "Mastermind workflow CLI + mmcg codegraph for AI coding agents — verify-spec / audit-spec gates, MCP server, multi-language tree-sitter indexer (Python, TypeScript, JavaScript, Rust, C#, Go, Java, PHP, C/C++). Prebuilt native binaries via optional platform packages — no Rust toolchain required.",
5
5
  "license": "MIT",
6
6
  "author": "xcraftmind",