XcodeBuildMCP AGENTS.md

Project instructions for developing and contributing to getsentry/XcodeBuildMCP, a TypeScript tool with a command-line interface and an MCP server.

In plain words
What is it for?
Use them when changing the project to find the right source areas and run its build, test, lint, formatting, and type-check commands.
Why use it?
They give contributors shared rules for architecture, code quality, formatting, type checking, building, and testing.

Instructions file for CodexOpenCode

Install

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.

agentmods
npx agentmods add instructions/getsentry/xcodebuildmcp/agents-md
Clone the repo
git clone --depth 1 https://github.com/getsentry/XcodeBuildMCP

Made for: Codex, OpenCode.

Per session 2,840 This file is loaded in full into every session.
When invoked 2,840 The same file — it is already loaded in full.
Security scan A 0 findings. 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 $0.02840 $0.02840
Opus 5 $0.01420 $0.01420
Sonnet 5 $0.00568 $0.00568
Haiku 4.5 $0.00284 $0.00284

Measured yesterday against content hash 94ae37d422ea, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

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

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

AGENTS.md · 165 lines

How it starts

The opening of the file, as written. The whole thing — 165 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Development Rules

Build & Test

  • npm run build - Build (wireit + tsup, ESM)
  • npm run test - Unit/integration tests (Vitest)
  • npm run test:smoke - Smoke tests (builds first, serial execution)
  • npm run lint / npm run lint:fix - ESLint
  • npm run format / npm run format:check - Prettier
  • npm run typecheck - TypeScript type checking (src + test config)

Architecture

ESM TypeScript project (type: module). Key layers:

  • src/cli/ - CLI entrypoint, yargs wiring, daemon routing
  • src/server/ - MCP stdio server, lifecycle, workflow/resource registration
  • src/runtime/ - Config bootstrap, session state, tool catalog assembly
  • src/core/manifest/ - YAML manifest loading, validation, tool module imports
  • src/mcp/tools/ - Tool implementations grouped by workflow (mirrors manifests/workflows/)
  • src/mcp/resources/ - MCP resource implementations
  • src/integrations/ - External integrations (Xcode tools bridge)
  • src/utils/ - Shared helpers (execution, logging, validation, responses)
  • src/visibility/ - Tool/workflow exposure predicates
  • src/daemon/ - Background daemon for persistent sessions
  • src/rendering/ - Output rendering and formatting
  • src/types/ - Shared type definitions

Contributing Workflow

  1. Create a branch from main
  2. Make changes following the conventions in this file
  3. Run the pre-commit checklist before committing:
    npm run lint:fix
    npm run typecheck
    npm run format
    npm run build
    npm test
    
  4. Update CHANGELOG.md under ## [Unreleased]
  5. Update documentation if adding or modifying features
  6. Clone and test against example projects (e.g., XcodeBuildMCP-iOS-Template) when changes affect runtime behavior
  7. Push and create a pull request with a clear description
  8. Link any related issues

Code Quality

  • No any types unless absolutely necessary
  • Check node_modules for external API type definitions instead of guessing
  • NEVER use inline imports - no await import("./foo.js"), no import("pkg").Type in type positions, no dynamic imports for types. Always use standard top-level imports.
  • NEVER remove or downgrade code to fix type errors from outdated dependencies; upgrade the dependency instead
  • Always ask before removing functionality or code that appears to be intentional
  • Do not add fallback behavior by default. If required context, configuration, runtime state, or dependencies are missing, fail loudly and fix the caller/setup instead of silently switching to an alternate path. Add a fallback only when explicitly requested or when it is a documented product requirement.
  • Review the complete merge-base diff and trace changed or reused helper contracts, including error and sentinel returns, through callers, consumers, tests, and operational configuration.
  • Verify standard quality commands include every changed path and exercise exact entry points and argument variants; validate explicitly when they do not.
  • For asynchronous, workflow, or process-boundary changes, enumerate lifecycle states, retries, supersession, and race transitions; test terminal outcomes and missing or optional metadata.

Read the full file on GitHub · 165 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. yesterday First seen · 165 lines · 2,840 tokens per session scan A 94ae37d422ea

Subscribe to this mod's changes

XcodeBuildMCP AGENTS.md is an instructions file published in the GitHub repository getsentry/XcodeBuildMCP (6,316 stars, last pushed yesterday), licensed MIT. It adds 2,840 tokens to every session, about $0.0142 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-30.