Feature/glob scan - #2
Merged
Merged
Conversation
This commit changes the default behavior of the `--find` command to return context-windowed output (3 lines above and below each match) instead of full file contents. A new `--full` flag is added to allow users to opt into the previous full-file behavior. Updates include modifications to the CLI parser, main execution logic, and documentation across README.md, SKILL.md, and integration tests to reflect these changes and ensure backward compatibility.
This commit introduces brace expansion for the `--glob` option, allowing users to specify multiple file extensions in a single argument (e.g., `-g "*.{ts,tsx}"`). The implementation includes updates to the glob resolution logic, CLI help text, and documentation in SKILL.md. Integration tests have been added to ensure the new functionality works as expected and is equivalent to using multiple `-g` flags.
This commit refines the README documentation by consolidating glob patterns using brace expansion (e.g., `*.{ts,tsx}`) and clarifying the usage of the `--find` command with proper syntax for logical OR (`|`). The changes enhance readability and ensure consistency across examples, improving user guidance for command usage.
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.
Allow users to write
*.{ts,tsx}orsrc/**/*.{js,jsx,ts,tsx}as a single-gvalue instead of repeating--globfor every extension.