orbit-code-ai 0.1.13 → 0.1.14

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 +17 -12
  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.13"}${RESET}`);
83762
+ out.push(` ${DIM}${rgb(...DIMCOL)}orbit-code ${RESET}${rgb(...ACCENT)}v${"0.1.14"}${RESET}`);
83763
83763
  out.push("");
83764
83764
  process.stdout.write(out.join(`
83765
83765
  `) + `
@@ -334230,7 +334230,7 @@ function getAnthropicEnvMetadata() {
334230
334230
  function getBuildAgeMinutes() {
334231
334231
  if (false)
334232
334232
  ;
334233
- const buildTime = new Date("2026-06-25T08:54:00.773Z").getTime();
334233
+ const buildTime = new Date("2026-06-25T11:31:35.945Z").getTime();
334234
334234
  if (isNaN(buildTime))
334235
334235
  return;
334236
334236
  return Math.floor((Date.now() - buildTime) / 60000);
@@ -358647,7 +358647,7 @@ function buildPrimarySection() {
358647
358647
  }, undefined, false, undefined, this);
358648
358648
  return [{
358649
358649
  label: "Version",
358650
- value: "0.1.13"
358650
+ value: "0.1.14"
358651
358651
  }, {
358652
358652
  label: "Session name",
358653
358653
  value: nameValue
@@ -470718,7 +470718,7 @@ function WelcomeV2() {
470718
470718
  dimColor: true,
470719
470719
  children: [
470720
470720
  "v",
470721
- "0.1.13",
470721
+ "0.1.14",
470722
470722
  " "
470723
470723
  ]
470724
470724
  }, undefined, true, undefined, this)
@@ -470918,7 +470918,7 @@ function WelcomeV2() {
470918
470918
  dimColor: true,
470919
470919
  children: [
470920
470920
  "v",
470921
- "0.1.13",
470921
+ "0.1.14",
470922
470922
  " "
470923
470923
  ]
470924
470924
  }, undefined, true, undefined, this)
@@ -471144,7 +471144,7 @@ function AppleTerminalWelcomeV2(t0) {
471144
471144
  dimColor: true,
471145
471145
  children: [
471146
471146
  "v",
471147
- "0.1.13",
471147
+ "0.1.14",
471148
471148
  " "
471149
471149
  ]
471150
471150
  }, undefined, true, undefined, this);
@@ -471398,7 +471398,7 @@ function AppleTerminalWelcomeV2(t0) {
471398
471398
  dimColor: true,
471399
471399
  children: [
471400
471400
  "v",
471401
- "0.1.13",
471401
+ "0.1.14",
471402
471402
  " "
471403
471403
  ]
471404
471404
  }, undefined, true, undefined, this);
@@ -475109,7 +475109,7 @@ ${args || "No description provided. Ask the user what flow they want to create."
475109
475109
  name: "ace-fix",
475110
475110
  description: "Diagnose and fix bugs in IBM ACE ESQL code or message flows",
475111
475111
  aliases: ["ace-debug"],
475112
- model: "gemini-3.1-pro-preview",
475112
+ model: "gemini-3.5-flash",
475113
475113
  whenToUse: "When the user reports a bug, error, BIP message, or unexpected behavior in their ACE flows or ESQL code and wants it diagnosed and fixed",
475114
475114
  argumentHint: "<file or error description>",
475115
475115
  allowedTools: ["Read", "Write", "Edit", "Glob", "Grep", "Bash"],
@@ -475122,7 +475122,12 @@ ${readInstructions([
475122
475122
  "components/common-utils.md"
475123
475123
  ])}
475124
475124
 
475125
- Diagnose and fix the bug or error described by the user. Read all relevant project files first, then use the error-handling reference to understand framework error patterns. Write complete corrected versions.
475125
+ Diagnose and fix the bug or error described by the user. Read the user's file(s) and only the
475126
+ directly-related files in THIS application (e.g. the \`.msgflow\` that wires a broken \`.esql\`, or
475127
+ the \`.esql\` a flow points at). **Do NOT read shared libraries or other projects** — anything under
475128
+ \`Framework/\`, \`Utils/\`, \`Qiwa/Framework/Lib\`, or \`lib/\` is shared infrastructure and is OUT OF
475129
+ SCOPE. Use the error-handling and common-utils references above to understand framework error
475130
+ patterns and functions instead of opening the library source. Write complete corrected versions.
475126
475131
 
475127
475132
  ## Common ACE Bugs to Check
475128
475133
 
@@ -492019,7 +492024,7 @@ Usage: orbit --remote "your task description"`, () => gracefulShutdown(1));
492019
492024
  pendingHookMessages
492020
492025
  }, renderAndRun);
492021
492026
  }
492022
- }).version("0.1.13 (Orbit AI)", "-v, --version", "Output the version number");
492027
+ }).version("0.1.14 (Orbit AI)", "-v, --version", "Output the version number");
492023
492028
  program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
492024
492029
  program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
492025
492030
  if (canUserConfigureAdvisor()) {
@@ -492541,7 +492546,7 @@ if (false) {}
492541
492546
  async function main2() {
492542
492547
  const args = process.argv.slice(2);
492543
492548
  if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
492544
- console.log(`${"0.1.13"} (Orbit AI)`);
492549
+ console.log(`${"0.1.14"} (Orbit AI)`);
492545
492550
  return;
492546
492551
  }
492547
492552
  if (args.includes("--provider")) {
@@ -492645,4 +492650,4 @@ async function main2() {
492645
492650
  }
492646
492651
  main2();
492647
492652
 
492648
- //# debugId=B28F8D0C30A17B0164756E2164756E21
492653
+ //# debugId=30D59ED016DAFE4964756E2164756E21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orbit-code-ai",
3
- "version": "0.1.13",
3
+ "version": "0.1.14",
4
4
  "description": "Orbit AI – Your AI-powered IBM ACE coding companion",
5
5
  "type": "module",
6
6
  "author": "moenawaf",