orbit-code-ai 0.1.1 → 0.1.3

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 (3) hide show
  1. package/README.md +24 -15
  2. package/dist/cli.mjs +10 -10
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -56,15 +56,20 @@ orbit
56
56
 
57
57
  ## What's Inside
58
58
 
59
- Orbit ships with three embedded skill packs and a full IBM ACE agent reference — loaded automatically so the AI has deep context on your stack without any extra setup.
59
+ Orbit ships with a suite of IBM ACE slash commands and a full agent reference — loaded automatically so the AI has deep context on your stack without any extra setup.
60
60
 
61
- ### Skills
61
+ ### Commands
62
62
 
63
- | Skill | Coverage |
63
+ | Command | What it does |
64
64
  |---|---|
65
- | `ace-app-http` | HTTP flows, input/output adapters, error handling, retry patterns |
66
- | `ace-app-mq` | MQ flows, queue definitions, message routing, dead-letter handling |
67
- | `apic-api` | API Connect product and plan definitions, API assembly policies |
65
+ | `/ace-app` | Generate a complete IBM ACE application from requirements — `.project`, descriptor, gateway + main flows, subflows, ESQL, XSD, and Swagger |
66
+ | `/ace-scaffold` | Scaffold a single new message flow with ESQL from a description |
67
+ | `/ace-review` | Thorough code review of ESQL, flow wiring, naming, error handling, and standards |
68
+ | `/ace-fix` | Diagnose and fix bugs in ESQL or message flows |
69
+ | `/ace-explain` | Explain an ACE flow or ESQL module in plain language |
70
+ | `/ace-refactor` | Refactor ESQL for performance, clarity, and standards |
71
+ | `/ace-test` | Generate comprehensive test scenarios for flows and ESQL |
72
+ | `/apic-api` | Generate a complete API Connect (APIC) API definition — OpenAPI contract plus the full `x-ibm-configuration` assembly (JWT validate, logging, response envelope, catch handlers) |
68
73
 
69
74
  ### Agent Reference
70
75
 
@@ -97,37 +102,41 @@ Built-in reference docs loaded into every session:
97
102
  - **Terminal-first** — streaming responses, tool calling, slash commands, file tools, bash
98
103
  - **MCP support** — connect external Model Context Protocol servers
99
104
  - **Agent routing** — route different tasks to different models via `~/.orbit/settings.json`
100
- - **gRPC server mode** — run Orbit as a headless service on `localhost:50051` for CI/CD or custom UI integration
105
+ - **gRPC server mode** *(source build)* — run Orbit as a headless service on `localhost:50051` for CI/CD or custom UI integration
101
106
  - **Privacy-first** — telemetry stubbed at build time; no phone-home
102
107
 
103
108
  ---
104
109
 
105
110
  ## Agent Routing
106
111
 
107
- Route different agent tasks to different models:
112
+ Route different agent tasks to different models. Define each model's connection in `agentModels`, then map agents (or `default`) to those names in `agentRouting`. Every name used in `agentRouting` must exist in `agentModels`:
108
113
 
109
114
  ```json
110
115
  // ~/.orbit/settings.json
111
116
  {
117
+ "agentModels": {
118
+ "gemini-3.1-pro-preview": { "base_url": "https://generativelanguage.googleapis.com/v1beta/openai", "api_key": "your-gemini-key" },
119
+ "gemini-3.1-flash-lite": { "base_url": "https://generativelanguage.googleapis.com/v1beta/openai", "api_key": "your-gemini-key" }
120
+ },
112
121
  "agentRouting": {
113
- "Explore": "gemini-1.5-pro",
114
- "Plan": "claude-opus-4-6",
115
- "default": "claude-sonnet-4-6"
122
+ "Explore": "gemini-3.1-flash-lite",
123
+ "Plan": "gemini-3.1-pro-preview",
124
+ "default": "gemini-3.1-flash-lite"
116
125
  }
117
126
  }
118
127
  ```
119
128
 
120
129
  ---
121
130
 
122
- ## gRPC Server Mode
131
+ ## gRPC Server Mode (source build only)
123
132
 
124
- Run Orbit as a headless gRPC service on `localhost:50051`:
133
+ From a source checkout (not the npm package), run Orbit as a headless gRPC service on `localhost:50051`:
125
134
 
126
135
  ```bash
127
- npm run dev:grpc
136
+ bun run dev:grpc
128
137
  ```
129
138
 
130
- Connect your own client using `src/proto/orbit.proto`. Clients can be generated in Python, Go, Rust, or any gRPC-supported language.
139
+ Connect your own client using `src/proto/orbit.proto` clients can be generated in Python, Go, Rust, or any gRPC-supported language. This mode requires the repository; it is not included in the published npm package.
131
140
 
