@standardagents/cli 0.14.0 → 0.14.1
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 +2 -2
package/dist/index.js
CHANGED
|
@@ -1880,7 +1880,7 @@ function getWorkspacePackageVersion() {
|
|
|
1880
1880
|
if (process.env.STANDARDAGENTS_WORKSPACE === "1") {
|
|
1881
1881
|
return "workspace:*";
|
|
1882
1882
|
}
|
|
1883
|
-
return "0.14.
|
|
1883
|
+
return "0.14.1";
|
|
1884
1884
|
}
|
|
1885
1885
|
function getSipPackageVersion() {
|
|
1886
1886
|
return "1.0.1";
|
|
@@ -4111,7 +4111,7 @@ async function availableModels(options = {}) {
|
|
|
4111
4111
|
|
|
4112
4112
|
// src/index.ts
|
|
4113
4113
|
var program = new Command();
|
|
4114
|
-
program.name("agents").description("CLI tool for Standard Agents / AgentBuilder").version("0.14.
|
|
4114
|
+
program.name("agents").description("CLI tool for Standard Agents / AgentBuilder").version("0.14.1");
|
|
4115
4115
|
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);
|
|
4116
4116
|
program.command("scaffold").description("Add Standard Agents to an existing Vite project").option("--force", "Overwrite existing configuration").action(scaffold);
|
|
4117
4117
|
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.14.
|
|
3
|
+
"version": "0.14.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "restricted",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"jsonc-parser": "^3.3.1",
|
|
28
28
|
"chalk": "^5.3.0",
|
|
29
29
|
"magicast": "^0.3.5",
|
|
30
|
-
"@standardagents/skill": "0.14.
|
|
30
|
+
"@standardagents/skill": "0.14.1"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@types/node": "^22.18.13",
|