fix(cli): code-pack must open temporal store for embeddings staging#121
Merged
Conversation
Merged
theagenticguy
added a commit
that referenced
this pull request
May 17, 2026
🤖 Automated release via release-please --- <details><summary>cli: 0.5.1</summary> ## [0.5.1](cli-v0.5.0...cli-v0.5.1) (2026-05-17) ### Bug Fixes * **cli:** code-pack must open temporal store for embeddings staging ([#121](#121)) ([f609542](f609542)) </details> <details><summary>root: 0.6.1</summary> ## [0.6.1](root-v0.6.0...root-v0.6.1) (2026-05-17) ### Bug Fixes * **cli:** code-pack must open temporal store for embeddings staging ([#121](#121)) ([f609542](f609542)) </details> --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Laith Al-Saadoon <alsaadoonlaith@gmail.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
The
release.ymlpost-merge workflow'sGenerate code-packstep failed withDuckDbStore is not open — call open() first. After the embeddings sidecar moved to staging throughtemporal.exportEmbeddingsToParquet, code-pack now needs the temporal view open — but the call site only openedcomposed.graph.Fix
One line:
await composed.temporal.open()after the existingcomposed.graph.open()inrunCodePack. Verified locally:codehub code-packruns end-to-end on this repo.Other CLI commands that use
openStoredirectly (group, scan, augment, ingest-sarif) only touchstore.graph— they don't need temporal.openStoreForCommandinopen-store.tsalready opens both views, so consumers routed through that path were unaffected.Test plan
mise run checkexit 0codehub code-packruns end-to-end on this repo (8 BOM items written)release.ymlshould green-light🤖 Generated with Claude Code