slopwaresystems 0.2.1 → 0.2.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.
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -24859,13 +24859,13 @@ ${written.map((path3) => ` ${path3}`).join("\n")}`);
|
|
|
24859
24859
|
}
|
|
24860
24860
|
|
|
24861
24861
|
// src/index.ts
|
|
24862
|
-
var program2 = new Command().name("slop").description("Slopware Tasks from the terminal. Everything a person can do on the board, an agent can do here.").version("0.2.
|
|
24862
|
+
var program2 = new Command().name("slop").description("Slopware Tasks from the terminal. Everything a person can do on the board, an agent can do here.").version("0.2.2").option("--json", "machine-readable output: JSON on stdout, errors as JSON on stderr").hook("preAction", (_, action) => setJsonMode(Boolean(action.optsWithGlobals().json))).showHelpAfterError("(run with --help for usage)");
|
|
24863
24863
|
registerAuthCommands(program2);
|
|
24864
24864
|
registerProjectCommands(program2);
|
|
24865
24865
|
var taskCommand = registerTaskCommands(program2);
|
|
24866
24866
|
registerSessionCommands(program2, taskCommand);
|
|
24867
24867
|
registerThreadCommands(program2, taskCommand);
|
|
24868
|
-
registerMcpCommands(program2, "0.2.
|
|
24868
|
+
registerMcpCommands(program2, "0.2.2");
|
|
24869
24869
|
registerGuideCommand(program2);
|
|
24870
24870
|
registerSkillCommands(program2);
|
|
24871
24871
|
program2.parseAsync().catch(fail);
|