chore(deps): align pi-web-search & pi-memory dev deps with Pi 0.78#18
Merged
Conversation
Bump the @earendil-works/pi-ai and pi-coding-agent dev-dependency pins from ^0.74.0 to ^0.78.0 in both extension packages so the lockfile resolves Pi 0.78.1 — the release users actually run — instead of 0.74.0. This makes typecheck and tests validate against the current Pi type surface. Runtime is unchanged: both packages still declare the Pi core libraries as "*" peer dependencies and use only stable extension APIs (registerTool, on, registerCommand, sendMessage, registerMessageRenderer, withFileMutationQueue, StringEnum, CustomMessageComponent). Verified green against 0.78.1: - pi-web-search: lint + format + typecheck + 29 tests - pi-memory: lint + format + typecheck + 68 tests (incl. pi-types compat test) Patch bumps (dev-tooling only): pi-web-search 0.5.0 -> 0.5.1, pi-memory 0.2.0 -> 0.2.1. Co-Authored-By: Claude Opus 4.8 (1M context) <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
Refreshes the dev-dependency pins for the two code packages so their toolchain validates against the Pi release users actually run. Both packages pinned
@earendil-works/pi-ai/@earendil-works/pi-coding-agentat^0.74.0, which for a0.xcaret caps below0.75.0— so the lockfile resolved Pi 0.74.0 while the current published Pi is 0.78.1.This is a dev-tooling-only change. Runtime behavior is unchanged: both extensions still declare the Pi core libraries as
"*"peer dependencies and use only stable extension APIs. No source changes were required.Changes
pi-web-search: dev deps^0.74.0→^0.78.0; version0.5.0→0.5.1pi-memory: dev deps^0.74.0→^0.78.0; version0.2.0→0.2.1pnpm-lock.yaml: Pi dev deps now resolve to0.78.1(4 importer specifiers)Verification (against Pi 0.78.1)
pnpm installthen fullcheck(lint + format + typecheck + test) for each:pi-web-searchpi-memorypi-typescompat test)pnpm run validate:packagesandpack:checkfor both also pass. The clean typecheck + test run confirms the extension API surface these packages use is unchanged across Pi 0.75–0.78.Why patch (not minor)
The published artifacts' runtime is identical — only the dev-dependency pins in the manifest move — so this is a maintenance patch, not a feature release.
🤖 Generated with Claude Code