@vionwilliams/agent-os 1.0.0-alpha.15 → 1.0.0-alpha.16

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.
Files changed (3) hide show
  1. package/README.md +21 -13
  2. package/dist/cli.js +46 -46
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  > 智能任务通用工作系统 · 多模型路由 + 意图编排 + 多智能体协调 + DataHub + 可编程面板 + LLM 知识编译器
4
4
 
5
- **Status**: `1.0.0-alpha.15` · Beta 测试版 · npm 公共包可用
5
+ **Status**: `1.0.0-alpha.16` · Beta 测试版 · npm 公共包可用
6
6
 
7
7
  ---
8
8
 
@@ -44,34 +44,42 @@ bun run dev:bdi-console
44
44
 
45
45
  默认打开本地端口:`http://127.0.0.1:3222`。BDI 控制台不嵌入任务面板;它只在需要执行时把 active intention 编译为 task-system 工作对象。
46
46
 
47
- ### 0. 前置环境
47
+ ### 1. Mac 小白安装(推荐)
48
48
 
49
49
  ```bash
50
- node -v
51
- bun -v
50
+ curl -fsSL https://raw.githubusercontent.com/VIONWILLIAMS/agent-os-install/main/install-macos-cli.sh -o install-agent-os-mac.sh
52
51
  ```
53
52
 
54
- 要求:
53
+ 然后运行:
55
54
 
56
- - Node.js `>= 20`
57
- - Bun `>= 1.3.14`
55
+ ```bash
56
+ bash install-agent-os-mac.sh
57
+ ```
58
+
59
+ 脚本会自动检查并安装 Node.js、Bun、Agent-OS CLI,并引导配置 DeepSeek。
58
60
 
59
- ### 1. npm 安装(推荐)
61
+ 安装完成后重启终端,再验证:
60
62
 
61
63
  ```bash
62
- npm install -g @vionwilliams/agent-os@alpha
63
64
  agent-os --version
64
65
  ```
65
66
 
66
- ### 2. 二进制安装
67
+ 成功时会显示 `1.0.0-alpha.16 (Agent-OS)` 或更新版本。
68
+
69
+ ### 2. 手动 npm 安装
70
+
71
+ 如果电脑已经有 Node.js `>= 20` 和 Bun `>= 1.3.14`:
72
+
73
+ ```bash
74
+ npm install -g @vionwilliams/agent-os@alpha
75
+ ```
76
+
77
+ 然后验证:
67
78
 
68
79
  ```bash
69
- curl -fsSL https://raw.githubusercontent.com/VIONWILLIAMS/agent-os/main/scripts/install.sh | bash
70
80
  agent-os --version
71
81
  ```
72
82
 
73
- > 注意:二进制安装依赖 GitHub Releases 的 latest 标签;若 release 未同步到最新版本,优先使用 npm 安装。
74
-
75
83
  ### 3. 从源码运行(开发者)
76
84
 
