Augment add-command-spec skill#206
Merged
Merged
Conversation
vkodithala
approved these changes
Mar 31, 2026
vkodithala
left a comment
There was a problem hiding this comment.
LGTM! Really excited to get the ball rolling here!
Comment on lines
+24
to
+28
| 1. Install Fish if needed (`brew install fish` on UNIX) | ||
| 2. Run: `fish -c 'complete -C "<command> "'` to see top-level completions | ||
| 3. Drill into subcommands: `fish -c 'complete -C "<command> <subcommand> "'` | ||
|
|
||
| For example, to inspect `gcloud compute ssh` completions: `fish -c 'complete -C "gcloud compute ssh w"'` (where `w` is the start of a known target). |
|
|
||
| ### Start with Fish shell completions | ||
|
|
||
| Fish maintains high-quality, community-reviewed completion definitions at https://github.com/fish-shell/fish-shell/tree/master/share/completions — look for `<command>.fish`. These are thorough and well-structured, so they're the fastest way to get a comprehensive picture of a command's subcommands and flags. Read this file first. |
There was a problem hiding this comment.
More out of curiosity, but do we want the agent to use the WebSearch tool to retrieve this file? If so, maybe it makes sense to directly say this, like "use the WebSearch tool..."
Contributor
Author
There was a problem hiding this comment.
I'm not sure we need websearch for this; I think the agent can download the source code directly using wget
|
|
||
| ## Step 2: Implement the Spec | ||
|
|
||
| 1. **Create the JSON spec**: `command-signatures/json/<command>.json` following the [Fig completion spec schema](https://fig.io/docs/reference) |
Contributor
Author
There was a problem hiding this comment.
Thank you! Removed
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 adds instructions for the research, validation and submission steps in adding a completion spec. This is meant to be a V1 to test in Linear automations.