@standardagents/cli 0.12.6 → 0.12.8
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
|
@@ -1702,7 +1702,7 @@ function getPackageVersion() {
|
|
|
1702
1702
|
if (process.env.STANDARDAGENTS_WORKSPACE === "1") {
|
|
1703
1703
|
return "workspace:*";
|
|
1704
1704
|
}
|
|
1705
|
-
return "0.12.
|
|
1705
|
+
return "0.12.8";
|
|
1706
1706
|
}
|
|
1707
1707
|
async function selectPackageManager(detected) {
|
|
1708
1708
|
const options = ["npm", "pnpm", "yarn", "bun"];
|
|
@@ -2919,7 +2919,7 @@ async function listPacked() {
|
|
|
2919
2919
|
|
|
2920
2920
|
// src/index.ts
|
|
2921
2921
|
var program = new Command();
|
|
2922
|
-
program.name("agents").description("CLI tool for Standard Agents / AgentBuilder").version("0.12.
|
|
2922
|
+
program.name("agents").description("CLI tool for Standard Agents / AgentBuilder").version("0.12.8");
|
|
2923
2923
|
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);
|
|
2924
2924
|
program.command("scaffold").description("Add Standard Agents to an existing Vite project").option("--force", "Overwrite existing configuration").action(scaffold);
|
|
2925
2925
|
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);
|