Skip to content

Releases: kevinforge/orbit

Orbit v1.1.0

Choose a tag to compare

@github-actions github-actions released this 19 Aug 09:34
a51b8f9

Orbit v1.1.0 Release Notes

Status: stable release. This release unifies the three runtime adapters under
ACP v1, adds per-conversation collaboration modes with a built-in supervisor,
and redesigns the collaboration workspace.

Orbit is a local-first workspace for coordinating CLI-backed digital employees
across isolated workspaces and conversations. The 1.1 release makes every
runtime speak the same Agent Client Protocol, brings approval and elicitation
into the conversation, and introduces supervised collaboration.

Release Summary

This release focuses on:

  • One ACP v1 protocol for Claude Code, Codex, and CodeBuddy. The
    claude-agent-acp and codex-acp adapters ship bundled; CodeBuddy connects
    through codebuddy --acp.
  • Permission approval cards and structured elicitation questions surfaced in
    chat, with the message-level approval mode (ask or full access) propagated
    along the full handoff chain.
  • Per-conversation collaboration modes: 普通对话 (direct), 简单协作
    (collaborative), and 复杂协作 (supervised). New conversations start in
    简单协作 and the mode can be switched mid-conversation without losing
    employee session context.
  • A built-in supervisor (监工) for 复杂协作 that decomposes goals, schedules
    employees, tracks progress, recovers from failures, and drives tasks to
    closure.
  • Fully editable digital employee teams, including the built-in software
    development team template (范同经 / 甄架构 / 蔡一平 / 田小坑). Per-employee
    permission settings were removed in favor of the message-level approval mode.
  • A redesigned desktop-style collaboration workspace with a task detail drawer,
    execution timelines, and a clearer composer built with tdesign-react.
  • Safer rendering: external links in employee output only open http(s) URLs, and
    ACP progress chatter no longer leaks into final answers.
  • More reliable supervision: the stop button stays visible while the supervisor
    runs, user messages sent during a supervised run are queued, and interaction
    expiry timers fire reliably in CI environments.

Install

Public npm

Install the stable package from the owned npm scope:

npm install -g @kevinforge/orbit@1.1.0

After installation, start Orbit:

orbit

Then open http://localhost:4317.

Do not run npm install -g orbit for this project. The public orbit package
name is already occupied by an unrelated package. The scoped package keeps the
CLI command as orbit.

GitHub Release Artifacts

Download the package that matches your operating system from the GitHub Release,
then install it with npm:

npm install -g .\orbit-1.1.0-windows-x64.tgz

On Linux or macOS, use the matching .tgz artifact name:

npm install -g ./orbit-1.1.0-<platform>.tgz

Source Checkout

git clone https://github.com/kevinforge/orbit.git
cd orbit
npm ci
npm run build
npm run dev

Supported Platforms

The release packaging workflow targets:

  • Windows x64
  • Linux x64
  • macOS x64
  • macOS ARM64

Runtime Prerequisites

Orbit coordinates local CLI-backed digital employees. Install and authenticate
at least one supported runtime CLI before assigning work to employees:

Runtime Install
Claude Code npm install -g @anthropic-ai/claude-code
Codex npm install -g @openai/codex
CodeBuddy npm install -g @tencent-ai/codebuddy-code

Claude Code, Codex, and CodeBuddy are optional choices. A digital employee
cannot run until its selected runtime CLI is available and authenticated.

What Changed Since 1.0.0

