codex-island CLAUDE.md

codex-island CLAUDE.md is an instructions file for coding agents from ericjypark/codex-island. It costs 3,186 tokens per session, scanned A, original, MIT.

Repository instructions that define the rules for working on a project, including its release steps. They cover a macOS app that updates itself and a separate marketing site.

In plain words
What is it for?
Following the required version bump, commit, tag, and push process; keeping the landing site’s version current; and checking the automated release run.
Why use it?
They prevent mistakes that could stop installed copies from updating, break automated builds, or leave the public version number out of sync.

Instructions file

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/ericjypark/codex-island/claude-md
Clone the repo
git clone --depth 1 https://github.com/ericjypark/codex-island

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 codex-island CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/ericjypark/codex-island/claude-md.svg)](https://agentmods.dev/instructions/ericjypark/codex-island/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/ericjypark/codex-island/claude-md"><img src="https://agentmods.dev/badge/instructions/ericjypark/codex-island/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 3,186 This file is loaded in full into every session.
When invoked 3,186 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.03186 $0.03186
Opus 5 $0.01593 $0.01593
Sonnet 5 $0.00637 $0.00637
Haiku 4.5 $0.00319 $0.00319

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

Security

Grade A, and why

codex-island 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 5d 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.

CLAUDE.md · 137 lines

How it starts

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

CLAUDE.md

Project-specific guardrails. Read every section before touching this repo.

Release process — MANDATORY

This app ships via Sparkle auto-update. Get any of this wrong and you brick auto-update for everyone who's already installed.

The loop (3 commands)

echo "X.Y.Z" > VERSION                                # 1. Bump
git commit -am "chore(release): bump VERSION to X.Y.Z" \
  && git tag vX.Y.Z                                   # 2. Commit + tag
git push origin main vX.Y.Z                           # 3. Push (fires CI)

The marketing landing site at ericjypark/codex-island-landing has its own VERSION file (the hero chip + footer read it at build time). Bump it in that repo too, in the same release sweep, or the public site keeps showing the prior version even after brew install ships the new one.

That's it. CI does everything else in ~1.5 min:

  • Builds the universal DMG
  • Signs it with the EdDSA key from the SPARKLE_ED_PRIVATE_KEY secret
  • Generates appcast.xml listing the new version
  • Uploads DMG + appcast as release assets
  • Mirrors the cask to ericjypark/homebrew-tap with the new version + SHA-256

Watch with gh run watch --exit-status if you want confirmation, or just trust it.

Hard rules — break these and you brick auto-update

  1. VERSION must be a single-monotonic version like 0.0.X, NOT 1 or 100 or anything weird. build.sh uses $VERSION as both CFBundleVersion and CFBundleShortVersionString. Sparkle compares CFBundleVersion of the running app against sparkle:version in the appcast using Apple's component-wise comparator — so "1" parses as [1] and is larger than "0.0.99". Stay in semver. Always increase.

  2. The Sparkle public key in build.sh (SU_PUBLIC_KEY="bz1g...") must NEVER be changed casually. Every existing install verifies updates against this exact key. Change it and every prior install rejects every future update silently. The matching private key lives in (a) the maintainer's macOS Keychain under service https://sparkle-project.org and (b) the SPARKLE_ED_PRIVATE_KEY GitHub Actions secret. To rotate, see the migration note in docs/SPARKLE.md (TL;DR: don't).

Read the full file on GitHub · 137 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. 5d ago First seen · 137 lines · 3,186 tokens per session scan A 70fa20edeeb0

Subscribe to this mod's changes

codex-island CLAUDE.md is an instructions file published in the GitHub repository ericjypark/codex-island (318 stars, last pushed 16d ago), licensed MIT. It adds 3,186 tokens to every session, about $0.0159 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.