@standardagents/cli 0.15.2 → 0.15.3
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 +3 -3
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -242,7 +242,7 @@ function getScaffoldStandardAgentsVersion() {
|
|
|
242
242
|
if (process.env.STANDARDAGENTS_WORKSPACE === "1") {
|
|
243
243
|
return "workspace:*";
|
|
244
244
|
}
|
|
245
|
-
return "0.15.
|
|
245
|
+
return "0.15.3";
|
|
246
246
|
}
|
|
247
247
|
function getScaffoldCloudflareVitePluginVersion() {
|
|
248
248
|
return "^1.17.0";
|
|
@@ -1785,7 +1785,7 @@ async function ensurePlatformAuth(options, quietLogs = false, context = {}) {
|
|
|
1785
1785
|
return { connected: true, mode: "standardagents" };
|
|
1786
1786
|
}
|
|
1787
1787
|
function getCliVersion() {
|
|
1788
|
-
return "0.15.
|
|
1788
|
+
return "0.15.3";
|
|
1789
1789
|
}
|
|
1790
1790
|
function getSipVersion() {
|
|
1791
1791
|
return "1.0.1";
|
|
@@ -5299,7 +5299,7 @@ async function settleStdinForInitHandoff(stdin = process.stdin) {
|
|
|
5299
5299
|
}
|
|
5300
5300
|
}
|
|
5301
5301
|
var program = new Command();
|
|
5302
|
-
program.name("agents").description("CLI tool for Standard Agents / AgentBuilder").version("0.15.
|
|
5302
|
+
program.name("agents").description("CLI tool for Standard Agents / AgentBuilder").version("0.15.3");
|
|
5303
5303
|
program.command("init [project-name]").description("Create a new Standard Agents project").option("-y, --yes", "Skip prompts and use defaults").option("--local", "Use local project scaffolding instead of browser platform onboarding").option("--cli", "Use classic line-by-line CLI prompts instead of the TUI wizard").option("--api-url <url>", "Standard Agents platform API URL").option("--endpoint <url>", "Platform API endpoint for auth/bootstrap exchange").option("--package-manager <manager>", "Package manager for generated project: npm, pnpm, yarn, or bun").option("--template <template>", "Vite template to use", "vanilla-ts").option("--workspace", "Install @standardagents packages as workspace:* (local pnpm workspace development)").addOption(new Option("--bootstrap <code>", "Exchange a web onboarding bootstrap code")).action(init);
|
|
5304
5304
|
program.command("login").description("Authenticate this machine (or use --bootstrap for project bootstrap auth)").option("--bootstrap <code>", "Bootstrap code from web onboarding").option("--endpoint <url>", "Platform API endpoint (default: https://api.standardagents.ai)").option("--no-open", "Do not auto-open browser URL").action(login);
|
|
5305
5305
|
program.command("logout").description("Clear stored StandardAgents auth and local org-scoped project auth").option("--org <org-id-or-slug>", "Org ID or slug to logout (defaults to active org)").option("--endpoint <url>", "Platform API endpoint (default: https://api.standardagents.ai)").action(logout);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@standardagents/cli",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
"jsonc-parser": "^3.3.1",
|
|
32
32
|
"magicast": "^0.3.5",
|
|
33
33
|
"react": "^19.2.0",
|
|
34
|
-
"@standardagents/agentbuilder-template": "0.15.
|
|
35
|
-
"@standardagents/skill": "0.15.
|
|
34
|
+
"@standardagents/agentbuilder-template": "0.15.3",
|
|
35
|
+
"@standardagents/skill": "0.15.3"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@types/node": "^22.18.13",
|