Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:

jobs:
# ── Web companion (kernel.chat) ──
Expand All @@ -25,9 +26,18 @@ jobs:
VITE_SUPABASE_KEY: ${{ secrets.VITE_SUPABASE_KEY }}

# ── kbot CLI ──
# Cross-platform matrix: kbot is npm-distributed with no platform
# gate, so every OS a user can `npm install` on is an OS we test on.
# Windows coverage exists because 46/1370 tests failed the first time
# the suite ran on a real Windows machine (2026-05-13) — Unix-first
# assumptions don't surface without a Windows runner in the loop.
kbot:
name: kbot — Build & Test
runs-on: ubuntu-latest
name: kbot — Build & Test (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand Down
6 changes: 4 additions & 2 deletions packages/kbot/dist/agent-protocol.test.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/kbot/dist/agent-protocol.test.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/kbot/dist/context.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 6 additions & 2 deletions packages/kbot/dist/context.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/kbot/dist/context.js.map

Large diffs are not rendered by default.

31 changes: 17 additions & 14 deletions packages/kbot/dist/context.test.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/kbot/dist/context.test.js.map

Large diffs are not rendered by default.

16 changes: 11 additions & 5 deletions packages/kbot/dist/graph-memory.test.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/kbot/dist/graph-memory.test.js.map

Large diffs are not rendered by default.

7 changes: 5 additions & 2 deletions packages/kbot/dist/memory.test.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/kbot/dist/memory.test.js.map

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions packages/kbot/dist/tools/bash.d.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,9 @@
/**
* Translate a simple POSIX command to its PowerShell equivalent.
* Returns null when no faithful translation exists (the command then
* passes through to the system shell unchanged). Exported for tests —
* pure function, runs on every platform.
*/
export declare function translatePosixForWindows(command: string): string | null;
export declare function registerBashTools(): void;
//# sourceMappingURL=bash.d.ts.map
2 changes: 1 addition & 1 deletion packages/kbot/dist/tools/bash.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading