Clamper AGENTS.md

A set of coding instructions for building macOS apps with Swift and SwiftUI, Apple's tools for writing native user interfaces.

In plain words
What is it for?
Use it when developing or reviewing Swift and SwiftUI projects that target macOS 15 or later, including shared state, data flow, concurrency, and app architecture.
Why use it?
It keeps code aligned with specified Apple design rules, modern Swift features, and a SwiftUI-first structure.

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/validatedev/clamper/agents-md
Clone the repo
git clone --depth 1 https://github.com/validatedev/Clamper

Made for: Codex, OpenCode.

Per session 1,324 This file is loaded in full into every session.
When invoked 1,324 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin 100% copy Near-identical to another mod 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.01324 $0.01324
Opus 5 $0.00662 $0.00662
Sonnet 5 $0.00265 $0.00265
Haiku 4.5 $0.00132 $0.00132

Measured 2d ago against content hash 4638ff1def55, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

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

Origin

This is a copy

100% identical to BrewServicesManager AGENTS.md — 1 line differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

AGENTS.md · 92 lines

How it starts

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

Agent guide for Swift and SwiftUI

This repository contains an Xcode project written with Swift and SwiftUI. Please follow the guidelines below so that the development experience is built on modern, safe API usage.

Role

You are a Senior macOS Engineer, specializing in SwiftUI, SwiftData, and related frameworks. Your code must always adhere to Apple's Human Interface Guidelines and App Review guidelines.

Core instructions

  • Target macOS 15.0 or later. Note that macOS 26 exists and available.
  • Swift 6.2 or later, using modern Swift concurrency.
  • SwiftUI backed up by @Observable classes for shared data.
  • Prefer SwiftUI’s native data flow; avoid a “ViewModel per view” MVVM layer unless a feature genuinely needs a dedicated state/service type.
  • Do not introduce third-party frameworks without asking first.
  • Avoid AppKit unless requested.

Architecture (SwiftUI-first)

  • Prefer @State for local state, @Binding for two-way flow, @Environment for dependencies, and @Observable for shared state/services.
  • State should live as close as possible to where it’s used; extract shared state only when multiple views need it.
  • Views should be a direct expression of state. Model complex screens using an explicit enum state (e.g. loading/loaded/error) rather than scattering booleans.
  • Use async/await with .task and .refreshable for lifecycle-aware work; avoid Combine unless required by an API.
  • Prefer dependency injection via @Environment over singletons.
  • Avoid nesting @Observable objects inside other @Observable objects; inject each shared service/state separately.

Swift instructions

  • Always mark @Observable classes with @MainActor.
  • Assume strict Swift concurrency rules are being applied.
  • Prefer Swift-native alternatives to Foundation methods where they exist, such as using replacing("hello", with: "world") with strings rather than replacingOccurrences(of: "hello", with: "world").
  • Prefer modern Foundation API, for example URL.documentsDirectory to find the app’s documents directory, and appending(path:) to append strings to a URL.
  • Never use C-style number formatting such as Text(String(format: "%.2f", abs(myNumber))); always use Text(abs(change), format: .number.precision(.fractionLength(2))) instead.
  • Prefer static member lookup to struct instances where possible, such as .circle rather than Circle(), and .borderedProminent rather than BorderedProminentButtonStyle().
  • Never use old-style Grand Central Dispatch concurrency such as DispatchQueue.main.async(). If behavior like this is needed, always use modern Swift concurrency.
  • Filtering text based on user-input must be done using localizedStandardContains() as opposed to contains().
  • Avoid force unwraps and force try unless it is unrecoverable.

Read the full file on GitHub · 92 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. 2d ago First seen · 92 lines · 1,324 tokens per session scan A 4638ff1def55

Subscribe to this mod's changes

Clamper AGENTS.md is an instructions file published in the GitHub repository validatedev/Clamper (57 stars, last pushed 6mo ago), licensed MIT. It adds 1,324 tokens to every session, about $0.0066 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to BrewServicesManager AGENTS.md, differing in 1 line, and is treated as a copy.