@xcraftmind/mastermind 0.22.0 → 0.22.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.
- package/README.md +11 -0
- package/package.json +9 -8
package/README.md
CHANGED
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
# @xcraftmind/mastermind
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@xcraftmind/mastermind)
|
|
4
|
+
[](https://github.com/xcrft/mastermind/actions/workflows/ci-mmcg.yml)
|
|
5
|
+
[](./LICENSE)
|
|
6
|
+
|
|
3
7
|
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++).
|
|
4
8
|
|
|
5
9
|
Prebuilt native binaries via optional platform packages — **no Rust toolchain required**.
|
|
6
10
|
|
|
7
11
|
## Install
|
|
8
12
|
|
|
13
|
+
Requires **Node.js 18+**. The CLI is a thin JS wrapper around a prebuilt native binary — no Rust toolchain needed (except the build-from-source path below).
|
|
14
|
+
|
|
9
15
|
### One-shot (no install)
|
|
10
16
|
|
|
11
17
|
```sh
|
|
@@ -101,5 +107,10 @@ No `postinstall` script. No network calls beyond the npm registry itself.
|
|
|
101
107
|
## Links
|
|
102
108
|
|
|
103
109
|
- Source: [github.com/xcrft/mastermind](https://github.com/xcrft/mastermind)
|
|
110
|
+
- Changelog: [CHANGELOG.md](https://github.com/xcrft/mastermind/blob/main/CHANGELOG.md)
|
|
104
111
|
- mmcg Rust crate: [crates.io/crates/mmcg](https://crates.io/crates/mmcg)
|
|
105
112
|
- MCP protocol: [modelcontextprotocol.io](https://modelcontextprotocol.io)
|
|
113
|
+
|
|
114
|
+
## License
|
|
115
|
+
|
|
116
|
+
MIT — see [LICENSE](./LICENSE).
|
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xcraftmind/mastermind",
|
|
3
|
-
"version": "0.22.
|
|
3
|
+
"version": "0.22.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
|
+
"author": "xcraftmind",
|
|
6
7
|
"type": "module",
|
|
7
8
|
"repository": {
|
|
8
9
|
"type": "git",
|
|
@@ -36,12 +37,12 @@
|
|
|
36
37
|
"mastermind"
|
|
37
38
|
],
|
|
38
39
|
"optionalDependencies": {
|
|
39
|
-
"@xcraftmind/mmcg-darwin-arm64": "0.22.
|
|
40
|
-
"@xcraftmind/mmcg-darwin-x64": "0.22.
|
|
41
|
-
"@xcraftmind/mmcg-linux-x64-gnu": "0.22.
|
|
42
|
-
"@xcraftmind/mmcg-linux-arm64-gnu": "0.22.
|
|
43
|
-
"@xcraftmind/mmcg-linux-x64-musl": "0.22.
|
|
44
|
-
"@xcraftmind/mmcg-linux-arm64-musl": "0.22.
|
|
45
|
-
"@xcraftmind/mmcg-win32-x64-msvc": "0.22.
|
|
40
|
+
"@xcraftmind/mmcg-darwin-arm64": "0.22.1",
|
|
41
|
+
"@xcraftmind/mmcg-darwin-x64": "0.22.1",
|
|
42
|
+
"@xcraftmind/mmcg-linux-x64-gnu": "0.22.1",
|
|
43
|
+
"@xcraftmind/mmcg-linux-arm64-gnu": "0.22.1",
|
|
44
|
+
"@xcraftmind/mmcg-linux-x64-musl": "0.22.1",
|
|
45
|
+
"@xcraftmind/mmcg-linux-arm64-musl": "0.22.1",
|
|
46
|
+
"@xcraftmind/mmcg-win32-x64-msvc": "0.22.1"
|
|
46
47
|
}
|
|
47
48
|
}
|