@kl-c/matrixos 0.1.31 → 0.1.32
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/dist/cli/index.js +2 -12
- package/dist/cli-node/index.js +2 -12
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -2145,7 +2145,7 @@ var package_default;
|
|
|
2145
2145
|
var init_package = __esm(() => {
|
|
2146
2146
|
package_default = {
|
|
2147
2147
|
name: "@kl-c/matrixos",
|
|
2148
|
-
version: "0.1.
|
|
2148
|
+
version: "0.1.32",
|
|
2149
2149
|
description: "MaTrixOS \u2014 Agentic OS for OpenCode. Personalizable, communicating, self-improving, resilient.",
|
|
2150
2150
|
main: "./dist/index.js",
|
|
2151
2151
|
types: "dist/index.d.ts",
|
|
@@ -142509,17 +142509,7 @@ Available profiles: trader, plumber (see assets/profiles/)
|
|
|
142509
142509
|
process.stdout.write(result.stdout);
|
|
142510
142510
|
process.exit(result.exitCode);
|
|
142511
142511
|
});
|
|
142512
|
-
program2.command("profile <
|
|
142513
|
-
if (action !== "create") {
|
|
142514
|
-
process.stdout.write(`Unknown profile action: ${action}. Only 'create' is supported.
|
|
142515
|
-
`);
|
|
142516
|
-
return;
|
|
142517
|
-
}
|
|
142518
|
-
if (!name2) {
|
|
142519
|
-
process.stdout.write(`Usage: matrixos profile create <metier>
|
|
142520
|
-
`);
|
|
142521
|
-
return;
|
|
142522
|
-
}
|
|
142512
|
+
program2.command("profile-create <name>").description("Create a new business profile (mini-OS blueprint) at ~/.matrixos/profiles/<name>.json (\xA74.3.2)").option("-d, --display-name <name>", "Human-friendly name").option("--description <text>", "Profile description").option("-b, --base-agent <agent>", "Base agent (default: morpheus)").option("-e, --extends <list>", "Comma-separated base profiles to extend").action(async (name2, options) => {
|
|
142523
142513
|
const { executeCreateProfileCommand: executeCreateProfileCommand2 } = await Promise.resolve().then(() => (init_profile2(), exports_profile));
|
|
142524
142514
|
const result = executeCreateProfileCommand2({
|
|
142525
142515
|
name: name2,
|
package/dist/cli-node/index.js
CHANGED
|
@@ -2145,7 +2145,7 @@ var package_default;
|
|
|
2145
2145
|
var init_package = __esm(() => {
|
|
2146
2146
|
package_default = {
|
|
2147
2147
|
name: "@kl-c/matrixos",
|
|
2148
|
-
version: "0.1.
|
|
2148
|
+
version: "0.1.32",
|
|
2149
2149
|
description: "MaTrixOS \u2014 Agentic OS for OpenCode. Personalizable, communicating, self-improving, resilient.",
|
|
2150
2150
|
main: "./dist/index.js",
|
|
2151
2151
|
types: "dist/index.d.ts",
|
|
@@ -142564,17 +142564,7 @@ Available profiles: trader, plumber (see assets/profiles/)
|
|
|
142564
142564
|
process.stdout.write(result.stdout);
|
|
142565
142565
|
process.exit(result.exitCode);
|
|
142566
142566
|
});
|
|
142567
|
-
program2.command("profile <
|
|
142568
|
-
if (action !== "create") {
|
|
142569
|
-
process.stdout.write(`Unknown profile action: ${action}. Only 'create' is supported.
|
|
142570
|
-
`);
|
|
142571
|
-
return;
|
|
142572
|
-
}
|
|
142573
|
-
if (!name2) {
|
|
142574
|
-
process.stdout.write(`Usage: matrixos profile create <metier>
|
|
142575
|
-
`);
|
|
142576
|
-
return;
|
|
142577
|
-
}
|
|
142567
|
+
program2.command("profile-create <name>").description("Create a new business profile (mini-OS blueprint) at ~/.matrixos/profiles/<name>.json (\xA74.3.2)").option("-d, --display-name <name>", "Human-friendly name").option("--description <text>", "Profile description").option("-b, --base-agent <agent>", "Base agent (default: morpheus)").option("-e, --extends <list>", "Comma-separated base profiles to extend").action(async (name2, options) => {
|
|
142578
142568
|
const { executeCreateProfileCommand: executeCreateProfileCommand2 } = await Promise.resolve().then(() => (init_profile2(), exports_profile));
|
|
142579
142569
|
const result = executeCreateProfileCommand2({
|
|
142580
142570
|
name: name2,
|
package/dist/index.js
CHANGED
|
@@ -368006,7 +368006,7 @@ function getCachedVersion(options = {}) {
|
|
|
368006
368006
|
// package.json
|
|
368007
368007
|
var package_default = {
|
|
368008
368008
|
name: "@kl-c/matrixos",
|
|
368009
|
-
version: "0.1.
|
|
368009
|
+
version: "0.1.32",
|
|
368010
368010
|
description: "MaTrixOS \u2014 Agentic OS for OpenCode. Personalizable, communicating, self-improving, resilient.",
|
|
368011
368011
|
main: "./dist/index.js",
|
|
368012
368012
|
types: "dist/index.d.ts",
|
package/package.json
CHANGED