@standardagents/cli 0.11.10 → 0.11.12
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
|
@@ -1582,7 +1582,7 @@ function getPackageVersion() {
|
|
|
1582
1582
|
if (process.env.STANDARDAGENTS_WORKSPACE === "1") {
|
|
1583
1583
|
return "workspace:*";
|
|
1584
1584
|
}
|
|
1585
|
-
return "0.11.
|
|
1585
|
+
return "0.11.12";
|
|
1586
1586
|
}
|
|
1587
1587
|
async function selectPackageManager(detected) {
|
|
1588
1588
|
const options = ["npm", "pnpm", "yarn", "bun"];
|
|
@@ -2378,7 +2378,7 @@ out
|
|
|
2378
2378
|
|
|
2379
2379
|
// src/index.ts
|
|
2380
2380
|
var program = new Command();
|
|
2381
|
-
program.name("agents").description("CLI tool for Standard Agents / AgentBuilder").version("0.11.
|
|
2381
|
+
program.name("agents").description("CLI tool for Standard Agents / AgentBuilder").version("0.11.12");
|
|
2382
2382
|
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);
|
|
2383
2383
|
program.command("scaffold").description("Add Standard Agents to an existing Vite project").option("--force", "Overwrite existing configuration").action(scaffold);
|
|
2384
2384
|
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);
|