orbit-code-ai 0.1.25 → 0.1.27
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 +14 -12
- 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.27"}${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-
|
|
334244
|
+
const buildTime = new Date("2026-06-28T13:07:48.618Z").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.
|
|
358661
|
+
value: "0.1.27"
|
|
358662
358662
|
}, {
|
|
358663
358663
|
label: "Session name",
|
|
358664
358664
|
value: nameValue
|
|
@@ -410516,6 +410516,8 @@ function getSimpleIntroSection(outputStyleConfig) {
|
|
|
410516
410516
|
return `
|
|
410517
410517
|
You are an interactive agent that helps users ${outputStyleConfig !== null ? 'according to your "Output Style" below, which describes how you should respond to user queries.' : "with software engineering tasks."} Use the instructions below and the tools available to you to assist the user.
|
|
410518
410518
|
|
|
410519
|
+
Your identity: You are Orbit AI, an AI-powered IBM App Connect Enterprise (ACE) coding companion developed by Inspire. If anyone asks who built, made, created, trained, or owns you, or what you are, answer that you are Orbit AI, developed by Inspire. If asked specifically who the engineer or developer behind you is, say "Mohammad Nawaf from Inspire". NEVER state or imply that you were built or created by, or are "powered by", Anthropic, Google, OpenAI, or any model/AI provider, and never name the underlying model or its vendor. Present yourself solely as Orbit AI. For feedback, support, or business/licensing/commercial/partnership inquiries about Orbit AI, direct users to Inspire — website https://inspirejo.com/ and email mohammad.nawaf@inspirejo.com (lead engineer Mohammad Nawaf). NEVER refer users to GitHub, Anthropic, or any external issue tracker as the home or contact point for Orbit AI.
|
|
410520
|
+
|
|
410519
410521
|
${CYBER_RISK_INSTRUCTION}
|
|
410520
410522
|
IMPORTANT: You must NEVER generate or guess URLs for the user unless you are confident that the URLs are for helping the user with programming. You may use URLs provided by the user in their messages or local files.`;
|
|
410521
410523
|
}
|
|
@@ -410545,7 +410547,7 @@ function getSimpleDoingTasksSection() {
|
|
|
410545
410547
|
];
|
|
410546
410548
|
const userHelpSubitems = [
|
|
410547
410549
|
`/help: Get help with using Orbit AI`,
|
|
410548
|
-
`
|
|
410550
|
+
`For feedback, support, or business/commercial inquiries about Orbit AI, contact Inspire — https://inspirejo.com/ or mohammad.nawaf@inspirejo.com (lead engineer Mohammad Nawaf). Do not point users to GitHub or any external issue tracker for Orbit AI.`
|
|
410549
410551
|
];
|
|
410550
410552
|
const items = [
|
|
410551
410553
|
`The user will primarily request you to perform software engineering tasks. These may include solving bugs, adding new functionality, refactoring code, explaining code, and more. When given an unclear or generic instruction, consider it in the context of these software engineering tasks and the current working directory. For example, if the user asks you to change "methodName" to snake case, do not reply with just "method_name", instead find the method in the code and modify the code.`,
|
|
@@ -410676,7 +410678,7 @@ function getSimpleToneAndStyleSection() {
|
|
|
410676
410678
|
`Only use emojis if the user explicitly requests it. Avoid using emojis in all communication unless asked.`,
|
|
410677
410679
|
process.env.USER_TYPE === "ant" ? null : `Your responses should be short and concise.`,
|
|
410678
410680
|
`When referencing specific functions or pieces of code include the pattern file_path:line_number to allow the user to easily navigate to the source code location.`,
|
|
410679
|
-
`When referencing GitHub issues or pull requests, use the owner/repo#123 format (e.g.
|
|
410681
|
+
`When referencing GitHub issues or pull requests, use the owner/repo#123 format (e.g. octo-org/example#123) so they render as clickable links.`,
|
|
410680
410682
|
`Do not use a colon before tool calls. Your tool calls may not be shown directly in the output, so text like "Let me read the file:" followed by a read tool call should just be "Let me read the file." with a period.`
|
|
410681
410683
|
].filter((item) => item !== null);
|
|
410682
410684
|
return [`# Tone and style`, ...prependBullets(items)].join(`
|
|
@@ -470736,7 +470738,7 @@ function WelcomeV2() {
|
|
|
470736
470738
|
dimColor: true,
|
|
470737
470739
|
children: [
|
|
470738
470740
|
"v",
|
|
470739
|
-
"0.1.
|
|
470741
|
+
"0.1.27",
|
|
470740
470742
|
" "
|
|
470741
470743
|
]
|
|
470742
470744
|
}, undefined, true, undefined, this)
|
|
@@ -470936,7 +470938,7 @@ function WelcomeV2() {
|
|
|
470936
470938
|
dimColor: true,
|
|
470937
470939
|
children: [
|
|
470938
470940
|
"v",
|
|
470939
|
-
"0.1.
|
|
470941
|
+
"0.1.27",
|
|
470940
470942
|
" "
|
|
470941
470943
|
]
|
|
470942
470944
|
}, undefined, true, undefined, this)
|
|
@@ -471162,7 +471164,7 @@ function AppleTerminalWelcomeV2(t0) {
|
|
|
471162
471164
|
dimColor: true,
|
|
471163
471165
|
children: [
|
|
471164
471166
|
"v",
|
|
471165
|
-
"0.1.
|
|
471167
|
+
"0.1.27",
|
|
471166
471168
|
" "
|
|
471167
471169
|
]
|
|
471168
471170
|
}, undefined, true, undefined, this);
|
|
@@ -471416,7 +471418,7 @@ function AppleTerminalWelcomeV2(t0) {
|
|
|
471416
471418
|
dimColor: true,
|
|
471417
471419
|
children: [
|
|
471418
471420
|
"v",
|
|
471419
|
-
"0.1.
|
|
471421
|
+
"0.1.27",
|
|
471420
471422
|
" "
|
|
471421
471423
|
]
|
|
471422
471424
|
}, undefined, true, undefined, this);
|
|
@@ -492053,7 +492055,7 @@ Usage: orbit --remote "your task description"`, () => gracefulShutdown(1));
|
|
|
492053
492055
|
pendingHookMessages
|
|
492054
492056
|
}, renderAndRun);
|
|
492055
492057
|
}
|
|
492056
|
-
}).version("0.1.
|
|
492058
|
+
}).version("0.1.27 (Orbit AI)", "-v, --version", "Output the version number");
|
|
492057
492059
|
program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
|
|
492058
492060
|
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
492061
|
if (canUserConfigureAdvisor()) {
|
|
@@ -492575,7 +492577,7 @@ if (false) {}
|
|
|
492575
492577
|
async function main2() {
|
|
492576
492578
|
const args = process.argv.slice(2);
|
|
492577
492579
|
if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
|
|
492578
|
-
console.log(`${"0.1.
|
|
492580
|
+
console.log(`${"0.1.27"} (Orbit AI)`);
|
|
492579
492581
|
return;
|
|
492580
492582
|
}
|
|
492581
492583
|
if (args.includes("--provider")) {
|
|
@@ -492679,4 +492681,4 @@ async function main2() {
|
|
|
492679
492681
|
}
|
|
492680
492682
|
main2();
|
|
492681
492683
|
|
|
492682
|
-
//# debugId=
|
|
492684
|
+
//# debugId=F484A70727EF642364756E2164756E21
|