@mmmbuto/masix 0.4.0 → 0.4.2

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 (42) hide show
  1. package/README.md +18 -14
  2. package/install.js +53 -27
  3. package/package.json +4 -3
  4. package/packages/plugin-base/codex-backend/0.1.4/SHA256SUMS +3 -0
  5. package/packages/plugin-base/codex-backend/0.1.4/codex-backend-android-aarch64-termux.pkg +0 -0
  6. package/packages/plugin-base/codex-backend/0.1.4/codex-backend-linux-x86_64.pkg +0 -0
  7. package/packages/plugin-base/codex-backend/0.1.4/codex-backend-macos-aarch64.pkg +0 -0
  8. package/packages/plugin-base/codex-backend/0.1.4/manifest.json +33 -0
  9. package/packages/plugin-base/codex-backend/CHANGELOG.md +17 -0
  10. package/packages/plugin-base/codex-backend/README.md +33 -0
  11. package/packages/plugin-base/codex-backend/source/Cargo.toml +25 -0
  12. package/packages/plugin-base/codex-backend/source/README-PACKAGE.txt +54 -0
  13. package/packages/plugin-base/codex-backend/source/plugin.manifest.json +103 -0
  14. package/packages/plugin-base/codex-backend/source/src/error.rs +60 -0
  15. package/packages/plugin-base/codex-backend/source/src/exec.rs +436 -0
  16. package/packages/plugin-base/codex-backend/source/src/http_backend.rs +1198 -0
  17. package/packages/plugin-base/codex-backend/source/src/lib.rs +328 -0
  18. package/packages/plugin-base/codex-backend/source/src/patch.rs +767 -0
  19. package/packages/plugin-base/codex-backend/source/src/policy.rs +297 -0
  20. package/packages/plugin-base/codex-backend/source/src/tools.rs +72 -0
  21. package/packages/plugin-base/codex-backend/source/src/workspace.rs +433 -0
  22. package/packages/plugin-base/codex-tools/0.1.3/SHA256SUMS +3 -0
  23. package/packages/plugin-base/codex-tools/0.1.3/codex-tools-android-aarch64-termux.pkg +0 -0
  24. package/packages/plugin-base/codex-tools/0.1.3/codex-tools-linux-x86_64.pkg +0 -0
  25. package/packages/plugin-base/codex-tools/0.1.3/codex-tools-macos-aarch64.pkg +0 -0
  26. package/packages/plugin-base/codex-tools/0.1.3/manifest.json +33 -0
  27. package/packages/plugin-base/codex-tools/CHANGELOG.md +17 -0
  28. package/packages/plugin-base/codex-tools/README.md +33 -0
  29. package/packages/plugin-base/codex-tools/source/Cargo.toml +23 -0
  30. package/packages/plugin-base/codex-tools/source/plugin.manifest.json +124 -0
  31. package/packages/plugin-base/codex-tools/source/src/main.rs +995 -0
  32. package/packages/plugin-base/discovery/0.2.4/SHA256SUMS +3 -0
  33. package/packages/plugin-base/discovery/0.2.4/discovery-android-aarch64-termux.pkg +0 -0
  34. package/packages/plugin-base/discovery/0.2.4/discovery-linux-x86_64.pkg +0 -0
  35. package/packages/plugin-base/discovery/0.2.4/discovery-macos-aarch64.pkg +0 -0
  36. package/packages/plugin-base/discovery/0.2.4/manifest.json +31 -0
  37. package/packages/plugin-base/discovery/CHANGELOG.md +17 -0
  38. package/packages/plugin-base/discovery/README.md +48 -0
  39. package/packages/plugin-base/discovery/source/Cargo.toml +14 -0
  40. package/packages/plugin-base/discovery/source/plugin.manifest.json +30 -0
  41. package/packages/plugin-base/discovery/source/src/main.rs +2570 -0
  42. package/prebuilt/masix +0 -0
