Remove export, init, and completions commands; add dry-run flags#4
Merged
Binb1 merged 1 commit intofeat/ags-v0from Apr 4, 2026
Merged
Remove export, init, and completions commands; add dry-run flags#4Binb1 merged 1 commit intofeat/ags-v0from
Binb1 merged 1 commit intofeat/ags-v0from
Conversation
…ersion - Remove `init`, `export`, `completions` from shell completions since those commands don't exist yet — tab-completing them gave Unknown command - Add missing `--dry-run` to grab/rm completions - Remove broken completions generation step from build.ts (it called a non-existent `completions` subcommand, silently failing via .quiet()) - Read VERSION from package.json instead of hardcoding in index.ts https://claude.ai/code/session_017bCbeFBwAH8ZcBP4YXLwiF
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.
This PR simplifies the AGS CLI by removing three commands and adding preview functionality to existing commands.
Summary
Removed the
export,init, andcompletionscommands from the CLI, along with their associated shell completion definitions and build-time generation logic. Added--dry-runflags to thegrabandrmcommands to preview changes before applying them. Updated version management to read from package.json for consistency.Key Changes
export,init, andcompletionsfrom all completion files and command handling--dry-runflag tograbcommand to preview skill installation without writing files--dry-runflag tormcommand to preview deletions without removing filesImplementation Details
completionscommand, simplifying the build pipelinehttps://claude.ai/code/session_017bCbeFBwAH8ZcBP4YXLwiF