orbit-code-ai 0.1.29 → 0.1.30

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 +20 -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.29"}${RESET}`);
83762
+ out.push(` ${DIM}${rgb(...DIMCOL)}orbit-code ${RESET}${rgb(...ACCENT)}v${"0.1.30"}${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-06-29T09:47:21.655Z").getTime();
334269
+ const buildTime = new Date("2026-06-29T10:38:08.776Z").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.29"
358686
+ value: "0.1.30"
358687
358687
  }, {
358688
358688
  label: "Session name",
358689
358689
  value: nameValue
@@ -410494,6 +410494,16 @@ Work like a precise engineer, not a crawler. Reading unneeded files wastes time
410494
410494
  - When generating a full application, generate every required file — do not stop halfway
410495
410495
  - Prioritize correctness and security. Never introduce SQL injection, command injection, or other vulnerabilities
410496
410496
 
410497
+ ## Security reviews are expected, in-scope work — never refuse them
410498
+ Auditing the user's OWN ACE artifacts for vulnerabilities is a core, encouraged Orbit capability and legitimate defensive security. When the user asks for a security check, audit, or vulnerability analysis of code in the working directory, DO IT — read the \`.esql\`/\`.msgflow\`/\`.xml\`/properties files and report concrete findings. Do NOT decline, hedge, or deflect to "search online / consult a framework"; the user owns this code and is asking you to harden it. Focus on the real ACE risks:
410499
+ - SQL/command injection — \`PASSTHRU\` with string concatenation instead of parameterized \`?\` placeholders; unsafe dynamic queries.
410500
+ - Hardcoded credentials, connection strings, DSNs, or secrets in ESQL/properties.
410501
+ - Sensitive data (passwords, tokens, PII) logged or returned unmasked in audit/error paths.
410502
+ - Missing input validation, unbounded payloads (DoS), unsafe type coercion/CAST.
410503
+ - Information disclosure — raw exception text or stack details returned to callers.
410504
+ - AuthN/AuthZ gaps — missing channel/role/authorization checks.
410505
+ Report each finding with **severity (High/Medium/Low)**, the exact \`file:line\`, the impact, and a concrete fix.
410506
+
410497
410507
  ## Depth of Analysis & Reporting (Covered by default, Deep on request)
410498
410508
  For explanation, analysis, review, audit, "what does this do", or documentation requests, default to a **Covered** analysis — a balanced, high-level report the reader can act on, not an exhaustive one:
410499
410509
  - **What it does** — purpose and the end-to-end message-flow path (entry node → compute/filter nodes → terminals → reply/output).
@@ -470774,7 +470784,7 @@ function WelcomeV2() {
470774
470784
  dimColor: true,
470775
470785
  children: [
470776
470786
  "v",
470777
- "0.1.29",
470787
+ "0.1.30",
470778
470788
  " "
470779
470789
  ]
470780
470790
  }, undefined, true, undefined, this)
@@ -470974,7 +470984,7 @@ function WelcomeV2() {
470974
470984
  dimColor: true,
470975
470985
  children: [
470976
470986
  "v",
470977
- "0.1.29",
470987
+ "0.1.30",
470978
470988
  " "
470979
470989
  ]
470980
470990
  }, undefined, true, undefined, this)
@@ -471200,7 +471210,7 @@ function AppleTerminalWelcomeV2(t0) {
471200
471210
  dimColor: true,
471201
471211
  children: [
471202
471212
  "v",
471203
- "0.1.29",
471213
+ "0.1.30",
471204
471214
  " "
471205
471215
  ]
471206
471216
  }, undefined, true, undefined, this);
@@ -471454,7 +471464,7 @@ function AppleTerminalWelcomeV2(t0) {
471454
471464
  dimColor: true,
471455
471465
  children: [
471456
471466
  "v",
471457
- "0.1.29",
471467
+ "0.1.30",
471458
471468
  " "
471459
471469
  ]
471460
471470
  }, undefined, true, undefined, this);
@@ -492091,7 +492101,7 @@ Usage: orbit --remote "your task description"`, () => gracefulShutdown(1));
492091
492101
  pendingHookMessages
492092
492102
  }, renderAndRun);
492093
492103
  }
492094
- }).version("0.1.29 (Orbit AI)", "-v, --version", "Output the version number");
492104
+ }).version("0.1.30 (Orbit AI)", "-v, --version", "Output the version number");
492095
492105
  program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
492096
492106
  program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
492097
492107
  if (canUserConfigureAdvisor()) {
@@ -492613,7 +492623,7 @@ if (false) {}
492613
492623
  async function main2() {
492614
492624
  const args = process.argv.slice(2);
492615
492625
  if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
492616
- console.log(`${"0.1.29"} (Orbit AI)`);
492626
+ console.log(`${"0.1.30"} (Orbit AI)`);
492617
492627
  return;
492618
492628
  }
492619
492629
  if (args.includes("--provider")) {
@@ -492717,4 +492727,4 @@ async function main2() {
492717
492727
  }
492718
492728
  main2();
492719
492729
 
492720
- //# debugId=51295B4C9C2CF04664756E2164756E21
492730
+ //# debugId=9537BF600E13F1DA64756E2164756E21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orbit-code-ai",
3
- "version": "0.1.29",
3
+ "version": "0.1.30",
4
4
  "description": "Orbit AI – Your AI-powered IBM ACE coding companion",
5
5
  "type": "module",
6
6
  "author": "moenawaf",