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
| #!/usr/bin/env -S uv run --script | |
| # /// script | |
| # requires-python = ">=3.8" | |
| # dependencies = [ | |
| # "requests>=2.31.0", | |
| # "rich>=13.0.0", | |
| # ] | |
| # /// | |
| """ | |
| Fetch complete Claude Code documentation from Anthropic docs site |
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
| #!/usr/bin/env bash | |
| function display_help { | |
| echo "Usage: $0 [options] [directory]" | |
| echo | |
| echo "Options:" | |
| echo " -h, --help Display this help message" | |
| echo " -e, --extension Filter files by extension (comma-separated)" | |
| echo " -n, --name Filter files by name (regex pattern)" | |
| echo " -t, --no-tree Do not print the tree list of included files" |