@stackbone/cli 0.1.0-alpha.0 → 0.1.0-alpha.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/CHANGELOG.md CHANGED
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.1.0-alpha.1] - 2026-05-12
11
+
12
+ ### Changed
13
+
14
+ - Default control plane URL updated to `https://api.stackbone.ai` (was `https://api.stackbone.dev`).
15
+ - Agent manifest `apiVersion` updated to `stackbone.ai/v1` (was `stackbone.dev/v1`).
16
+
10
17
  ## [0.1.0-alpha.0] - 2026-05-12
11
18
 
12
19
  ### Added
package/main.js CHANGED
@@ -186,7 +186,7 @@ var agentManifestRagSchema = z.object({
186
186
  });
187
187
  var agentManifestProtocolSchema = z.object({ required: z.number().int().min(1).optional() }).strict();
188
188
  var agentManifestSchema = z.object({
189
- apiVersion: z.literal("stackbone.dev/v1"),
189
+ apiVersion: z.literal("stackbone.ai/v1"),
190
190
  name: z.string().min(1),
191
191
  runtime: z.object({
192
192
  engine: z.enum(["node", "bun"]).default("node"),
@@ -964,7 +964,7 @@ var globalConfigSchema = z.object({
964
964
  });
965
965
  var DEFAULT_GLOBAL_CONFIG = {
966
966
  schemaVersion: 1,
967
- defaultApiUrl: "https://api.stackbone.dev",
967
+ defaultApiUrl: "https://api.stackbone.ai",
968
968
  telemetry: false
969
969
  };
970
970
  z.object({
@@ -1416,7 +1416,7 @@ var isVersionFlag = (rawArgs) => rawArgs.length === 1 && VERSION_FLAGS.has(rawAr
1416
1416
  var formatVersionOutput = (input) => `stackbone-cli ${input.cliVersion}\ncontract ${input.contractVersion}`;
1417
1417
  //#endregion
1418
1418
  //#region src/dev/contract.ts
1419
- var STACKBONE_CLI_BUILD_VERSION = "0.1.0-alpha.0";
1419
+ var STACKBONE_CLI_BUILD_VERSION = "0.1.0-alpha.1";
1420
1420
  /**
1421
1421
  * Capabilities the local emulator advertises on `GET /api/contract`. Typed as
1422
1422
  * `readonly Capability[]` so the compiler refuses any string outside the
@@ -3411,7 +3411,7 @@ CREATE EXTENSION IF NOT EXISTS vector;
3411
3411
  CREATE EXTENSION IF NOT EXISTS pgmq CASCADE;
3412
3412
  `;
3413
3413
  var renderComposeYaml = (opts) => `# Generated by \`stackbone dev\`. Do not edit — re-run \`stackbone dev\` to regenerate.
3414
- # Schema: stackbone.dev/compose-v1
3414
+ # Schema: stackbone.ai/compose-v1
3415
3415
  name: ${opts.projectName}
3416
3416
 
3417
3417
  services:
@@ -6554,7 +6554,7 @@ var getAgentByOwnerAndSlug = async (ctx, ownerOrgSlug, templateSlug) => {
6554
6554
  //#endregion
6555
6555
  //#region src/services/dev-tunnel.service.ts
6556
6556
  var GRANT_PATH = "/api/dev-tunnel/grants";
6557
- var DEFAULT_STATUS_URL = "https://status.stackbone.dev";
6557
+ var DEFAULT_STATUS_URL = "https://status.stackbone.ai";
6558
6558
  var REVOKE_TIMEOUT_MS = 3e3;
6559
6559
  var isError503Body = (body) => typeof body === "object" && body !== null;
6560
6560
  var requestDevTunnelGrant = async (input) => {
@@ -7580,12 +7580,12 @@ var docTopics = {
7580
7580
  "agent-yaml": `# agent.yaml
7581
7581
 
7582
7582
  The manifest at the project root that \`stackbone\` reads on every command.
7583
- Schema is locked under \`apiVersion: stackbone.dev/v1\`. Anything not declared
7583
+ Schema is locked under \`apiVersion: stackbone.ai/v1\`. Anything not declared
7584
7584
  here lives as open keys ignored by the CLI until promoted into the schema.
7585
7585
 
7586
7586
  ## Minimum manifest
7587
7587
 
7588
- apiVersion: stackbone.dev/v1
7588
+ apiVersion: stackbone.ai/v1
7589
7589
  name: my-agent
7590
7590
 
7591
7591
  When you omit a block, the CLI fills the defaults documented below. Path
@@ -7596,7 +7596,7 @@ execution time relative to the project root, never at parse time.
7596
7596
 
7597
7597
  ### \`apiVersion\` (required)
7598
7598
 
7599
- Locked to \`stackbone.dev/v1\`. Bumped only on a breaking change.
7599
+ Locked to \`stackbone.ai/v1\`. Bumped only on a breaking change.
7600
7600
 
7601
7601
  ### \`name\` (required)
7602
7602
 
@@ -7866,11 +7866,11 @@ var exists = async (path) => {
7866
7866
  };
7867
7867
  var renderAgentYaml = (input) => {
7868
7868
  return [
7869
- `# Stackbone agent manifest. Schema: stackbone.dev/v1.`,
7869
+ `# Stackbone agent manifest. Schema: stackbone.ai/v1.`,
7870
7870
  `# Run \`stackbone docs agent-yaml\` for the full reference.`,
7871
7871
  "",
7872
7872
  stringify(agentManifestSchema.parse({
7873
- apiVersion: "stackbone.dev/v1",
7873
+ apiVersion: "stackbone.ai/v1",
7874
7874
  name: input.name
7875
7875
  }))
7876
7876
  ].join("\n");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stackbone/cli",
3
- "version": "0.1.0-alpha.0",
3
+ "version": "0.1.0-alpha.1",
4
4
  "license": "UNLICENSED",
5
5
  "type": "module",
6
6
  "bin": {
Binary file
Binary file