@standardagents/cli 0.11.0-next.56def20 → 0.11.0-next.7005954
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
|
@@ -1571,7 +1571,7 @@ function getPackageVersion() {
|
|
|
1571
1571
|
if (process.env.STANDARDAGENTS_WORKSPACE === "1") {
|
|
1572
1572
|
return "workspace:*";
|
|
1573
1573
|
}
|
|
1574
|
-
return "0.11.0-next.
|
|
1574
|
+
return "0.11.0-next.7005954";
|
|
1575
1575
|
}
|
|
1576
1576
|
async function selectPackageManager(detected) {
|
|
1577
1577
|
const options = ["npm", "pnpm", "yarn", "bun"];
|
|
@@ -2367,7 +2367,7 @@ out
|
|
|
2367
2367
|
|
|
2368
2368
|
// src/index.ts
|
|
2369
2369
|
var program = new Command();
|
|
2370
|
-
program.name("agents").description("CLI tool for Standard Agents / AgentBuilder").version("0.11.0-next.
|
|
2370
|
+
program.name("agents").description("CLI tool for Standard Agents / AgentBuilder").version("0.11.0-next.7005954");
|
|
2371
2371
|
program.command("init [project-name]").description("Create a new Standard Agents project (runs create vite, then scaffold)").option("-y, --yes", "Skip prompts and use defaults").option("--template <template>", "Vite template to use", "vanilla-ts").action(init);
|
|
2372
2372
|
program.command("scaffold").description("Add Standard Agents to an existing Vite project").option("--force", "Overwrite existing configuration").action(scaffold);
|
|
2373
2373
|
program.command("init-chat [project-name]").description("Scaffold a frontend chat application").option("-y, --yes", "Skip prompts and use defaults").option("--framework <framework>", "Framework to use (vite or nextjs)").action(initChat);
|