orbit-code-ai 0.1.33 → 0.1.34
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/cli.mjs +10 -10
- 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.
|
|
83762
|
+
out.push(` ${DIM}${rgb(...DIMCOL)}orbit-code ${RESET}${rgb(...ACCENT)}v${"0.1.34"}${RESET}`);
|
|
83763
83763
|
out.push("");
|
|
83764
83764
|
process.stdout.write(out.join(`
|
|
83765
83765
|
`) + `
|
|
@@ -334266,7 +334266,7 @@ function getAnthropicEnvMetadata() {
|
|
|
334266
334266
|
function getBuildAgeMinutes() {
|
|
334267
334267
|
if (false)
|
|
334268
334268
|
;
|
|
334269
|
-
const buildTime = new Date("2026-07-01T08:
|
|
334269
|
+
const buildTime = new Date("2026-07-01T08:02:14.526Z").getTime();
|
|
334270
334270
|
if (isNaN(buildTime))
|
|
334271
334271
|
return;
|
|
334272
334272
|
return Math.floor((Date.now() - buildTime) / 60000);
|
|
@@ -358683,7 +358683,7 @@ function buildPrimarySection() {
|
|
|
358683
358683
|
}, undefined, false, undefined, this);
|
|
358684
358684
|
return [{
|
|
358685
358685
|
label: "Version",
|
|
358686
|
-
value: "0.1.
|
|
358686
|
+
value: "0.1.34"
|
|
358687
358687
|
}, {
|
|
358688
358688
|
label: "Session name",
|
|
358689
358689
|
value: nameValue
|
|
@@ -470794,7 +470794,7 @@ function WelcomeV2() {
|
|
|
470794
470794
|
dimColor: true,
|
|
470795
470795
|
children: [
|
|
470796
470796
|
"v",
|
|
470797
|
-
"0.1.
|
|
470797
|
+
"0.1.34",
|
|
470798
470798
|
" "
|
|
470799
470799
|
]
|
|
470800
470800
|
}, undefined, true, undefined, this)
|
|
@@ -470994,7 +470994,7 @@ function WelcomeV2() {
|
|
|
470994
470994
|
dimColor: true,
|
|
470995
470995
|
children: [
|
|
470996
470996
|
"v",
|
|
470997
|
-
"0.1.
|
|
470997
|
+
"0.1.34",
|
|
470998
470998
|
" "
|
|
470999
470999
|
]
|
|
471000
471000
|
}, undefined, true, undefined, this)
|
|
@@ -471220,7 +471220,7 @@ function AppleTerminalWelcomeV2(t0) {
|
|
|
471220
471220
|
dimColor: true,
|
|
471221
471221
|
children: [
|
|
471222
471222
|
"v",
|
|
471223
|
-
"0.1.
|
|
471223
|
+
"0.1.34",
|
|
471224
471224
|
" "
|
|
471225
471225
|
]
|
|
471226
471226
|
}, undefined, true, undefined, this);
|
|
@@ -471474,7 +471474,7 @@ function AppleTerminalWelcomeV2(t0) {
|
|
|
471474
471474
|
dimColor: true,
|
|
471475
471475
|
children: [
|
|
471476
471476
|
"v",
|
|
471477
|
-
"0.1.
|
|
471477
|
+
"0.1.34",
|
|
471478
471478
|
" "
|
|
471479
471479
|
]
|
|
471480
471480
|
}, undefined, true, undefined, this);
|
|
@@ -527012,7 +527012,7 @@ Usage: orbit --remote "your task description"`, () => gracefulShutdown(1));
|
|
|
527012
527012
|
pendingHookMessages
|
|
527013
527013
|
}, renderAndRun);
|
|
527014
527014
|
}
|
|
527015
|
-
}).version("0.1.
|
|
527015
|
+
}).version("0.1.34 (Orbit AI)", "-v, --version", "Output the version number");
|
|
527016
527016
|
program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
|
|
527017
527017
|
program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
|
|
527018
527018
|
if (canUserConfigureAdvisor()) {
|
|
@@ -527534,7 +527534,7 @@ if (false) {}
|
|
|
527534
527534
|
async function main2() {
|
|
527535
527535
|
const args = process.argv.slice(2);
|
|
527536
527536
|
if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
|
|
527537
|
-
console.log(`${"0.1.
|
|
527537
|
+
console.log(`${"0.1.34"} (Orbit AI)`);
|
|
527538
527538
|
return;
|
|
527539
527539
|
}
|
|
527540
527540
|
if (args.includes("--provider")) {
|
|
@@ -527638,4 +527638,4 @@ async function main2() {
|
|
|
527638
527638
|
}
|
|
527639
527639
|
main2();
|
|
527640
527640
|
|
|
527641
|
-
//# debugId=
|
|
527641
|
+
//# debugId=2DF01C013452CDF264756E2164756E21
|