@jive-ai/cli 0.0.5 → 0.0.6
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.mjs +5 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -2093,10 +2093,14 @@ async function checkTeamMembership() {
|
|
|
2093
2093
|
}
|
|
2094
2094
|
}
|
|
2095
2095
|
|
|
2096
|
+
//#endregion
|
|
2097
|
+
//#region package.json
|
|
2098
|
+
var version = "0.0.6";
|
|
2099
|
+
|
|
2096
2100
|
//#endregion
|
|
2097
2101
|
//#region src/index.ts
|
|
2098
2102
|
const program = new Command();
|
|
2099
|
-
program.name("jive").description("CLI tool for managing MCP servers, tools, and subagents across teams").version(
|
|
2103
|
+
program.name("jive").description("CLI tool for managing MCP servers, tools, and subagents across teams").version(version);
|
|
2100
2104
|
program.command("login").description("Authenticate with the Jive platform").action(loginCommand);
|
|
2101
2105
|
program.command("signup").description("Create a new account").action(signupCommand);
|
|
2102
2106
|
program.command("logout").description("Clear authentication credentials").action(logoutCommand);
|