77
85
  ```bash
package/dist/cli.js CHANGED
@@ -93307,7 +93307,7 @@ var init_system = __esm(() => {
93307
93307
  AGENT_SDK_CLAUDE_CODE_PRESET_PREFIX,
93308
93308
  AGENT_SDK_PREFIX
93309
93309
  ];
93310
- AGENT_OS_VERSION = typeof MACRO !== "undefined" ? "1.0.0-alpha.15" : "dev";
93310
+ AGENT_OS_VERSION = typeof MACRO !== "undefined" ? "1.0.0-alpha.16" : "dev";
93311
93311
  CLI_SYSPROMPT_PREFIXES = new Set(CLI_SYSPROMPT_PREFIX_VALUES);
93312
93312
  });
93313
93313
 
@@ -93751,7 +93751,7 @@ function getClaudeCodeUserAgent() {
93751
93751
  }
93752
93752
  var AGENT_OS_VERSION2;
93753
93753
  var init_userAgent = __esm(() => {
93754
- AGENT_OS_VERSION2 = typeof MACRO !== "undefined" ? "1.0.0-alpha.15" : "dev";
93754
+ AGENT_OS_VERSION2 = typeof MACRO !== "undefined" ? "1.0.0-alpha.16" : "dev";
93755
93755
  });
93756
93756
 
93757
93757
  // src/utils/http.ts
@@ -93832,7 +93832,7 @@ var init_http2 = __esm(() => {
93832
93832
  init_auth();
93833
93833
  init_userAgent();
93834
93834
  init_workloadContext();
93835
- AGENT_OS_VERSION3 = typeof MACRO !== "undefined" ? "1.0.0-alpha.15" : "dev";
93835
+ AGENT_OS_VERSION3 = typeof MACRO !== "undefined" ? "1.0.0-alpha.16" : "dev";
93836
93836
  });
93837
93837
 
93838
93838
  // src/services/api/router/userProviders.ts
@@ -207166,7 +207166,7 @@ var init_sessionStorage = __esm(() => {
207166
207166
  init_settings2();
207167
207167
  init_slowOperations();
207168
207168
  init_uuid();
207169
- VERSION4 = typeof MACRO !== "undefined" ? "1.0.0-alpha.15" : "unknown";
207169
+ VERSION4 = typeof MACRO !== "undefined" ? "1.0.0-alpha.16" : "unknown";
207170
207170
  MAX_TOMBSTONE_REWRITE_BYTES = 50 * 1024 * 1024;
207171
207171
  SKIP_FIRST_PROMPT_PATTERN = /^(?:\s*<[a-z][\w-]*[\s>]|\[Request interrupted by user[^\]]*\])/;
207172
207172
  EPHEMERAL_PROGRESS_TYPES = new Set([
@@ -207296,7 +207296,7 @@ function Feedback({
207296
207296
  platform: env3.platform,
207297
207297
  gitRepo: envInfo.isGit,
207298
207298
  terminal: env3.terminal,
207299
- version: "1.0.0-alpha.15",
207299
+ version: "1.0.0-alpha.16",
207300
207300
  transcript: normalizeMessagesForAPI(messages),
207301
207301
  errors: sanitizedErrors,
207302
207302
  lastApiRequest: getLastAPIRequest(),
@@ -207480,7 +207480,7 @@ function Feedback({
207480
207480
  ", ",
207481
207481
  env3.terminal,
207482
207482
  ", v",
207483
- "1.0.0-alpha.15"
207483
+ "1.0.0-alpha.16"
207484
207484
  ]
207485
207485
  })
207486
207486
  ]
@@ -207586,7 +207586,7 @@ ${sanitizedDescription}
207586
207586
  ` + `**Environment Info**
207587
207587
  ` + `- Platform: ${env3.platform}
207588
207588
  ` + `- Terminal: ${env3.terminal}
207589
- ` + `- Version: ${"1.0.0-alpha.15"}
207589
+ ` + `- Version: ${"1.0.0-alpha.16"}
207590
207590
  ` + `- Feedback ID: ${feedbackId}
207591
207591
  ` + `
207592
207592
  **Errors**
@@ -259971,8 +259971,8 @@ var init_toolAnalytics = __esm(() => {
259971
259971
  init_agentContext();
259972
259972
  init_slowOperations();
259973
259973
  init_teammate();
259974
- AGENT_OS_VERSION4 = typeof MACRO !== "undefined" ? "1.0.0-alpha.15" : "dev";
259975
- AGENT_OS_BUILD_TIME = typeof MACRO !== "undefined" ? "2026-05-19T09:28:36Z" : undefined;
259974
+ AGENT_OS_VERSION4 = typeof MACRO !== "undefined" ? "1.0.0-alpha.16" : "dev";
259975
+ AGENT_OS_BUILD_TIME = typeof MACRO !== "undefined" ? "2026-05-19T09:51:43Z" : undefined;
259976
259976
  BUILTIN_MCP_SERVER_NAMES = new Set([]);
259977
259977
  TOOL_INPUT_MAX_JSON_CHARS = 4 * 1024;
259978
259978
  FILE_COMMANDS = new Set([
@@ -274576,7 +274576,7 @@ function getInstallationEnv() {
274576
274576
  return;
274577
274577
  }
274578
274578
  function getClaudeCodeVersion() {
274579
- return "1.0.0-alpha.15";
274579
+ return "1.0.0-alpha.16";
274580
274580
  }
274581
274581
  async function getInstalledVSCodeExtensionVersion(command) {
274582
274582
  const { stdout } = await execFileNoThrow(command, ["--list-extensions", "--show-versions"], {
@@ -297294,7 +297294,7 @@ async function setupSdkMcpClients(sdkMcpConfigs, sendMcpMessage) {
297294
297294
  const client = new Client({
297295
297295
  name: "claude-code",
297296
297296
  title: "Agent-OS",
297297
- version: "1.0.0-alpha.15",
297297
+ version: "1.0.0-alpha.16",
297298
297298
  description: "Anthropic's agentic coding tool",
297299
297299
  websiteUrl: PRODUCT_URL
297300
297300
  }, {
@@ -297647,7 +297647,7 @@ var init_client4 = __esm(() => {
297647
297647
  const client = new Client({
297648
297648
  name: "claude-code",
297649
297649
  title: "Agent-OS",
297650
- version: "1.0.0-alpha.15",
297650
+ version: "1.0.0-alpha.16",
297651
297651
  description: "Anthropic's agentic coding tool",
297652
297652
  websiteUrl: PRODUCT_URL
297653
297653
  }, {
@@ -416283,7 +416283,7 @@ function getInvokedBinary() {
416283
416283
  async function getDoctorDiagnostic() {
416284
416284
  return {
416285
416285
  installationType: "package-manager",
416286
- version: "1.0.0-alpha.15",
416286
+ version: "1.0.0-alpha.16",
416287
416287
  installationPath: process.argv[1] ?? "",
416288
416288
  invokedBinary: getInvokedBinary(),
416289
416289
  configInstallMethod: "not set",
@@ -416688,7 +416688,7 @@ function buildPrimarySection() {
416688
416688
  });
416689
416689
  return [{
416690
416690
  label: "Version",
416691
- value: "1.0.0-alpha.15"
416691
+ value: "1.0.0-alpha.16"
416692
416692
  }, {
416693
416693
  label: "Session name",
416694
416694
  value: nameValue
@@ -420331,7 +420331,7 @@ function Config({
420331
420331
  }
420332
420332
  })
420333
420333
  }) : showSubmenu === "ChannelDowngrade" ? /* @__PURE__ */ jsx_runtime169.jsx(ChannelDowngradeDialog, {
420334
- currentVersion: "1.0.0-alpha.15",
420334
+ currentVersion: "1.0.0-alpha.16",
420335
420335
  onChoice: (choice) => {
420336
420336
  setShowSubmenu(null);
420337
420337
  setTabsHidden(false);
@@ -420343,7 +420343,7 @@ function Config({
420343
420343
  autoUpdatesChannel: "stable"
420344
420344
  };
420345
420345
  if (choice === "stay") {
420346
- newSettings.minimumVersion = "1.0.0-alpha.15";
420346
+ newSettings.minimumVersion = "1.0.0-alpha.16";
420347
420347
  }
420348
420348
  updateSettingsForSource("userSettings", newSettings);
420349
420349
  setSettingsData((prev_27) => ({
@@ -428334,7 +428334,7 @@ function HelpV2(t0) {
428334
428334
  let t6;
428335
428335
  if ($3[31] !== tabs) {
428336
428336
  t6 = /* @__PURE__ */ jsx_runtime195.jsx(Tabs, {
428337
- title: `Agent-OS v${"1.0.0-alpha.15"}`,
428337
+ title: `Agent-OS v${"1.0.0-alpha.16"}`,
428338
428338
  color: "professionalBlue",
428339
428339
  defaultTab: "general",
428340
428340
  children: tabs
@@ -431462,7 +431462,7 @@ var init_user = __esm(() => {
431462
431462
  deviceId,
431463
431463
  sessionId: getSessionId(),
431464
431464
  email: getEmail(),
431465
- appVersion: "1.0.0-alpha.15",
431465
+ appVersion: "1.0.0-alpha.16",
431466
431466
  platform: getHostPlatformForAnalytics(),
431467
431467
  organizationUuid,
431468
431468
  accountUuid,
@@ -451713,7 +451713,7 @@ function getAllReleaseNotes(changelogContent = getStoredChangelogFromMemory()) {
451713
451713
  return [];
451714
451714
  }
451715
451715
  }
451716
- async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.0.0-alpha.15") {
451716
+ async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.0.0-alpha.16") {
451717
451717
  if (process.env.USER_TYPE === "ant") {
451718
451718
  const changelog = "";
451719
451719
  if (changelog) {
@@ -451740,7 +451740,7 @@ async function checkForReleaseNotes(lastSeenVersion, currentVersion = "1.0.0-alp
451740
451740
  releaseNotes
451741
451741
  };
451742
451742
  }
451743
- function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.0.0-alpha.15") {
451743
+ function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "1.0.0-alpha.16") {
451744
451744
  if (process.env.USER_TYPE === "ant") {
451745
451745
  const changelog = "";
451746
451746
  if (changelog) {
@@ -452867,7 +452867,7 @@ function getRecentActivitySync() {
452867
452867
  return cachedActivity;
452868
452868
  }
452869
452869
  function getLogoDisplayData() {
452870
- const version2 = process.env.DEMO_VERSION ?? "1.0.0-alpha.15";
452870
+ const version2 = process.env.DEMO_VERSION ?? "1.0.0-alpha.16";
452871
452871
  const serverUrl = getDirectConnectServerUrl();
452872
452872
  const displayPath = process.env.DEMO_VERSION ? "/code/claude" : getDisplayPath(getCwd());
452873
452873
  const cwd2 = serverUrl ? `${displayPath} in ${serverUrl.replace(/^https?:\/\//, "")}` : displayPath;
@@ -454082,7 +454082,7 @@ function LogoV2() {
454082
454082
  if ($3[2] === Symbol.for("react.memo_cache_sentinel")) {
454083
454083
  t2 = () => {
454084
454084
  const currentConfig = getGlobalConfig();
454085
- if (currentConfig.lastReleaseNotesSeen === "1.0.0-alpha.15") {
454085
+ if (currentConfig.lastReleaseNotesSeen === "1.0.0-alpha.16") {
454086
454086
  return;
454087
454087
  }
454088
454088
  saveGlobalConfig(_temp328);
@@ -454748,12 +454748,12 @@ function AgentOsPoster() {
454748
454748
  });
454749
454749
  }
454750
454750
  function _temp328(current) {
454751
- if (current.lastReleaseNotesSeen === "1.0.0-alpha.15") {
454751
+ if (current.lastReleaseNotesSeen === "1.0.0-alpha.16") {
454752
454752
  return current;
454753
454753
  }
454754
454754
  return {
454755
454755
  ...current,
454756
- lastReleaseNotesSeen: "1.0.0-alpha.15"
454756
+ lastReleaseNotesSeen: "1.0.0-alpha.16"
454757
454757
  };
454758
454758
  }
454759
454759
  function _temp245(s_0) {
@@ -481330,7 +481330,7 @@ async function captureMemoryDiagnostics(trigger, dumpNumber = 0) {
481330
481330
  smapsRollup,
481331
481331
  platform: process.platform,
481332
481332
  nodeVersion: process.version,
481333
- ccVersion: "1.0.0-alpha.15"
481333
+ ccVersion: "1.0.0-alpha.16"
481334
481334
  };
481335
481335
  }
481336
481336
  async function performHeapDump(trigger = "manual", dumpNumber = 0) {
@@ -481903,7 +481903,7 @@ var init_bridge_kick = __esm(() => {
481903
481903
  var call58 = async () => {
481904
481904
  return {
481905
481905
  type: "text",
481906
- value: `${"1.0.0-alpha.15"} (built ${"2026-05-19T09:28:36Z"})`
481906
+ value: `${"1.0.0-alpha.16"} (built ${"2026-05-19T09:51:43Z"})`
481907
481907
  };
481908
481908
  }, version2, version_default;
481909
481909
  var init_version = __esm(() => {
@@ -491368,7 +491368,7 @@ function generateHtmlReport(data, insights) {
491368
491368
  </html>`;
491369
491369
  }
491370
491370
  function buildExportData(data, insights, facets, remoteStats) {
491371
- const version3 = typeof MACRO !== "undefined" ? "1.0.0-alpha.15" : "unknown";
491371
+ const version3 = typeof MACRO !== "undefined" ? "1.0.0-alpha.16" : "unknown";
491372
491372
  const remote_hosts_collected = remoteStats?.hosts.filter((h3) => h3.sessionCount > 0).map((h3) => h3.name);
491373
491373
  const facets_summary = {
491374
491374
  total: facets.size,
@@ -515543,7 +515543,7 @@ var init_filesystem = __esm(() => {
515543
515543
  });
515544
515544
  getBundledSkillsRoot = memoize_default(function getBundledSkillsRoot2() {
515545
515545
  const nonce = randomBytes18(16).toString("hex");
515546
- return join146(getClaudeTempDir(), "bundled-skills", "1.0.0-alpha.15", nonce);
515546
+ return join146(getClaudeTempDir(), "bundled-skills", "1.0.0-alpha.16", nonce);
515547
515547
  });
515548
515548
  getResolvedWorkingDirPaths = memoize_default(getPathsForPermissionCheck);
515549
515549
  });
@@ -521472,7 +521472,7 @@ function computeFingerprintFromMessages(messages) {
521472
521472
  }
521473
521473
  var AGENT_OS_VERSION5, FINGERPRINT_SALT = "59cf53e54c78";
521474
521474
  var init_fingerprint = __esm(() => {
521475
- AGENT_OS_VERSION5 = typeof MACRO !== "undefined" ? "1.0.0-alpha.15" : "dev";
521475
+ AGENT_OS_VERSION5 = typeof MACRO !== "undefined" ? "1.0.0-alpha.16" : "dev";
521476
521476
  });
521477
521477
 
521478
521478
  // src/services/compact/apiMicrocompact.ts
@@ -523226,7 +523226,7 @@ async function sideQuery(opts) {
523226
523226
  betas.push(STRUCTURED_OUTPUTS_BETA_HEADER);
523227
523227
  }
523228
523228
  const messageText = extractFirstUserMessageText(messages);
523229
- const fingerprint = computeFingerprint(messageText, "1.0.0-alpha.15");
523229
+ const fingerprint = computeFingerprint(messageText, "1.0.0-alpha.16");
523230
523230
  const attributionHeader = getAttributionHeader(fingerprint);
523231
523231
  const systemBlocks = [
523232
523232
  attributionHeader ? { type: "text", text: attributionHeader } : null,
@@ -525145,7 +525145,7 @@ function appendToLog(path24, message) {
525145
525145
  cwd: getFsImplementation().cwd(),
525146
525146
  userType: process.env.USER_TYPE,
525147
525147
  sessionId: getSessionId(),
525148
- version: "1.0.0-alpha.15"
525148
+ version: "1.0.0-alpha.16"
525149
525149
  };
525150
525150
  getLogWriter(path24).write(messageWithTimestamp);
525151
525151
  }
@@ -528123,7 +528123,7 @@ function getTelemetryAttributes() {
528123
528123
  attributes["session.id"] = sessionId;
528124
528124
  }
528125
528125
  if (shouldIncludeAttribute("OTEL_METRICS_INCLUDE_VERSION")) {
528126
- attributes["app.version"] = "1.0.0-alpha.15";
528126
+ attributes["app.version"] = "1.0.0-alpha.16";
528127
528127
  }
528128
528128
  if (envDynamic.terminal) {
528129
528129
  attributes["terminal.type"] = envDynamic.terminal;
@@ -538267,7 +538267,7 @@ function buildSystemInitMessage(inputs) {
538267
538267
  slash_commands: inputs.commands.filter((c5) => c5.userInvocable !== false).map((c5) => c5.name),
538268
538268
  apiKeySource: getAnthropicApiKeyWithSource().source,
538269
538269
  betas: getSdkBetas(),
538270
- claude_code_version: "1.0.0-alpha.15",
538270
+ claude_code_version: "1.0.0-alpha.16",
538271
538271
  output_style: outputStyle2,
538272
538272
  agents: inputs.agents.map((agent) => agent.agentType),
538273
538273
  skills: inputs.skills.filter((s2) => s2.userInvocable !== false).map((skill) => skill.name),
@@ -560736,7 +560736,7 @@ function buildStatusLineCommandInput(permissionMode, exceeds200kTokens, settings
560736
560736
  project_dir: getOriginalCwd(),
560737
560737
  added_dirs: addedDirs
560738
560738
  },
560739
- version: "1.0.0-alpha.15",
560739
+ version: "1.0.0-alpha.16",
560740
560740
  output_style: {
560741
560741
  name: outputStyleName
560742
560742
  },
@@ -584088,7 +584088,7 @@ function WelcomeV2() {
584088
584088
  dimColor: true,
584089
584089
  children: [
584090
584090
  "v",
584091
- "1.0.0-alpha.15",
584091
+ "1.0.0-alpha.16",
584092
584092
  " "
584093
584093
  ]
584094
584094
  })
@@ -584288,7 +584288,7 @@ function WelcomeV2() {
584288
584288
  dimColor: true,
584289
584289
  children: [
584290
584290
  "v",
584291
- "1.0.0-alpha.15",
584291
+ "1.0.0-alpha.16",
584292
584292
  " "
584293
584293
  ]
584294
584294
  })
@@ -584514,7 +584514,7 @@ function AppleTerminalWelcomeV2(t0) {
584514
584514
  dimColor: true,
584515
584515
  children: [
584516
584516
  "v",
584517
- "1.0.0-alpha.15",
584517
+ "1.0.0-alpha.16",
584518
584518
  " "
584519
584519
  ]
584520
584520
  });
@@ -584768,7 +584768,7 @@ function AppleTerminalWelcomeV2(t0) {
584768
584768
  dimColor: true,
584769
584769
  children: [
584770
584770
  "v",
584771
- "1.0.0-alpha.15",
584771
+ "1.0.0-alpha.16",
584772
584772
  " "
584773
584773
  ]
584774
584774
  });
@@ -586234,7 +586234,7 @@ function completeOnboarding() {
586234
586234
  saveGlobalConfig((current) => ({
586235
586235
  ...current,
586236
586236
  hasCompletedOnboarding: true,
586237
- lastOnboardingVersion: "1.0.0-alpha.15"
586237
+ lastOnboardingVersion: "1.0.0-alpha.16"
586238
586238
  }));
586239
586239
  }
586240
586240
  function showDialog(root3, renderer) {
@@ -594697,8 +594697,8 @@ async function getEnvLessBridgeConfig() {
594697
594697
  }
594698
594698
  async function checkEnvLessBridgeMinVersion() {
594699
594699
  const cfg = await getEnvLessBridgeConfig();
594700
- if (cfg.min_version && lt("1.0.0-alpha.15", cfg.min_version)) {
594701
- return `Your version of Agent-OS (${"1.0.0-alpha.15"}) is too old for Remote Control.
594700
+ if (cfg.min_version && lt("1.0.0-alpha.16", cfg.min_version)) {
594701
+ return `Your version of Agent-OS (${"1.0.0-alpha.16"}) is too old for Remote Control.
594702
594702
  Version ${cfg.min_version} or higher is required. Run \`agent-os update\` to update.`;
594703
594703
  }
594704
594704
  return null;
@@ -595171,7 +595171,7 @@ async function initBridgeCore(params) {
595171
595171
  const rawApi = createBridgeApiClient({
595172
595172
  baseUrl,
595173
595173
  getAccessToken,
595174
- runnerVersion: "1.0.0-alpha.15",
595174
+ runnerVersion: "1.0.0-alpha.16",
595175
595175
  onDebug: logForDebugging,
595176
595176
  onAuth401,
595177
595177
  getTrustedDeviceToken
@@ -600850,7 +600850,7 @@ async function startMCPServer(cwd3, debug2, verbose) {
600850
600850
  setCwd(cwd3);
600851
600851
  const server = new Server({
600852
600852
  name: "claude/tengu",
600853
- version: "1.0.0-alpha.15"
600853
+ version: "1.0.0-alpha.16"
600854
600854
  }, {
600855
600855
  capabilities: {
600856
600856
  tools: {}
@@ -606361,7 +606361,7 @@ ${customInstructions}` : customInstructions;
606361
606361
  }
606362
606362
  }
606363
606363
  logForDiagnosticsNoPII("info", "started", {
606364
- version: "1.0.0-alpha.15",
606364
+ version: "1.0.0-alpha.16",
606365
606365
  is_native_binary: isInBundledMode()
606366
606366
  });
606367
606367
  registerCleanup(async () => {
@@ -607153,7 +607153,7 @@ Usage: agent-os --remote "your task description"`, () => gracefulShutdown(1));
607153
607153
  pendingHookMessages
607154
607154
  }, renderAndRun);
607155
607155
  }
607156
- }).version("1.0.0-alpha.15 (Agent-OS)", "-v, --version", "Output the version number");
607156
+ }).version("1.0.0-alpha.16 (Agent-OS)", "-v, --version", "Output the version number");
607157
607157
  program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
607158
607158
  program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
607159
607159
  if (canUserConfigureAdvisor()) {
@@ -608991,7 +608991,7 @@ if (false) {}
608991
608991
  async function main2() {
608992
608992
  const args = process.argv.slice(2);
608993
608993
  if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
608994
- console.log(`${"1.0.0-alpha.15"} (Agent-OS)`);
608994
+ console.log(`${"1.0.0-alpha.16"} (Agent-OS)`);
608995
608995
  return;
608996
608996
  }
608997
608997
  const {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vionwilliams/agent-os",
3
- "version": "1.0.0-alpha.15",
3
+ "version": "1.0.0-alpha.16",
4
4
  "description": "Agent-OS — 智能任务通用工作系统:多模型路由、意图编排、多智能体协调、DataHub 与可编程面板。",
5
5
  "type": "module",
6
6
  "private": false,