Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add instructions/alexmx/peek/agents-mdgit clone --depth 1 https://github.com/alexmx/peekWhat 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 | $0.02078 | $0.02078 |
| Opus 5 | $0.01039 | $0.01039 |
| Sonnet 5 | $0.00416 | $0.00416 |
| Haiku 4.5 | $0.00208 | $0.00208 |
Grade A, and why
peek AGENTS.md scanned grade A with 0 findings 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 2d 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 118 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Peek
What is Peek?
Peek is a macOS CLI tool and MCP server for inspecting and automating native application windows. It provides accessibility tree inspection, element search, UI interaction (click, type, actions), menu bar control, screenshots, and app lifecycle control (launch/quit).
Project Structure
peek/
├── Package.swift # SPM manifest (macOS 15+, Swift 6.2)
├── Sources/Peek/
│ ├── Peek.swift # @main entry point, registers all subcommands
│ ├── Commands/ # One file per CLI command
│ ├── Managers/ # Core business logic (stateless enum singletons)
│ ├── Models/ # Data types (AXNode, WindowInfo, PeekError, etc.)
│ ├── MCP/
│ │ └── PeekTools.swift # MCP tool definitions, mirrors CLI 1:1
│ └── Utilities/ # AX helpers, key mapping, output formatting
Build & Run
swift build
swift run peek <command> [options]
Requirements: macOS 15+, Swift 6.2, Xcode toolchain.
Dependencies:
swift-argument-parser— CLI argument parsingswift-cli-mcp— MCP server framework
Version Management & Releases
Version Source: .peek-version file in repository root
- Single source of truth for version number (e.g.,
1.0.0ordev) Sources/Peek/Version.swiftdefinespeekVersionconstant (defaults to "dev" for local builds)- GitHub Actions reads
.peek-version, generatesVersion.swiftwith actual version, then builds release binary - CLI exposes version via
peek --version
Release Process:
- Update
.peek-versionwith new version (e.g.,1.0.0) - Commit and push to main
That's it — pushing a change to .peek-version automatically runs the "Release" workflow (.github/workflows/release.yml; also runnable manually via workflow_dispatch), which:
- Creates the git tag and builds the universal binary (skips if the tag already exists)
- Publishes the GitHub release
- Updates the Homebrew formula in the
homebrew-toolsrepository with the new version and SHA256
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.
- 2d ago First seen · 118 lines · 2,078 tokens per session scan A f2b128c4e8f1
peek AGENTS.md is an instructions file published in the GitHub repository alexmx/peek (5 stars, last pushed 1mo ago), licensed MIT. It adds 2,078 tokens to every session, about $0.0104 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
Plonk AGENTS.md
Instructions for ostapondo/Plonk, covering agent rules, layout, adding a module, build & verify and code style.
Applite CLAUDE.md
Instructions for milanvarady/Applite, covering claude.md, project overview, build & run, architecture and data flow.
wispterm AGENTS.md
Instructions for xuzhougeng/wispterm, covering agents.md, architecture, ui presentation styles, cohesion and coupling and integration layer vs feature domains.
HomeClaw AGENTS.md
Instructions for omarshahine/HomeClaw, covering homeclaw, architecture, project structure, build system and xcode version.
liney AGENTS.md
Instructions for everettjf/liney, covering liney repository collaboration guide, 交流语言 / communication language, project overview, repository layout and build and test.
best-claude-hud AGENTS.md
Instructions for GaoSSR/best-claude-hud, covering project agent instructions and release work.