@usecontextlayer/ctxs 0.0.0-alpha-2 → 0.0.0-alpha-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/cli.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- !function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:{},n=(new e.Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="f20da0ea-9a03-5aee-8f26-c2eb4e49f61a")}catch(e){}}();
3
+ !function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:{},n=(new e.Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="7f1b159d-6666-5471-bafe-aeb4bbc00736")}catch(e){}}();
4
4
  import { createRequire } from "node:module";
5
5
  import * as Sentry from "@sentry/node";
6
6
  import * as fs$2 from "node:fs/promises";
@@ -4913,7 +4913,7 @@ function normalizedKey(event) {
4913
4913
 
4914
4914
  //#endregion
4915
4915
  //#region package.json
4916
- var version$1 = "0.0.0-alpha-2";
4916
+ var version$1 = "0.0.0-alpha-3";
4917
4917
 
4918
4918
  //#endregion
4919
4919
  //#region sentry.ts
@@ -5947,6 +5947,7 @@ function buildLinuxClaudeConfig(input) {
5947
5947
  delete config.installMethod;
5948
5948
  config.lastReleaseNotesSeen = "99.0.0";
5949
5949
  config.autoUpdates = false;
5950
+ config.hasCompletedOnboarding = true;
5950
5951
  config.autoConnectIde = false;
5951
5952
  config.prStatusFooterEnabled = false;
5952
5953
  const projects = config.projects && typeof config.projects === "object" && !Array.isArray(config.projects) ? { ...config.projects } : {};
@@ -60147,7 +60148,7 @@ function createScheduleApiClient(config) {
60147
60148
  })
60148
60149
  };
60149
60150
  }
60150
- const SERVER_VERSION = "0.0.0-alpha-2";
60151
+ const SERVER_VERSION = "0.0.0-alpha-3";
60151
60152
  /** The most operations one OperationSet will carry. The service's own ceiling. */
60152
60153
  const MAX_OPERATIONS = 200;
60153
60154
  /**
@@ -99846,7 +99847,7 @@ async function provisionEphemeralDatabases(opts) {
99846
99847
  }
99847
99848
 
99848
99849
  //#endregion
99849
- //#region ../slate-bridge/dist/platform-harness-D_4IYMvJ.mjs
99850
+ //#region ../slate-bridge/dist/platform-harness-baSEO2xe.mjs
99850
99851
  const nonEmptyStringSchema = string$5().trim().min(1);
99851
99852
  const portSchema = number$3().int().min(0).max(65535).default(7777);
99852
99853
  const envSchema = object$4({
@@ -99855,7 +99856,7 @@ const envSchema = object$4({
99855
99856
  CTX_PLATFORM_URL: url().default("http://127.0.0.1:3010").transform((url) => url.replace(/\/+$/, "")),
99856
99857
  CTX_WEB_URL: url().default("http://localhost:3000").transform((url) => url.replace(/\/+$/, "")),
99857
99858
  CTXS_BRIDGE_PORT: portSchema,
99858
- CTXS_CLAUDE_IMAGE: nonEmptyStringSchema.default("ghcr.io/usecontextlayer/ctx-sandbox:0.0.0-alpha-2"),
99859
+ CTXS_CLAUDE_IMAGE: nonEmptyStringSchema.default("ghcr.io/usecontextlayer/ctx-sandbox:0.0.0-alpha-3"),
99859
99860
  CTXS_CLAUDE_MODEL: nonEmptyStringSchema.default("opus"),
99860
99861
  CTXS_HOST_CLAUDE_JSON_PATH: nonEmptyStringSchema.default(() => path.join(os.homedir(), ".claude.json")),
99861
99862
  NODE_ENV: _enum$1([
@@ -100414,9 +100415,24 @@ function generateSandboxName() {
100414
100415
  }
100415
100416
  const TERMINAL_THEMES = [
100416
100417
  "ayu-light",
100418
+ "ayu-white",
100417
100419
  "catppuccin-latte",
100418
100420
  "catppuccin-white"
100419
100421
  ];
100422
+ const AYU_CLAUDE_OVERRIDES = {
100423
+ bashBorder: "#9e75c7",
100424
+ error: "#ea6c6d",
100425
+ inactive: "#686868",
100426
+ permission: "#3199e1",
100427
+ planMode: "#46ba94",
100428
+ promptBorder: "#c7c7c7",
100429
+ selectionBg: "#b3d4fc",
100430
+ subtle: "#c7c7c7",
100431
+ success: "#6cbf43",
100432
+ suggestion: "#3199e1",
100433
+ text: "#5c6166",
100434
+ warning: "#eca944"
100435
+ };
100420
100436
  const CATPPUCCIN_CLAUDE_OVERRIDES = {
100421
100437
  bashBorder: "#ea76cb",
100422
100438
  error: "#d20f39",
@@ -100435,20 +100451,12 @@ const TERMINAL_CLAUDE_THEMES = {
100435
100451
  "ayu-light": JSON.stringify({
100436
100452
  base: "light",
100437
100453
  name: "Ayu Light",
100438
- overrides: {
100439
- bashBorder: "#9e75c7",
100440
- error: "#ea6c6d",
100441
- inactive: "#686868",
100442
- permission: "#3199e1",
100443
- planMode: "#46ba94",
100444
- promptBorder: "#c7c7c7",
100445
- selectionBg: "#b3d4fc",
100446
- subtle: "#c7c7c7",
100447
- success: "#6cbf43",
100448
- suggestion: "#3199e1",
100449
- text: "#5c6166",
100450
- warning: "#eca944"
100451
- }
100454
+ overrides: AYU_CLAUDE_OVERRIDES
100455
+ }, null, " "),
100456
+ "ayu-white": JSON.stringify({
100457
+ base: "light",
100458
+ name: "Ayu White",
100459
+ overrides: AYU_CLAUDE_OVERRIDES
100452
100460
  }, null, " "),
100453
100461
  "catppuccin-latte": JSON.stringify({
100454
100462
  base: "light",
@@ -105674,4 +105682,4 @@ runCli().catch((error) => {
105674
105682
  //#endregion
105675
105683
  export { createProgram, runCli };
105676
105684
  //# sourceMappingURL=cli.mjs.map
105677
- //# debugId=f20da0ea-9a03-5aee-8f26-c2eb4e49f61a
105685
+ //# debugId=7f1b159d-6666-5471-bafe-aeb4bbc00736