feat: add --division flag for selective agent installation#157
Open
kienbui1995 wants to merge 1 commit intomsitarzewski:mainfrom
Open
feat: add --division flag for selective agent installation#157kienbui1995 wants to merge 1 commit intomsitarzewski:mainfrom
kienbui1995 wants to merge 1 commit intomsitarzewski:mainfrom
Conversation
Adds --division flag to install.sh allowing users to install agents from specific divisions only, instead of all agents. Usage: ./scripts/install.sh --tool claude-code --division engineering ./scripts/install.sh --tool copilot --division engineering,design Works across all supported tools: - claude-code/copilot: filters source directories directly - cursor/antigravity/gemini-cli/opencode/openclaw: filters by agent slug Closes msitarzewski#134
Owner
|
Hey @kienbui1995 — love this feature, it's a commonly requested one (see #134). The implementation is clean and backward-compatible. One thing before we merge: # scripts/lib.sh
slugify() { ... }
get_field() { ... }
get_body() { ... }Then both Otherwise this is good to go! |
This was referenced Mar 12, 2026
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.
Closes #134
What
Adds a
--divisionflag toinstall.shso users can install agents from specific divisions only, instead of all 120 agents.Usage
How It Works
Test Results
Per-division breakdown (all verified)
Changes
scripts/install.sh(+84 lines)--divisionflag parsing with validationactive_divisions(),slug_allowed()filtering helpers