132
141
  ---
133
142
 
package/dist/cli.mjs CHANGED
@@ -83712,7 +83712,7 @@ function printStartupScreen() {
83712
83712
  const sLen = ` ● ${sL} Ready — type /help to begin`.length;
83713
83713
  out.push(boxRow(sRow, W2, sLen));
83714
83714
  out.push(`${rgb(...BORDER)}╚${"═".repeat(W2 - 2)}╝${RESET}`);
83715
- out.push(` ${DIM}${rgb(...DIMCOL)}orbit-ai ${RESET}${rgb(...ACCENT)}v${"0.1.1"}${RESET}`);
83715
+ out.push(` ${DIM}${rgb(...DIMCOL)}orbit-ai ${RESET}${rgb(...ACCENT)}v${"0.1.3"}${RESET}`);
83716
83716
  out.push("");
83717
83717
  process.stdout.write(out.join(`
83718
83718
  `) + `
@@ -334183,7 +334183,7 @@ function getAnthropicEnvMetadata() {
334183
334183
  function getBuildAgeMinutes() {
334184
334184
  if (false)
334185
334185
  ;
334186
- const buildTime = new Date("2026-06-22T12:11:45.826Z").getTime();
334186
+ const buildTime = new Date("2026-06-22T12:39:26.657Z").getTime();
334187
334187
  if (isNaN(buildTime))
334188
334188
  return;
334189
334189
  return Math.floor((Date.now() - buildTime) / 60000);
@@ -358600,7 +358600,7 @@ function buildPrimarySection() {
358600
358600
  }, undefined, false, undefined, this);
358601
358601
  return [{
358602
358602
  label: "Version",
358603
- value: "0.1.1"
358603
+ value: "0.1.3"
358604
358604
  }, {
358605
358605
  label: "Session name",
358606
358606
  value: nameValue
@@ -470842,7 +470842,7 @@ function WelcomeV2() {
470842
470842
  dimColor: true,
470843
470843
  children: [
470844
470844
  "v",
470845
- "0.1.1",
470845
+ "0.1.3",
470846
470846
  " "
470847
470847
  ]
470848
470848
  }, undefined, true, undefined, this)
@@ -471042,7 +471042,7 @@ function WelcomeV2() {
471042
471042
  dimColor: true,
471043
471043
  children: [
471044
471044
  "v",
471045
- "0.1.1",
471045
+ "0.1.3",
471046
471046
  " "
471047
471047
  ]
471048
471048
  }, undefined, true, undefined, this)
@@ -471268,7 +471268,7 @@ function AppleTerminalWelcomeV2(t0) {
471268
471268
  dimColor: true,
471269
471269
  children: [
471270
471270
  "v",
471271
- "0.1.1",
471271
+ "0.1.3",
471272
471272
  " "
471273
471273
  ]
471274
471274
  }, undefined, true, undefined, this);
@@ -471522,7 +471522,7 @@ function AppleTerminalWelcomeV2(t0) {
471522
471522
  dimColor: true,
471523
471523
  children: [
471524
471524
  "v",
471525
- "0.1.1",
471525
+ "0.1.3",
471526
471526
  " "
471527
471527
  ]
471528
471528
  }, undefined, true, undefined, this);
@@ -492076,7 +492076,7 @@ Usage: orbitcode --remote "your task description"`, () => gracefulShutdown(1));
492076
492076
  pendingHookMessages
492077
492077
  }, renderAndRun);
492078
492078
  }
492079
- }).version("0.1.1 (Orbit AI)", "-v, --version", "Output the version number");
492079
+ }).version("0.1.3 (Orbit AI)", "-v, --version", "Output the version number");
492080
492080
  program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
492081
492081
  program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
492082
492082
  if (canUserConfigureAdvisor()) {
@@ -492598,7 +492598,7 @@ if (false) {}
492598
492598
  async function main2() {
492599
492599
  const args = process.argv.slice(2);
492600
492600
  if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
492601
- console.log(`${"0.1.1"} (Orbit AI)`);
492601
+ console.log(`${"0.1.3"} (Orbit AI)`);
492602
492602
  return;
492603
492603
  }
492604
492604
  if (args.includes("--provider")) {
@@ -492702,4 +492702,4 @@ async function main2() {
492702
492702
  }
492703
492703
  main2();
492704
492704
 
492705
- //# debugId=7622A36E704C351564756E2164756E21
492705
+ //# debugId=FD4953675224C5F264756E2164756E21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orbit-code-ai",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "Orbit AI – Your AI-powered IBM ACE coding companion",
5
5
  "type": "module",
6
6
  "author": "moenawaf",