New things you can do

  • One protocol for every runtime. Claude Code, Codex, and CodeBuddy all run
    over Agent Client Protocol (ACP) v1. The Claude Code (claude-agent-acp) and
    Codex (codex-acp) adapters ship bundled with Orbit, so no extra adapter
    install is needed; CodeBuddy connects through codebuddy --acp.
  • Approve work in the conversation. Permission requests from digital
    employees surface as approval cards in chat. The message's approval mode
    (ask or full access) follows the entire handoff chain.
  • Answer structured questions. Employees can ask structured elicitation
    questions in chat, and their native plans are surfaced while they work.
  • Pick a collaboration mode per conversation. 普通对话 (direct),
    简单协作 (collaborative), and 复杂协作 (supervised) modes replace the old
    always-on routing. New conversations start in 简单协作, and the mode can be
    switched mid-conversation without losing employee session context.
  • Delegate to a built-in supervisor. 复杂协作 enables the internal
    supervisor (监工) that decomposes goals, schedules employees, tracks
    progress, recovers from failures, and drives the task to closure.
  • Build your own digital employee team. Employees are fully editable:
    rename them, rewrite their prompts, add or remove them, or apply the built-in
    software development team template (范同经 / 甄架构 / 蔡一平 / 田小坑).
    Per-employee permission settings were removed in favor of the message-level
    approval mode.
  • Stop everything at once. Stopping a conversation discards queued tasks
    and moves running tasks through an explicit cancelling state until the
    runtime settles, preserving partial output instead of mixing it into the
    next task.

Improvements & fixes

  • Redesigned collaboration workspace. A desktop-style UI with a task
    detail drawer, execution timelines, and a clearer composer (built with
    tdesign-react).
  • Safer rendering. External links in employee output only open http(s)
    URLs, guarding against javascript: and data: URLs; ACP progress chatter
    no longer leaks into final answers.
  • More reliable supervision. The stop button stays visible while the
    supervisor runs, user messages sent during a supervised run are queued, and
    interaction expiry timers fire reliably in CI environments.

Security And Governance

  • License: MIT.
  • Security reports: see SECURITY.md.
  • Community standards: see CODE_OF_CONDUCT.md.
  • Contribution workflow: see CONTRIBUTING.md.
  • Dependency license baseline: see docs/DEPENDENCY_LICENSES.md.

Known Limitations

  • Users need at least one installed and authenticated runtime CLI before a
    digital employee can run.
  • Private license enforcement remains only as an explicit opt-in via
    ORBIT_REQUIRE_LICENSE=true; the default public build remains unblocked.
  • Multi-page workspace and same-session concurrency hardening continues in
    issue #116.

Verification Evidence

Use this section as the release audit trail. Local evidence is completed before
the release PR is marked ready; workflow evidence is completed by GitHub Actions
before publishing the tag.

Check Status Evidence
npm run release:check:strict Passed locally Release metadata and governance references passed for v1.1.0
npm run test Passed locally Full repository test suite passed
npm run build Passed in CI TypeScript and Vite build passed locally; standalone build completed in CI with Bun
npm audit --audit-level=moderate Passed locally 0 vulnerabilities after npm audit fix
npm package contains Windows x64, Linux x64, macOS x64, and macOS ARM64 binaries Release workflow verification Release artifacts and npm package payload
GitHub Actions CI result PR verification CI check on the release PR
Release workflow result for each platform package Tag verification GitHub Actions Release workflow
npm publish workflow result Tag verification GitHub Actions Release workflow
SHA256 checksums for release assets Tag verification SHA256SUMS.txt in the GitHub Release
Windows startup verification Manual verification docs/STABILITY_VERIFICATION.md evidence
Linux startup verification Manual verification docs/STABILITY_VERIFICATION.md evidence
macOS startup verification Manual verification docs/STABILITY_VERIFICATION.md evidence
Restart and queue recovery verification Manual verification docs/STABILITY_VERIFICATION.md evidence
Local data backup/restore verification Manual verification docs/STABILITY_VERIFICATION.md evidence

Documentation

  • README.md
  • README.zh-CN.md
  • docs/QUICKSTART.md
  • docs/QUICKSTART.zh-CN.md
  • docs/ARCHITECTURE.md
  • docs/RELEASE_DECISIONS.md
  • docs/DATA_DIRECTORY.md
  • docs/STABILITY_VERIFICATION.md
  • docs/TERMINOLOGY_AND_ROUTING.md
  • docs/RELEASE_CHECKLIST.md
  • docs/OPEN_SOURCE_READINESS.md
  • SECURITY.md
  • CODE_OF_CONDUCT.md
  • CONTRIBUTING.md

Orbit v1.0.0

Choose a tag to compare

@github-actions github-actions released this 08 Jul 11:40
3991404

Orbit v1.0.0 Release Notes

Status: stable release. This is the first public open source 1.0 release of
Orbit.

