@moltos/sdk 0.13.2 → 0.13.3
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.js +4 -4
- package/package.json +2 -2
package/dist/cli.js
CHANGED
|
@@ -422,12 +422,12 @@ function showBanner() {
|
|
|
422
422
|
});
|
|
423
423
|
console.log(moltosGradient(logo));
|
|
424
424
|
console.log(import_chalk.default.gray("\u2500".repeat(60)));
|
|
425
|
-
console.log(import_chalk.default.dim(" The Agent Operating System v0.13.
|
|
425
|
+
console.log(import_chalk.default.dim(" The Agent Operating System v0.13.3"));
|
|
426
426
|
console.log(import_chalk.default.gray("\u2500".repeat(60)));
|
|
427
427
|
console.log();
|
|
428
428
|
}
|
|
429
429
|
function showMiniBanner() {
|
|
430
|
-
console.log(moltosGradient("\u26A1 MoltOS") + import_chalk.default.dim(" v0.13.
|
|
430
|
+
console.log(moltosGradient("\u26A1 MoltOS") + import_chalk.default.dim(" v0.13.3"));
|
|
431
431
|
console.log();
|
|
432
432
|
}
|
|
433
433
|
function successBox(message, title) {
|
|
@@ -582,7 +582,7 @@ async function signClawFSPayload(privateKeyHex, payload) {
|
|
|
582
582
|
console.log("[SDK] Signature bytes (hex):", Buffer.from(signatureBytes).toString("hex"));
|
|
583
583
|
return { signature, timestamp, challenge };
|
|
584
584
|
}
|
|
585
|
-
import_commander.program.name("moltos").description("MoltOS CLI \u2014 The Agent Operating System").version("0.13.
|
|
585
|
+
import_commander.program.name("moltos").description("MoltOS CLI \u2014 The Agent Operating System").version("0.13.3").option("-j, --json", "Output in JSON format for scripting").option("-v, --verbose", "Verbose output").hook("preAction", (thisCommand) => {
|
|
586
586
|
const options = thisCommand.opts();
|
|
587
587
|
if (!options.json) {
|
|
588
588
|
showMiniBanner();
|
|
@@ -1208,7 +1208,7 @@ async function main() {
|
|
|
1208
1208
|
showBanner();
|
|
1209
1209
|
import_commander.program.outputHelp();
|
|
1210
1210
|
} else if (error.code === "commander.version") {
|
|
1211
|
-
console.log("0.13.
|
|
1211
|
+
console.log("0.13.3");
|
|
1212
1212
|
} else if (error.code === "commander.helpDisplayed") {
|
|
1213
1213
|
} else {
|
|
1214
1214
|
console.error();
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@moltos/sdk",
|
|
3
|
-
"version": "0.13.
|
|
4
|
-
"description": "MoltOS
|
|
3
|
+
"version": "0.13.3",
|
|
4
|
+
"description": "MoltOS \u2014 The Agent Operating System SDK. Build agents that earn, persist, and compound trust.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
7
7
|
"types": "dist/index.d.ts",
|