Borrowing it
Nothing to install: this file belongs to design-and-deliver/claude-code-autoconfig. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/design-and-deliver/claude-code-autoconfig/main/.claude/commands/gls.mdgit clone --depth 1 https://github.com/design-and-deliver/claude-code-autoconfigWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/commands/design-and-deliver/claude-code-autoconfig/gls)<a href="https://agentmods.dev/commands/design-and-deliver/claude-code-autoconfig/gls"><img src="https://agentmods.dev/badge/commands/design-and-deliver/claude-code-autoconfig/gls.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.01655 |
| Opus 5 | $0.00000 | $0.00827 |
| Sonnet 5 | $0.00000 | $0.00331 |
| Haiku 4.5 | $0.00000 | $0.00166 |
Grade C, and why
gls scanned grade C with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Hidden instructionshighPrompt injection
Directives inside HTML comments, invisible characters or bidirectional overrides are read by the model and not by the person reviewing the file.
<!-- @description Get the latest screenshot(s) and display them. --> How it starts
The opening of the file, as written. The whole thing — 132 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Get the latest screenshot(s) and display them.
Usage:
/gls- Get and display the most recent screenshot/gls-2- Get and display the 2 most recent screenshots/gls-3- Get and display the 3 most recent screenshots/gls-N- Get and display the N most recent screenshots/gls /path/to/dir- Use a specific directory and save it
Step 1: Check for saved path
Read .claude/cca.config.json in the project root. If it exists and contains a gls.screenshotDir value, use that path and skip to Step 3.
Also note gls.maxEdge from the same file if present (default 1280) — you'll use it in Step 4b to shrink oversized screenshots before Reading them. A value of 0 disables downscaling.
If the file doesn't exist or the key is missing, continue to Step 2.
Step 2: Detect screenshot directory
If the user provides a path as an argument (e.g., /gls /path/to/dir), use that path and skip to Step 2b.
Otherwise, detect the OS and find the screenshot directory. Run this single Bash command which finds all candidate directories and reports the newest screenshot in each:
OS=$(uname -s); echo "OS=$OS"; for d in \
"$HOME/OneDrive/Pictures/Screenshots"* \
"$HOME/Pictures/Screenshots" \
"$HOME/Desktop" \
"$HOME/Pictures" \
"$HOME/Videos/Captures"; do \
[ -d "$d" ] || continue; \
newest=$(ls -t "$d/" 2>/dev/null | grep -iE '\.(png|jpg|jpeg|bmp|webp|gif)$' | head -1); \
if [ -n "$newest" ]; then \
echo "HAS_IMAGES: $d | newest: $newest"; \
else \
echo "EMPTY: $d"; \
fi; \
done; \
[ "$OS" = "Darwin" ] && defaults read com.apple.screencapture location 2>/dev/null && echo "(macos-custom)"; \
[ "$OS" = "Linux" ] && [ -n "$XDG_PICTURES_DIR" ] && [ -d "$XDG_PICTURES_DIR/Screenshots" ] && echo "EXISTS: $XDG_PICTURES_DIR/Screenshots"
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 6d ago First seen · 132 lines · 0 tokens per session scan C 1199f48269ff
gls is a command published in the GitHub repository design-and-deliver/claude-code-autoconfig (2 stars, last pushed 2d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,655 tokens. A static security scan graded it C with 1 finding (hidden instructions). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other commands, from other repositories
checklist
Generate a custom checklist for the current feature based on user requirements.
clarify
Identify underspecified areas in the current feature spec by asking up to 5 highly targeted clarification questions and encoding answers back into the spec.
specify
Create or update the feature specification from a natural language feature description.
analyze
Perform a non-destructive cross-artifact consistency and quality analysis across spec.md, plan.md, and tasks.md after task generation.
converge
Assess the current codebase against the feature's spec, plan, and tasks, then append any remaining unbuilt work as new tasks to tasks.md so implement can complete it.
implement
Execute the implementation plan by processing and executing all tasks defined in tasks.md.