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/ruchit-p/macwright/claude-mdgit clone --depth 1 https://github.com/ruchit-p/macwrightWhat 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.00807 | $0.00807 |
| Opus 5 | $0.00404 | $0.00404 |
| Sonnet 5 | $0.00161 | $0.00161 |
| Haiku 4.5 | $0.00081 | $0.00081 |
Grade A, and why
macwright CLAUDE.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 yesterday.
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 — 87 lines — stays where its author put it; the contents beside it link to each section on GitHub.
MacWright
What Is This?
MacWright is an MCP server for reliable native macOS desktop control from AI agents. It targets macOS, uses Node.js and TypeScript, and exposes tools for screenshots, mouse, keyboard, scroll, clipboard, window management, native Accessibility UI automation, Safari automation, AppleScript, shell commands, notifications, waits, and visual UI parsing.
This is not a Linux desktop automation server. The core tools depend on macOS APIs and commands such as Accessibility/System Events, AppleScript/JXA, Safari Apple Events, screencapture, pbcopy/pbpaste, and cliclick.
Key Commands
- Build:
npm run build - Portable schema validation:
npm test - Native macOS smoke tests:
npm run test:macos-smoke - Setup and permission doctor:
./setup.sh - Checks only:
./setup.sh --doctor - Open macOS Privacy panes:
./setup.sh --open-settings
Requirements
- macOS, tested on Apple Silicon.
- Node.js >= 18.
cliclick, installed by./setup.shor manually withbrew install cliclick.- Optional OmniParser server on port 8650 for
screen_parse.
Required macOS permissions are granted to the app that launches MacWright, not to MacWright itself:
- Accessibility for mouse, keyboard, scroll, native UI reads/clicks, and window control.
- Screen Recording for screenshots, visual verification,
wait_for_change, andscreen_parse. - Automation prompts for AppleScript, System Events, Safari, and app-specific control.
- Input Monitoring may be requested by macOS for some keyboard/input paths.
- Safari JavaScript from Apple Events is required for Safari JS tools.
After changing macOS privacy permissions, restart the controlling app before retesting.
Architecture
- Server entry:
src/index.ts. - Tool implementations:
src/tools/**. - Shared helpers:
src/utils/**. - Built server:
dist/index.js. - Tools are registered through
registerXxxTools(server)functions. - Tool inputs use Zod schemas; descriptions are part of the public MCP contract and should stay clear and actionable.
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.
- yesterday First seen · 87 lines · 807 tokens per session scan A 7408ce19ebfa
macwright CLAUDE.md is an instructions file published in the GitHub repository ruchit-p/macwright (0 stars, last pushed 20d ago), licensed MIT. It adds 807 tokens to every session, about $0.0040 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
barkeep AGENTS.md
Instructions for iannuttall/barkeep, covering agent notes, product rules, repo map, commands and app structure.
Loupe CLAUDE.md
Instructions for smughead/Loupe, covering claude.md, build commands, build the app (from project root), run all tests (unit + ui) and run only spm package unit tests.
blurt AGENTS.md
Instructions for AssemblyAI/blurt, covering agents.md, start here, the two layers, repository map and verifying your work.
blurt CLAUDE.md
Instructions for AssemblyAI/blurt, covering claude.md, hooks (.claude/settings.json), skills (.claude/skills/), subagents (.claude/agents/) and permissions.
OpenAra AGENTS.md
Instructions for Aradotso/OpenAra, covering openara agent guide, read first, working rules and where things live.
barkeep CLAUDE.md
Instructions for iannuttall/barkeep, a project described as: Manage hidden macOS menu bar items from one place.