Orbit is a local-first workspace for coordinating CLI-backed digital employees
across isolated workspaces and conversations. The 1.0 release makes Orbit
publicly installable, auditable, and contribution-ready under the MIT license.

Release Summary

This release focuses on:

  • Public setup from source, GitHub Release artifacts, and public npm.
  • Distribution through GitHub Releases and public npm.
  • Default startup without a required license.json.
  • Local persistence under ~/.orbit.
  • CLI-backed digital employees using Claude Code, Codex, or CodeBuddy.
  • Explicit @developer: style assignment markers, handoffs, and run queues.
  • Recovery after a digital employee runtime fails with an upstream service
    error.
  • Clearer user-facing messaging when Claude Code reports 529 overloaded.
  • Release smoke checks for the built local server.
  • Public governance files and contribution guidance.

Install

Public npm

Install the stable package from the owned npm scope:

npm install -g @kevinforge/orbit@1.0.0

After installation, start Orbit:

orbit

Then open http://localhost:4317.

Do not run npm install -g orbit for this project. The public orbit package
name is already occupied by an unrelated package. The scoped package keeps the
CLI command as orbit.

The package name is already occupied, so Orbit publishes under
@kevinforge/orbit.

GitHub Release Artifacts

Download the package that matches your operating system from the GitHub Release,
then install it with npm:

npm install -g .\orbit-1.0.0-windows-x64.tgz

On Linux or macOS, use the matching .tgz artifact name:

npm install -g ./orbit-1.0.0-<platform>.tgz

Source Checkout

git clone https://github.com/kevinforge/orbit.git
cd orbit
npm ci
npm run build
npm run dev

Supported Platforms

The release packaging workflow targets:

  • Windows x64
  • Linux x64
  • macOS x64
  • macOS ARM64

Runtime Prerequisites

Orbit coordinates local CLI-backed digital employees. Install and authenticate
at least one supported runtime CLI before assigning work to employees:

Runtime Install
Claude Code npm install -g @anthropic-ai/claude-code
Codex npm install -g @openai/codex
CodeBuddy npm install -g @tencent-ai/codebuddy-code

Claude Code, Codex, and CodeBuddy are optional choices. A digital employee
cannot run until its selected runtime CLI is available and authenticated.

What Changed Since 0.9.x

  • Open source governance files are present: LICENSE, SECURITY.md,
    CODE_OF_CONDUCT.md, and CONTRIBUTING.md.
  • Package metadata is aligned for a public repository, including license,
    repository, homepage, bugs, keywords, and a restricted package file list.
  • The npm package name is @kevinforge/orbit, with the installed command kept
    as orbit.
  • Default standalone startup no longer requires license.json; private licensed
    builds must opt in with ORBIT_REQUIRE_LICENSE=true.
  • CI and release packaging run the built-app startup smoke check against
    GET /api/state.
  • Local data layout, backup, restore, and reset guidance is documented in
    docs/DATA_DIRECTORY.md.
  • Public product terms and @developer: assignment marker behavior are
    documented in docs/TERMINOLOGY_AND_ROUTING.md.
  • A digital employee in error state can be retried by sending a normal
    unassigned message to the same conversation. A fully stopped employee still
    requires explicit assignment.
  • Claude Code 529 overloaded failures are summarized as an upstream model
    service busy condition instead of repeating the raw overloaded error text.
  • 1.0 release verification gates are tracked in docs/RELEASE_CHECKLIST.md and
    docs/OPEN_SOURCE_READINESS.md.

Security And Governance

  • License: MIT.
  • Security reports: see SECURITY.md.
  • Community standards: see CODE_OF_CONDUCT.md.
  • Contribution workflow: see CONTRIBUTING.md.
  • Dependency license baseline: see docs/DEPENDENCY_LICENSES.md.

Known Limitations

  • Users need at least one installed and authenticated runtime CLI before a
    digital employee can run.
  • Private license enforcement remains only as an explicit opt-in via
    ORBIT_REQUIRE_LICENSE=true; the default public build remains unblocked.
  • Multi-page workspace and same-session concurrency hardening continues in
    issue #116.

Verification Evidence

