chore(deps): require amplifier-agent 0.15.0 - #25
Merged
Conversation
0.15.0 is the first version where the agent owns its own storage tree. It binds AMPLIFIER_HOME to ~/.amplifier-agent/foundation before importing amplifier_foundation, so module clones, provider rate-limit state and the ChatGPT OAuth token stop landing in ~/.amplifier -- a directory owned by amplifier-app-cli and shared, unnamespaced, with every other Amplifier application on the machine. On a host running both, the two were reading and writing the same clone directories. 0.15.0 also resolves floating @main module refs to concrete commits before preparing the bundle, so an upstream module fix reaches an existing install. Below this floor a machine keeps serving frozen module code that no reinstall refreshes, because the reinstall rebuilds from the same frozen clone. AGENT_PINNED_REF follows to v0.15.0, which is tagged and released upstream.
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.
Raises
MIN_AGENT_VERSIONto0.15.0;AGENT_PINNED_REFandAGENT_HARD_FLOORfollow.Why this floor moves. 0.15.0 is the first agent release that owns its own storage tree. It binds
AMPLIFIER_HOMEto~/.amplifier-agent/foundationbefore importingamplifier_foundation, so module clones, provider rate-limit state and the ChatGPT OAuth token stop landing in~/.amplifier— a directory owned by amplifier-app-cli and shared, with no per-application namespacing, with every other Amplifier application on the machine. On a host running both, they were reading and writing the same clone directories.It also resolves floating
@mainmodule refs to concrete commits before preparing the bundle. Below this floor an install stays pinned to whatevermainpointed at the day it was first set up, and no reinstall refreshes it — the reinstall rebuilds from the same frozen clone.Upstream: microsoft/amplifier-agent#142, released as
v0.15.0.Also corrects a stale comment in
tests/e2e/suites/onboarding/conftest.pythat named the previous floor.Cost: existing users are reinstalled onto
v0.15.0by the launch-time self-heal.