Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
e9b6d93
feat: [Phase 0] add Dispatcher abstraction layer for Python bridge mi…
anandgupta42 Mar 17, 2026
4d1f538
fix: address code review findings for dispatcher
anandgupta42 Mar 17, 2026
13681c9
feat: [Phase 1] wire altimate-core napi-rs bindings — 34 native handlers
anandgupta42 Mar 17, 2026
2bbfec8
feat: [Phase 2] connection manager + 10 Node.js database drivers
anandgupta42 Mar 17, 2026
e550ac2
feat: [Phase 3+4] schema cache, finops, dbt, and local testing
anandgupta42 Mar 17, 2026
2f72dcb
feat: register composite SQL dispatcher methods — 72/73 native
anandgupta42 Mar 17, 2026
f1a11d8
feat: [Phase 5] remove Python bridge fallback — all 73 methods native
anandgupta42 Mar 17, 2026
845ee98
feat: [Phase 5 final] delete Python bridge + engine, move types, upda…
anandgupta42 Mar 17, 2026
ec8ac00
fix: address all code review findings — security, correctness, robust…
anandgupta42 Mar 17, 2026
0753907
refactor: extract @altimateai/drivers shared workspace package
anandgupta42 Mar 17, 2026
31e57cb
chore: fix review NITs + protect new files in upstream merge config
anandgupta42 Mar 17, 2026
9129f1d
chore: rename telemetry type bridge_call -> native_call
anandgupta42 Mar 17, 2026
886d1d7
test: add E2E driver tests + driver docs + discover integration
anandgupta42 Mar 17, 2026
ae9bef7
ci: add driver-e2e CI job + env var support for CI services
anandgupta42 Mar 18, 2026
80b37f4
test: Snowflake E2E tests + encrypted key-pair auth fix
anandgupta42 Mar 18, 2026
069bdb2
test: Databricks E2E tests — 24 tests against live account
anandgupta42 Mar 18, 2026
c92caca
feat: add warehouse telemetry — connect, query, introspection, discov…
anandgupta42 Mar 18, 2026
9157fc2
test: adversarial telemetry safety tests + defensive helper fixes
anandgupta42 Mar 18, 2026
31bd592
test: BigQuery E2E tests — 25 tests against live account
anandgupta42 Mar 18, 2026
368d6bb
ci: fix test isolation — cloud tests skip without credentials, driver…
anandgupta42 Mar 18, 2026
5eea91d
chore: bump @altimateai/altimate-core to ^0.2.3 (semver range)
anandgupta42 Mar 18, 2026
224646e
fix: address all 17 Sentry bot review comments on PR #221
anandgupta42 Mar 18, 2026
555bd64
merge: resolve conflicts with origin/main
anandgupta42 Mar 18, 2026
75cfe00
chore: remove stray pr221.diff file
anandgupta42 Mar 18, 2026
0546eda
test: 30 adversarial tests + optionalDependencies for drivers package
anandgupta42 Mar 18, 2026
2f8b1d3
feat: dbt-first SQL execution — use dbt adapter before falling back t…
anandgupta42 Mar 18, 2026
82520a3
test: E2E tests for dbt-first SQL execution
anandgupta42 Mar 18, 2026
fe392db
docs: update all documentation for Python elimination + dbt-first exe…
anandgupta42 Mar 18, 2026
1c91d43
fix: resolve remaining Sentry review comments
anandgupta42 Mar 18, 2026
69ad471
chore: remove all Python engine infrastructure from CI and build
anandgupta42 Mar 18, 2026
93f8115
fix: CI Redshift database, DuckDB race condition, schema-sync SQL escape
anandgupta42 Mar 18, 2026
d71ca7b
perf: lazy handler registration — load napi binary on first call
anandgupta42 Mar 18, 2026
1b1be03
fix: eliminate all mock.module usage — tests now match main baseline
anandgupta42 Mar 18, 2026
8c0088c
fix: resolve merge conflicts + fix flaky test timeouts + update guards
anandgupta42 Mar 18, 2026
43d73da
fix: resolve remaining Sentry comments — Databricks DATE_SUB + SqlExe…
anandgupta42 Mar 18, 2026
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
26 changes: 20 additions & 6 deletions bun.lock

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

2 changes: 2 additions & 0 deletions packages/opencode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@
"@ai-sdk/togetherai": "1.0.34",
"@ai-sdk/vercel": "1.0.33",
"@ai-sdk/xai": "2.0.51",
"@altimateai/altimate-core": "0.2.3",
"@aws-sdk/credential-providers": "3.993.0",
"@clack/prompts": "1.0.0-alpha.1",
"@gitlab/gitlab-ai-provider": "3.6.0",
Expand Down Expand Up @@ -129,6 +130,7 @@
"web-tree-sitter": "0.25.10",
"which": "6.0.1",
"xdg-basedir": "5.1.0",
"yaml": "2.8.2",
"yargs": "18.0.0",
"zod": "catalog:",
"zod-to-json-schema": "3.24.5"
Expand Down
5 changes: 4 additions & 1 deletion packages/opencode/src/altimate/index.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
// Barrel export for all Altimate custom code

// Bridge
// Bridge (legacy — being replaced by native dispatcher)
export { Bridge } from "./bridge/client"
export { ensureEngine, enginePythonPath } from "./bridge/engine"
export * from "./bridge/protocol"

// Native dispatcher (new — Strangler Fig migration layer)
export { Dispatcher } from "./native"

// Telemetry
export { Telemetry } from "./telemetry"

Expand Down
Loading
Loading