Use this section as the release audit trail. Local evidence is completed before
the release PR is marked ready; workflow evidence is completed by GitHub Actions
before publishing the tag.

Check Status Evidence
npm run release:check:strict Passed locally Release metadata and governance references passed
npm run test Passed locally Full repository test suite passed on Windows
npm run build Passed locally TypeScript, Vite, and Windows standalone build passed
node --test --import tsx tests/release-workflow.test.ts Passed locally Release workflow checks passed for the current package version
npm package contains Windows x64, Linux x64, macOS x64, and macOS ARM64 binaries Release workflow verification Release artifacts and npm package payload
GitHub Actions CI result PR verification CI check on the release PR
Release workflow result for each platform package Tag verification GitHub Actions Release workflow
npm publish workflow result Tag verification GitHub Actions Release workflow
SHA256 checksums for release assets Tag verification SHA256SUMS.txt in the GitHub Release
Windows startup verification Manual verification docs/STABILITY_VERIFICATION.md evidence
Linux startup verification Manual verification docs/STABILITY_VERIFICATION.md evidence
macOS startup verification Manual verification docs/STABILITY_VERIFICATION.md evidence
Restart and queue recovery verification Manual verification docs/STABILITY_VERIFICATION.md evidence
Local data backup/restore verification Manual verification docs/STABILITY_VERIFICATION.md evidence

Documentation

  • README.md
  • docs/QUICKSTART.md
  • docs/RELEASE_DECISIONS.md
  • docs/DATA_DIRECTORY.md
  • docs/STABILITY_VERIFICATION.md
  • docs/TERMINOLOGY_AND_ROUTING.md
  • docs/RELEASE_CHECKLIST.md
  • docs/OPEN_SOURCE_READINESS.md
  • SECURITY.md
  • CODE_OF_CONDUCT.md
  • CONTRIBUTING.md

Orbit v1.0.0-rc.2

Choose a tag to compare

@github-actions github-actions released this 07 Jul 07:07
5c0b040

Orbit v1.0.0-rc.2 Release Notes

Status: release candidate. Publish these notes only for v1.0.0-rc.2; keep
final v1.0.0 notes separate after release-candidate feedback is reviewed.

Orbit 1.0 is the first planned open source release line for the local-first
digital employee workspace. This release candidate follows v1.0.0-rc.1 with a
focused runtime-recovery fix from release-candidate testing.

Release Summary

This candidate focuses on:

  • Recovery after a digital employee runtime fails with an upstream service
    error.
  • Clearer user-facing messaging when Claude Code reports 529 overloaded.
  • Public setup from source, GitHub Release artifacts, and public npm.
  • Distribution through GitHub Releases and public npm.
  • Default startup without a required license.json.
  • Local persistence under ~/.orbit.
  • CLI-backed digital employees using Claude Code, Codex, or CodeBuddy.
  • Explicit @developer: style assignment markers, handoffs, and run queues.
  • Release smoke checks for the built local server.
  • Public governance files and contribution guidance.

Install

Public npm

Install the release-candidate package from the owned npm scope:

npm install -g @kevinforge/orbit@1.0.0-rc.2

After installation, start Orbit:

orbit

Then open http://localhost:4317.

Do not run npm install -g orbit for this project. The public orbit package
name is already occupied by an unrelated package. The scoped package keeps the
CLI command as orbit.

The package name is already occupied, so Orbit publishes under
@kevinforge/orbit.

GitHub Release Artifacts

Download the package that matches your operating system from the GitHub Release,
then install it with npm:

npm install -g .\orbit-1.0.0-rc.2-windows-x64.tgz

On Linux or macOS, use the matching .tgz artifact name:

npm install -g ./orbit-1.0.0-rc.2-<platform>.tgz

Source Checkout

git clone https://github.com/kevinforge/orbit.git
cd orbit
npm ci
npm run build
npm run dev

Supported Platforms

The release-candidate packaging workflow targets:

  • Windows x64
  • Linux x64
  • macOS x64
  • macOS ARM64

For final 1.0 support claims, each platform must have release workflow evidence
and manual startup evidence from docs/STABILITY_VERIFICATION.md.

Runtime Prerequisites

Orbit coordinates local CLI-backed digital employees. Install and authenticate
at least one supported runtime CLI before assigning work to employees:

Runtime Install
Claude Code npm install -g @anthropic-ai/claude-code
Codex npm install -g @openai/codex
CodeBuddy npm install -g @tencent-ai/codebuddy-code

Claude Code, Codex, and CodeBuddy are optional choices. A digital employee
cannot run until its selected runtime CLI is available and authenticated.

What Changed Since rc.1

  • A digital employee in error state can now be retried by sending a normal
    unassigned message to the same conversation. A fully stopped employee still
    requires explicit assignment.
  • Claude Code 529 overloaded failures are summarized as an upstream model
    service busy condition instead of repeating the raw overloaded error text.
  • The release candidate version is updated to 1.0.0-rc.2 for npm and GitHub
    Release publishing.

What Changed Since 0.9.x

  • Open source governance files are present: LICENSE, SECURITY.md,
    CODE_OF_CONDUCT.md, and CONTRIBUTING.md.
  • Package metadata is aligned for a public repository, including license,
    repository, homepage, bugs, keywords, and a restricted package file list.
  • The npm package name is @kevinforge/orbit, with the installed command kept
    as orbit.
  • Default standalone startup no longer requires license.json; private licensed
    builds must opt in with ORBIT_REQUIRE_LICENSE=true.
  • CI and release packaging run the built-app startup smoke check against
    GET /api/state.
  • Local data layout, backup, restore, and reset guidance is documented in
    docs/DATA_DIRECTORY.md.
  • Public product terms and @developer: assignment marker behavior are
    documented in docs/TERMINOLOGY_AND_ROUTING.md.
  • 1.0 release verification gates are tracked in docs/RELEASE_CHECKLIST.md and
    docs/OPEN_SOURCE_READINESS.md.

Security And Governance

  • License: MIT.
  • Security reports: see SECURITY.md.
  • Community standards: see CODE_OF_CONDUCT.md.
  • Contribution workflow: see CONTRIBUTING.md.
  • Dependency license baseline: see docs/DEPENDENCY_LICENSES.md.

Known Limitations

  • This is a release candidate, not the final 1.0 stable release.
  • Final platform support depends on completed evidence for Windows x64, Linux
    x64, macOS x64, and macOS ARM64.
  • Private license enforcement remains only as an explicit opt-in via
    ORBIT_REQUIRE_LICENSE=true; the default public build must remain unblocked.
  • Users need at least one installed and authenticated runtime CLI before a
    digital employee can run.
  • Multi-page workspace and same-session concurrency hardening continues in
    issue #116.

Verification Evidence

Use this section as the release audit trail. Local evidence is completed before
the release PR is marked ready; workflow evidence is completed by GitHub Actions
before publishing the tag.

Check Status Evidence
node --test --import tsx tests/channel-watch.test.ts Passed locally Error-state retry and stopped-state blocking behavior covered
node --test --import tsx tests/run-manager.test.ts Passed locally Upstream overloaded summary behavior covered
npm run release:check:strict Passed locally Release metadata and governance references passed
npm run test Passed locally Full repository test suite passed on Windows
npm run build Passed locally TypeScript, Vite, and Windows standalone build passed
npm package contains Windows x64, Linux x64, macOS x64, and macOS ARM64 binaries Release workflow verification Release artifacts and npm package payload
GitHub Actions CI result PR verification CI check on the release PR
Release workflow result for each platform package Tag verification GitHub Actions Release workflow
npm publish workflow result Tag verification GitHub Actions Release workflow
SHA256 checksums for release assets Tag verification SHA256SUMS.txt in the GitHub Release
Windows startup verification Manual verification docs/STABILITY_VERIFICATION.md evidence
Linux startup verification Manual verification docs/STABILITY_VERIFICATION.md evidence
macOS startup verification Manual verification docs/STABILITY_VERIFICATION.md evidence
Restart and queue recovery verification Manual verification docs/STABILITY_VERIFICATION.md evidence
Local data backup/restore verification Manual verification docs/STABILITY_VERIFICATION.md evidence

Documentation

  • README.md
  • docs/QUICKSTART.md
  • docs/RELEASE_DECISIONS.md
  • docs/DATA_DIRECTORY.md
  • docs/STABILITY_VERIFICATION.md
  • docs/TERMINOLOGY_AND_ROUTING.md
  • docs/RELEASE_CHECKLIST.md
  • docs/OPEN_SOURCE_READINESS.md
  • SECURITY.md
  • CODE_OF_CONDUCT.md
  • CONTRIBUTING.md

Orbit v1.0.0-rc.1

Orbit v1.0.0-rc.1 Pre-release
Pre-release

Choose a tag to compare

@github-actions github-actions released this 07 Jul 01:56
0b78979

Orbit v1.0.0-rc.1 Release Notes

Status: release candidate. Publish these notes only for v1.0.0-rc.1; keep
final v1.0.0 notes separate after release-candidate feedback is reviewed.

Orbit 1.0 is the first planned open source release line for the local-first
digital employee workspace. This release candidate is intended for external
users who want to clone, build, run, inspect, and contribute to Orbit without
private repository access or manual administrator steps.

Release Summary

This candidate focuses on:

  • Public setup from source, GitHub Release artifacts, and public npm.
  • Distribution through GitHub Releases and public npm.
  • Default startup without a required license.json.
  • Local persistence under ~/.orbit.
  • CLI-backed digital employees using Claude Code, Codex, or CodeBuddy.
  • Explicit @developer: style assignment markers, handoffs, and run queues.
  • Release smoke checks for the built local server.
  • Public governance files and contribution guidance.

Install

Public npm

Install the release-candidate package from the owned npm scope:

npm install -g @kevinforge/orbit@1.0.0-rc.1

After installation, start Orbit:

orbit

Then open http://localhost:4317.

Do not run npm install -g orbit for this project. The public orbit package
name is already occupied by an unrelated package. The scoped package keeps the
CLI command as orbit.

The package name is already occupied, so Orbit publishes under
@kevinforge/orbit.

GitHub Release Artifacts

Download the package that matches your operating system from the GitHub Release,
then install it with npm:

npm install -g .\orbit-1.0.0-rc.1-windows-x64.tgz

On Linux or macOS, use the matching .tgz artifact name:

npm install -g ./orbit-1.0.0-rc.1-<platform>.tgz

Source Checkout

git clone https://github.com/kevinforge/orbit.git
cd orbit
npm ci
npm run build
npm run dev

Supported Platforms

The release-candidate packaging workflow targets:

  • Windows x64
  • Linux x64
  • macOS x64
  • macOS ARM64

For final 1.0 support claims, each platform must have release workflow evidence
and manual startup evidence from docs/STABILITY_VERIFICATION.md.

Runtime Prerequisites

Orbit coordinates local CLI-backed digital employees. Install and authenticate
at least one supported runtime CLI before assigning work to employees:

Runtime Install
Claude Code npm install -g @anthropic-ai/claude-code
Codex npm install -g @openai/codex
CodeBuddy npm install -g @tencent-ai/codebuddy-code

Claude Code, Codex, and CodeBuddy are optional choices. A digital employee
cannot run until its selected runtime CLI is available and authenticated.

What Changed Since 0.9.x

  • Open source governance files are present: LICENSE, SECURITY.md,
    CODE_OF_CONDUCT.md, and CONTRIBUTING.md.
  • Package metadata is aligned for a public repository, including license,
    repository, homepage, bugs, keywords, and a restricted package file list.
  • The npm package name is @kevinforge/orbit, with the installed command kept
    as orbit.
  • Default standalone startup no longer requires license.json; private licensed
    builds must opt in with ORBIT_REQUIRE_LICENSE=true.
  • CI and release packaging run the built-app startup smoke check against
    GET /api/state.
  • Local data layout, backup, restore, and reset guidance is documented in
    docs/DATA_DIRECTORY.md.
  • Public product terms and @developer: assignment marker behavior are
    documented in docs/TERMINOLOGY_AND_ROUTING.md.
  • 1.0 release verification gates are tracked in docs/RELEASE_CHECKLIST.md and
    docs/OPEN_SOURCE_READINESS.md.

