@alook/cli 0.0.24 → 0.0.25

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 CHANGED
@@ -13963,7 +13963,6 @@ var DaemonRuntimeItemSchema = exports_external.object({
13963
13963
  type: exports_external.string().optional(),
13964
13964
  provider: exports_external.string().optional(),
13965
13965
  runtime_mode: exports_external.string().optional(),
13966
- name: exports_external.string().optional(),
13967
13966
  version: exports_external.string().optional(),
13968
13967
  status: exports_external.string().optional(),
13969
13968
  model: exports_external.string().optional()
@@ -15694,7 +15693,6 @@ var agentRuntime = sqliteTable("agent_runtime", {
15694
15693
  id: text("id").primaryKey().$defaultFn(() => nanoid3()),
15695
15694
  workspaceId: text("workspace_id").notNull().references(() => workspace.id, { onDelete: "cascade" }),
15696
15695
  daemonId: text("daemon_id").notNull(),
15697
- name: text("name").notNull().default(""),
15698
15696
  runtimeMode: text("runtime_mode").notNull().default("local"),
15699
15697
  provider: text("provider").notNull(),
15700
15698
  deviceInfo: text("device_info").notNull().default(""),
@@ -16207,7 +16205,6 @@ function loadDaemonConfig(profile) {
16207
16205
  maxConcurrentTasks: parseInt(process.env.ALOOK_DAEMON_MAX_CONCURRENT_TASKS || "20"),
16208
16206
  daemonId,
16209
16207
  deviceName: process.env.ALOOK_DAEMON_DEVICE_NAME || h,
16210
- runtimeName: process.env.ALOOK_AGENT_RUNTIME_NAME || "Local Agent",
16211
16208
  workspacesRoot,
16212
16209
  cliVersion: getCurrentVersion()
16213
16210
  };
@@ -16982,7 +16979,6 @@ async function startDaemon(profile, serverUrl) {
16982
16979
  const runtimeIndex = new Map;
16983
16980
  for (const ws of workspaces) {
16984
16981
  const runtimes = providers.map((p) => ({
16985
- name: config2.runtimeName || `${p.type} (${config2.deviceName})`,
16986
16982
  type: p.type,
16987
16983
  version: p.version
16988
16984
  }));
@@ -13680,7 +13680,6 @@ var DaemonRuntimeItemSchema = exports_external.object({
13680
13680
  type: exports_external.string().optional(),
13681
13681
  provider: exports_external.string().optional(),
13682
13682
  runtime_mode: exports_external.string().optional(),
13683
- name: exports_external.string().optional(),
13684
13683
  version: exports_external.string().optional(),
13685
13684
  status: exports_external.string().optional(),
13686
13685
  model: exports_external.string().optional()
@@ -15411,7 +15410,6 @@ var agentRuntime = sqliteTable("agent_runtime", {
15411
15410
  id: text("id").primaryKey().$defaultFn(() => nanoid3()),
15412
15411
  workspaceId: text("workspace_id").notNull().references(() => workspace.id, { onDelete: "cascade" }),
15413
15412
  daemonId: text("daemon_id").notNull(),
15414
- name: text("name").notNull().default(""),
15415
15413
  runtimeMode: text("runtime_mode").notNull().default("local"),
15416
15414
  provider: text("provider").notNull(),
15417
15415
  deviceInfo: text("device_info").notNull().default(""),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alook/cli",
3
- "version": "0.0.24",
3
+ "version": "0.0.25",
4
4
  "description": "Alook CLI — Enable Your Person Colleague",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://github.com/alookai/alook#readme",