feat(plugin-obsessiondb): query routing through ObsessionDB API#103
Merged
feat(plugin-obsessiondb): query routing through ObsessionDB API#103
Conversation
Add plugin context infrastructure so plugins can replace the ClickHouse executor via a `getContext` hook. Core commands (migrate, status, drift, check) now receive the executor from `CommandRunContext.ctx` instead of creating their own via `withClickHouseExecutor`. The ObsessionDB plugin uses this to route queries through the platform API when the user is authenticated and has a selected service. Adds per-project service binding (`.chkit/obsessiondb.json`), interactive service selection during login, a `select-service` command, and a remote executor that proxies all ClickHouse operations through the ObsessionDB query API. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Prevent ClickHouse TCP connection leak when a plugin's getContext hook throws — the eagerly-opened default executor was never closed because the caller's finally/disposeContext block requires a returned context. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
PluginContextwithgetContexthook so plugins can replace the ClickHouse executorctx.executorfrom plugin context instead ofwithClickHouseExecutor.chkit/obsessiondb.json), interactive service selection duringchkit obsessiondb login, andselect-servicecommandapiRequesthelper from backfill intoapi-request.tsTest plan
bun verifypasses (typecheck + lint + test)chkit obsessiondb loginauthenticates and prompts for service selectionchkit obsessiondb select-servicere-picks service without re-authchkit migrate --applyroutes through ObsessionDB when service selected🤖 Generated with Claude Code