Security And Governance

  • License: MIT.
  • Security reports: see SECURITY.md.
  • Community standards: see CODE_OF_CONDUCT.md.
  • Contribution workflow: see CONTRIBUTING.md.
  • Dependency license baseline: see docs/DEPENDENCY_LICENSES.md.

Known Limitations

  • This is a release candidate, not the final 1.0 stable release.
  • Final platform support depends on completed evidence for Windows x64, Linux
    x64, macOS x64, and macOS ARM64.
  • Private license enforcement remains only as an explicit opt-in via
    ORBIT_REQUIRE_LICENSE=true; the default public build must remain unblocked.
  • Users need at least one installed and authenticated runtime CLI before a
    digital employee can run.
  • Multi-page workspace and same-session concurrency hardening continues in
    issue #116.

Verification Evidence

Use this section as the release audit trail. Local evidence is completed before
the release PR is marked ready; workflow evidence is completed by GitHub Actions
before publishing the tag.

Check Status Evidence
npm run test Passed locally 586 tests passed on Windows
npm run build Passed locally TypeScript, Vite, and Windows standalone build passed
npm audit --audit-level=moderate Passed locally 0 vulnerabilities
npm run smoke:start Passed locally GET /api/state returned 200
npm run smoke:port-conflict Passed locally Occupied port produced a clear startup failure
npm pack --dry-run --json Passed locally Windows package payload validated from local build
npm publish --dry-run --access public --ignore-scripts Passed locally npm accepted public scoped-package dry-run
npm package contains Windows x64, Linux x64, macOS x64, and macOS ARM64 binaries Release workflow verification Release artifacts and npm package payload
GitHub Actions CI result PR verification CI check on the release PR
Release workflow result for each platform package Tag verification GitHub Actions Release workflow
npm publish workflow result Tag verification GitHub Actions Release workflow
SHA256 checksums for release assets Tag verification SHA256SUMS.txt in the GitHub Release
Windows startup verification Manual verification docs/STABILITY_VERIFICATION.md evidence
Linux startup verification Manual verification docs/STABILITY_VERIFICATION.md evidence
macOS startup verification Manual verification docs/STABILITY_VERIFICATION.md evidence
Restart and queue recovery verification Manual verification docs/STABILITY_VERIFICATION.md evidence
Local data backup/restore verification Manual verification docs/STABILITY_VERIFICATION.md evidence

Documentation

  • README.md
  • docs/QUICKSTART.md
  • docs/RELEASE_DECISIONS.md
  • docs/DATA_DIRECTORY.md
  • docs/STABILITY_VERIFICATION.md
  • docs/TERMINOLOGY_AND_ROUTING.md
  • docs/RELEASE_CHECKLIST.md
  • docs/OPEN_SOURCE_READINESS.md
  • SECURITY.md
  • CODE_OF_CONDUCT.md
  • CONTRIBUTING.md

Orbit v0.9.5

Choose a tag to compare

@github-actions github-actions released this 21 Jun 03:01
938eff6

What's Changed

  • fix: clarify Orbit package installation by @QianzhenSun in #99
  • test: guard workspace preset Chinese copy by @QianzhenSun in #104
  • feat: show runtime setup commands by @QianzhenSun in #103
  • feat: show compact agent handoff context by @QianzhenSun in #106
  • docs: align quickstart runtime setup guidance by @QianzhenSun in #105
  • fix: run every test in default verification by @QianzhenSun in #109
  • feat: identify running employees in conversation sidebar by @QianzhenSun in #111
  • fix: harden message shards + stop leaking agent codewords (review I-1, I-2) by @QianzhenSun in #112
  • fix: start next queued run when a running run is cancelled (T-1) by @QianzhenSun in #113
  • fix: surface CLI failure clues instead of generic transcript fallback (T-2) by @QianzhenSun in #114
  • feat: add work analysis dashboard by @QianzhenSun in #115
  • docs: prepare v0.9.5 release by @QianzhenSun in #117
  • ci: automate private GitHub releases by @QianzhenSun in #118
  • ci: distribute npm packages in releases by @QianzhenSun in #119
  • fix: build release binaries on native runners by @QianzhenSun in #120
  • fix: exclude source maps from release packages by @QianzhenSun in #121

Full Changelog: v0.9.4...v0.9.5