@@ -0,0 +1,3 @@
1
+ b0a5b49c800a0ea89576bdc4106ac5a2882f7348761335367054973a8c286c3a discovery-android-aarch64-termux.pkg
2
+ 8e5071ed8d7f84ff2d5fcd531e6b4df4672827538f1d8807cb7fbb8de8533b41 discovery-linux-x86_64.pkg
3
+ b850b42f50e142e65577a418ecace3fefbec32502dba96c71f82593b37e5a004 discovery-macos-aarch64.pkg
@@ -0,0 +1,31 @@
1
+ {
2
+ "plugin_id": "discovery",
3
+ "version": "0.2.4",
4
+ "visibility": "plugin-base",
5
+ "license": "MIT",
6
+ "package_type": "mcp_binary",
7
+ "platforms": [
8
+ {
9
+ "id": "android-aarch64-termux",
10
+ "file": "discovery-android-aarch64-termux.pkg",
11
+ "sha256": "b0a5b49c800a0ea89576bdc4106ac5a2882f7348761335367054973a8c286c3a"
12
+ },
13
+ {
14
+ "id": "linux-x86_64",
15
+ "file": "discovery-linux-x86_64.pkg",
16
+ "sha256": "8e5071ed8d7f84ff2d5fcd531e6b4df4672827538f1d8807cb7fbb8de8533b41"
17
+ },
18
+ {
19
+ "id": "macos-aarch64",
20
+ "file": "discovery-macos-aarch64.pkg",
21
+ "sha256": "b850b42f50e142e65577a418ecace3fefbec32502dba96c71f82593b37e5a004"
22
+ }
23
+ ],
24
+ "install": {
25
+ "command": "masix plugin install-file --file <path-to-pkg> --plugin discovery --version 0.2.4 --package-type mcp_binary"
26
+ },
27
+ "notes": [
28
+ "Package usable without plugin server.",
29
+ "After install-file, plugin is registered in ~/.masix/plugins/installed.json and MCP config is synced."
30
+ ]
31
+ }
@@ -0,0 +1,17 @@
1
+ # discovery Package Changelog
2
+
3
+ ## 0.2.4 - 2026-03-05
4
+
5
+ - Refreshed package artifacts for android-aarch64-termux, linux-x86_64, macos-aarch64.
6
+ - Added `packages/plugin-base/discovery/0.2.4/` with updated `manifest.json` and `SHA256SUMS`.
7
+
8
+
9
+ ## 0.2.3 - 2026-03-02
10
+
11
+ - Added MIT package publication layout under `packages/plugin-base/discovery/0.2.3`.
12
+ - Included platform artifacts:
13
+ - `discovery-android-aarch64-termux.pkg`
14
+ - `discovery-linux-x86_64.pkg`
15
+ - `discovery-macos-aarch64.pkg`
16
+ - Added `manifest.json` with platform metadata and checksums.
17
+ - Added `SHA256SUMS` for manual integrity verification.
@@ -0,0 +1,48 @@
1
+ # discovery (`plugin-base`)
2
+
3
+ `discovery` provides MCP discovery and fetch tools bundled with the MIT repository.
4
+
5
+ ## What It Is
6
+
7
+ - Package type: `mcp_binary`
8
+ - Visibility: `plugin-base`
9
+ - Distribution: local `.pkg` install supported (`install-file`)
10
+
11
+ ## Install Example
12
+
13
+ Termux:
14
+
15
+ ```bash
16
+ masix plugin install-file \
17
+ --file packages/plugin-base/discovery/0.2.4/discovery-android-aarch64-termux.pkg \
18
+ --plugin discovery \
19
+ --version 0.2.4 \
20
+ --package-type mcp_binary
21
+ ```
22
+
23
+ Linux:
24
+
25
+ ```bash
26
+ masix plugin install-file \
27
+ --file packages/plugin-base/discovery/0.2.4/discovery-linux-x86_64.pkg \
28
+ --plugin discovery \
29
+ --version 0.2.4 \
30
+ --package-type mcp_binary
31
+ ```
32
+
33
+ macOS (Apple Silicon):
34
+
35
+ ```bash
36
+ masix plugin install-file \
37
+ --file packages/plugin-base/discovery/0.2.4/discovery-macos-aarch64.pkg \
38
+ --plugin discovery \
39
+ --version 0.2.4 \
40
+ --package-type mcp_binary
41
+ ```
42
+
43
+ After install, run:
44
+
45
+ ```bash
46
+ masix plugin enable discovery
47
+ masix restart
48
+ ```
@@ -0,0 +1,14 @@
1
+ [package]
2
+ name = "masix-plugin-discovery"
3
+ version = "0.2.4"
4
+ edition.workspace = true
5
+ license.workspace = true
6
+
7
+ [dependencies]
8
+ anyhow.workspace = true
9
+ clap.workspace = true
10
+ reqwest.workspace = true
11
+ scraper.workspace = true
12
+ serde.workspace = true
13
+ serde_json.workspace = true
14
+ tokio.workspace = true
@@ -0,0 +1,30 @@
1
+ {
2
+ "id": "discovery",
3
+ "name": "MasiX Discovery Tools",
4
+ "version": "0.2.4",
5
+ "visibility": "plugin-base",
6
+ "package_type": "mcp_binary",
7
+ "entrypoint": "masix-plugin-discovery",
8
+ "platforms_supported": [
9
+ "linux-x86_64",
10
+ "android-aarch64-termux",
11
+ "macos-aarch64"
12
+ ],
13
+ "platforms_tested": [
14
+ "linux-x86_64",
15
+ "android-aarch64-termux",
16
+ "macos-aarch64"
17
+ ],
18
+ "platforms_planned": [],
19
+ "commands": [
20
+ "web-search",
21
+ "web-fetch",
22
+ "torrent-search",
23
+ "torrent-extract",
24
+ "serve-mcp"
25
+ ],
26
+ "tool_access": {
27
+ "default_required_role": "user",
28
+ "per_tool_required_role": {}
29
+ }
30
+ }