@standardagents/cli 0.12.7 → 0.12.9

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -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.7";
1705
+ return "0.12.9";
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.7");
2922
+ program.name("agents").description("CLI tool for Standard Agents / AgentBuilder").version("0.12.9");
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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@standardagents/cli",
3
- "version": "0.12.7",
3
+ "version": "0.12.9",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "restricted",