claude-code-autoconfig: Command for Claude Code

.claude/commands/gls.md

gls is a command for Claude Code from design-and-deliver/claude-code-autoconfig. It costs 0 tokens per session (1,655 once invoked), scanned C, original, MIT.

A command that finds the newest screenshots saved on the computer and displays them. It can use a project-specific screenshot folder or detect a likely folder from the operating system.

In plain words
What is it for?
Use it to display the latest screenshot, several recent screenshots, or screenshots from a specified directory.
Why use it?
It saves time when you need to inspect the latest screen capture but do not remember where it was saved. It can also show multiple recent screenshots and resize oversized images.

Command for Claude Code

Written for Claude Code: ${CLAUDE_PROJECT_DIR variable.

This is design-and-deliver/claude-code-autoconfig's own configuration. It tells Claude Code how to work on claude-code-autoconfig itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything claude-code-autoconfig configures →

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/design-and-deliver/claude-code-autoconfig/main/.claude/commands/gls.md
Clone the repo
git clone --depth 1 https://github.com/design-and-deliver/claude-code-autoconfig

Made for: Claude Code.

Wrote 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.

agentmods badge for gls

README.md
[![agentmods](https://agentmods.dev/badge/commands/design-and-deliver/claude-code-autoconfig/gls.svg)](https://agentmods.dev/commands/design-and-deliver/claude-code-autoconfig/gls)
Your own site
<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>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,655 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 6d ago against content hash 1199f48269ff, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

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. -->
.claude/commands/gls.md · 132 lines

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"

Read the full file on GitHub · 132 lines

Changes

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.

  1. 6d ago First seen · 132 lines · 0 tokens per session scan C 1199f48269ff

Subscribe to this mod's changes

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.