Reclassify bootstrap agent from separate group to core group#129
Open
ManuelKugelmann wants to merge 3 commits into
Open
Reclassify bootstrap agent from separate group to core group#129ManuelKugelmann wants to merge 3 commits into
ManuelKugelmann wants to merge 3 commits into
Conversation
The bootstrap agent is used by live-chat and benefits from being seeded by default with the core group instead of requiring --group bootstrap. https://claude.ai/code/session_01Km9ReXytfsZ9JANK6KuUPD
Bootstrap agent needs its own group so `augur agents --bootstrap` seeds it on-demand (with Qwen models) rather than always with core. The --bootstrap flag now also passes --group bootstrap so core + bootstrap agents are seeded together (bootstrap delegates to L1 data agents which are in core). Removed bootstrap from live-chat edges — users invoke bootstrap directly, not via chat handoff. https://claude.ai/code/session_01Km9ReXytfsZ9JANK6KuUPD
--mode was redundant: continuous was the default, and bootstrap is now a single --bootstrap flag that both adds the bootstrap group and selects the Qwen models file. --models-file still available for full manual control. https://claude.ai/code/session_01Km9ReXytfsZ9JANK6KuUPD
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
This PR reclassifies the bootstrap agent from its own separate group to the core agent group, simplifying the agent group structure.
Key Changes
"bootstrap"group to"core"group inagents.json"bootstrap"from the set of valid agent groups across the codebaseseed-agents.pyto only recognize three valid groups: core, trading, and newsImplementation Details
The bootstrap agent's functionality and behavior remain unchanged—only its organizational classification has been updated. All references to the bootstrap group as a separate entity have been consolidated into the core group, reducing the number of agent group categories from four to three.
https://claude.ai/code/session_01Km9ReXytfsZ9JANK6KuUPD