orbit-code-ai 0.1.24 → 0.1.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.
Files changed (2) hide show
  1. package/dist/cli.mjs +10 -10
  2. package/package.json +1 -1
package/dist/cli.mjs CHANGED
@@ -83759,7 +83759,7 @@ async function printStartupScreen() {
83759
83759
  const sLen = ` ● ${sL} Ready — type /help to begin`.length;
83760
83760
  out.push(boxRow(sRow, W2, sLen));
83761
83761
  out.push(`${rgb(...BORDER)}╚${"═".repeat(W2 - 2)}╝${RESET}`);
83762
- out.push(` ${DIM}${rgb(...DIMCOL)}orbit-code ${RESET}${rgb(...ACCENT)}v${"0.1.24"}${RESET}`);
83762
+ out.push(` ${DIM}${rgb(...DIMCOL)}orbit-code ${RESET}${rgb(...ACCENT)}v${"0.1.25"}${RESET}`);
83763
83763
  out.push("");
83764
83764
  process.stdout.write(out.join(`
83765
83765
  `) + `
@@ -334241,7 +334241,7 @@ function getAnthropicEnvMetadata() {
334241
334241
  function getBuildAgeMinutes() {
334242
334242
  if (false)
334243
334243
  ;
334244
- const buildTime = new Date("2026-06-28T09:29:30.750Z").getTime();
334244
+ const buildTime = new Date("2026-06-28T09:31:49.622Z").getTime();
334245
334245
  if (isNaN(buildTime))
334246
334246
  return;
334247
334247
  return Math.floor((Date.now() - buildTime) / 60000);
@@ -358658,7 +358658,7 @@ function buildPrimarySection() {
358658
358658
  }, undefined, false, undefined, this);
358659
358659
  return [{
358660
358660
  label: "Version",
358661
- value: "0.1.24"
358661
+ value: "0.1.25"
358662
358662
  }, {
358663
358663
  label: "Session name",
358664
358664
  value: nameValue
@@ -470736,7 +470736,7 @@ function WelcomeV2() {
470736
470736
  dimColor: true,
470737
470737
  children: [
470738
470738
  "v",
470739
- "0.1.24",
470739
+ "0.1.25",
470740
470740
  " "
470741
470741
  ]
470742
470742
  }, undefined, true, undefined, this)
@@ -470936,7 +470936,7 @@ function WelcomeV2() {
470936
470936
  dimColor: true,
470937
470937
  children: [
470938
470938
  "v",
470939
- "0.1.24",
470939
+ "0.1.25",
470940
470940
  " "
470941
470941
  ]
470942
470942
  }, undefined, true, undefined, this)
@@ -471162,7 +471162,7 @@ function AppleTerminalWelcomeV2(t0) {
471162
471162
  dimColor: true,
471163
471163
  children: [
471164
471164
  "v",
471165
- "0.1.24",
471165
+ "0.1.25",
471166
471166
  " "
471167
471167
  ]
471168
471168
  }, undefined, true, undefined, this);
@@ -471416,7 +471416,7 @@ function AppleTerminalWelcomeV2(t0) {
471416
471416
  dimColor: true,
471417
471417
  children: [
471418
471418
  "v",
471419
- "0.1.24",
471419
+ "0.1.25",
471420
471420
  " "
471421
471421
  ]
471422
471422
  }, undefined, true, undefined, this);
@@ -492053,7 +492053,7 @@ Usage: orbit --remote "your task description"`, () => gracefulShutdown(1));
492053
492053
  pendingHookMessages
492054
492054
  }, renderAndRun);
492055
492055
  }
492056
- }).version("0.1.24 (Orbit AI)", "-v, --version", "Output the version number");
492056
+ }).version("0.1.25 (Orbit AI)", "-v, --version", "Output the version number");
492057
492057
  program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
492058
492058
  program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
492059
492059
  if (canUserConfigureAdvisor()) {
@@ -492575,7 +492575,7 @@ if (false) {}
492575
492575
  async function main2() {
492576
492576
  const args = process.argv.slice(2);
492577
492577
  if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
492578
- console.log(`${"0.1.24"} (Orbit AI)`);
492578
+ console.log(`${"0.1.25"} (Orbit AI)`);
492579
492579
  return;
492580
492580
  }
492581
492581
  if (args.includes("--provider")) {
@@ -492679,4 +492679,4 @@ async function main2() {
492679
492679
  }
492680
492680
  main2();
492681
492681
 
492682
- //# debugId=B5A9F37005B0954864756E2164756E21
492682
+ //# debugId=87056ABBE47F2EA864756E2164756E21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orbit-code-ai",
3
- "version": "0.1.24",
3
+ "version": "0.1.25",
4
4
  "description": "Orbit AI – Your AI-powered IBM ACE coding companion",
5
5
  "type": "module",
6
6
  "author": "moenawaf",