orbit-code-ai 0.1.23 → 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 +21 -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.23"}${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
  `) + `
@@ -327879,6 +327879,15 @@ function getSimplePrompt() {
327879
327879
  ]
327880
327880
  ];
327881
327881
  const backgroundNote = getBackgroundUsageNote2();
327882
+ const windowsShellNote = getPlatform() === "windows" ? [
327883
+ "",
327884
+ "IMPORTANT — Windows shell: this tool runs in **Git Bash (POSIX sh)**, NOT cmd.exe or PowerShell. Use Unix syntax only:",
327885
+ ...prependBullets([
327886
+ "List/find files with the dedicated tools, or POSIX `ls`/`find` — NEVER cmd `dir /s /b` (it exits 2: `/s` `/b` are read as paths).",
327887
+ "Redirect to `/dev/null`, not `nul` (`2>/dev/null`, never `2>nul`).",
327888
+ "Use forward slashes in paths and `$VAR` (not `%VAR%`); avoid backslash path separators."
327889
+ ])
327890
+ ] : [];
327882
327891
  const instructionItems = [
327883
327892
  "If your command will create new directories or files, first use this tool to run `ls` to verify the parent directory exists and is the correct location.",
327884
327893
  'Always quote file paths that contain spaces with double quotes in your command (e.g., cd "path with spaces/file.txt")',
@@ -327899,6 +327908,7 @@ function getSimplePrompt() {
327899
327908
  "Executes a given bash command and returns its output.",
327900
327909
  "",
327901
327910
  "The working directory persists between commands, but shell state does not. The shell environment is initialized from the user's profile (bash or zsh).",
327911
+ ...windowsShellNote,
327902
327912
  "",
327903
327913
  `IMPORTANT: Avoid using this tool to run ${avoidCommands} commands, unless explicitly instructed or after you have verified that a dedicated tool cannot accomplish your task. Instead, use the appropriate dedicated tool as this will provide a much better experience for the user:`,
327904
327914
  "",
@@ -327919,6 +327929,7 @@ var init_prompt21 = __esm(() => {
327919
327929
  init_envUtils();
327920
327930
  init_gitSettings();
327921
327931
  init_filesystem();
327932
+ init_platform();
327922
327933
  init_sandbox_adapter();
327923
327934
  init_slowOperations();
327924
327935
  init_constants3();
@@ -334230,7 +334241,7 @@ function getAnthropicEnvMetadata() {
334230
334241
  function getBuildAgeMinutes() {
334231
334242
  if (false)
334232
334243
  ;
334233
- const buildTime = new Date("2026-06-28T08:19:59.996Z").getTime();
334244
+ const buildTime = new Date("2026-06-28T09:31:49.622Z").getTime();
334234
334245
  if (isNaN(buildTime))
334235
334246
  return;
334236
334247
  return Math.floor((Date.now() - buildTime) / 60000);
@@ -358647,7 +358658,7 @@ function buildPrimarySection() {
358647
358658
  }, undefined, false, undefined, this);
358648
358659
  return [{
358649
358660
  label: "Version",
358650
- value: "0.1.23"
358661
+ value: "0.1.25"
358651
358662
  }, {
358652
358663
  label: "Session name",
358653
358664
  value: nameValue
@@ -470725,7 +470736,7 @@ function WelcomeV2() {
470725
470736
  dimColor: true,
470726
470737
  children: [
470727
470738
  "v",
470728
- "0.1.23",
470739
+ "0.1.25",
470729
470740
  " "
470730
470741
  ]
470731
470742
  }, undefined, true, undefined, this)
@@ -470925,7 +470936,7 @@ function WelcomeV2() {
470925
470936
  dimColor: true,
470926
470937
  children: [
470927
470938
  "v",
470928
- "0.1.23",
470939
+ "0.1.25",
470929
470940
  " "
470930
470941
  ]
470931
470942
  }, undefined, true, undefined, this)
@@ -471151,7 +471162,7 @@ function AppleTerminalWelcomeV2(t0) {
471151
471162
  dimColor: true,
471152
471163
  children: [
471153
471164
  "v",
471154
- "0.1.23",
471165
+ "0.1.25",
471155
471166
  " "
471156
471167
  ]
471157
471168
  }, undefined, true, undefined, this);
@@ -471405,7 +471416,7 @@ function AppleTerminalWelcomeV2(t0) {
471405
471416
  dimColor: true,
471406
471417
  children: [
471407
471418
  "v",
471408
- "0.1.23",
471419
+ "0.1.25",
471409
471420
  " "
471410
471421
  ]
471411
471422
  }, undefined, true, undefined, this);
@@ -492042,7 +492053,7 @@ Usage: orbit --remote "your task description"`, () => gracefulShutdown(1));
492042
492053
  pendingHookMessages
492043
492054
  }, renderAndRun);
492044
492055
  }
492045
- }).version("0.1.23 (Orbit AI)", "-v, --version", "Output the version number");
492056
+ }).version("0.1.25 (Orbit AI)", "-v, --version", "Output the version number");
492046
492057
  program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
492047
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.");
492048
492059
  if (canUserConfigureAdvisor()) {
@@ -492564,7 +492575,7 @@ if (false) {}
492564
492575
  async function main2() {
492565
492576
  const args = process.argv.slice(2);
492566
492577
  if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
492567
- console.log(`${"0.1.23"} (Orbit AI)`);
492578
+ console.log(`${"0.1.25"} (Orbit AI)`);
492568
492579
  return;
492569
492580
  }
492570
492581
  if (args.includes("--provider")) {
@@ -492668,4 +492679,4 @@ async function main2() {
492668
492679
  }
492669
492680
  main2();
492670
492681
 
492671
- //# debugId=636F7570F245EA3D64756E2164756E21
492682
+ //# debugId=87056ABBE47F2EA864756E2164756E21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orbit-code-ai",
3
- "version": "0.1.23",
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",