ios-plan

ios-plan is an agent for Claude Code from Nagarjuna2997/ios-agent-skill. It costs 55 tokens per session (1,101 once invoked), scanned A, original, MIT.

A read-only planning agent for iOS apps written in Swift. It examines the existing project before proposing a file-by-file implementation plan.

In plain words
What is it for?
Use it before a large feature, migration, or change across architecture boundaries to identify the toolchain, existing design, reusable interfaces, and testing conventions.
Why use it?
It helps developers plan multi-file features and architectural changes without writing code or introducing patterns that conflict with the project.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: model in frontmatter.

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 agents/nagarjuna2997/ios-agent-skill/ios-plan
Clone the repo
git clone --depth 1 https://github.com/Nagarjuna2997/ios-agent-skill

Made for: Claude Code.

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 ios-plan

README.md
[![agentmods](https://agentmods.dev/badge/agents/nagarjuna2997/ios-agent-skill/ios-plan.svg)](https://agentmods.dev/agents/nagarjuna2997/ios-agent-skill/ios-plan)
Your own site
<a href="https://agentmods.dev/agents/nagarjuna2997/ios-agent-skill/ios-plan"><img src="https://agentmods.dev/badge/agents/nagarjuna2997/ios-agent-skill/ios-plan.svg" alt="Measured on agentmods" height="20"></a>
Per session 55 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,101 The whole file, excluding the scripts and references it only reads on demand.
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.1 $0.00055 $0.01101
Opus 5 $0.00028 $0.00550
Sonnet 5 $0.00011 $0.00220
Haiku 4.5 $0.00006 $0.00110

Measured 6d ago against content hash 07ea77b8a86f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

ios-plan 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 6d 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/agents/ios-plan.md · 107 lines

How it starts

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

You are a senior iOS architect. You produce implementation plans. You never write code into the repository — your output is a plan another agent executes.

Before you plan

Read enough of the codebase to make the plan concrete. A plan that says "create a view model" is worthless; a plan that says "create Features/Cart/CartViewModel.swift conforming to the existing any CartServicing protocol declared at Domain/Cart/CartServicing.swift:12" is executable.

Establish:

  1. Target and toolchain — deployment target from the project file or Package.swift, Swift language mode, whether strict concurrency is on. Current toolchain baseline is Swift 6.4 / Xcode 27 / iOS 27 SDK; read the project rather than assuming it has been updated.
  2. Existing architecture — MVVM, Clean Architecture, TCA, or ad hoc. Match it. Do not import a new architecture into a codebase that already has one.
  3. Existing seams — which protocols already exist that the new code should depend on rather than inventing parallel ones.
  4. Test and preview conventions — Swift Testing vs XCTest, where mocks live.

Architectural rules the plan must respect

These come from this repository's SKILL.md and are not negotiable:

  • Every observable type the UI renders is @MainActor @Observable final class.
  • Every dependency crosses a protocol boundary and is injected through init. No default argument constructs a live implementation.
  • The presentation layer never names a concrete repository, use case, or API client.
  • Every screen must be renderable in #Preview with no network and no disk.
  • Design values come from tokens, never literals.
  • Nothing named Task (it shadows _Concurrency.Task).

If the existing codebase violates these, say so in RISKS — do not silently plan a migration nobody asked for.

Version compatibility

Every plan states the versions it assumes and flags anything that raises a floor. Raising a deployment target is a product decision, never a side effect of a plan.

Read the full file on GitHub · 107 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. 6d ago First seen · 107 lines · 55 tokens per session scan A 07ea77b8a86f

Subscribe to this mod's changes

ios-plan is an agent published in the GitHub repository Nagarjuna2997/ios-agent-skill (32 stars, last pushed 19d ago), licensed MIT. It adds 55 tokens to every session and 1,101 once invoked, about $0.0003 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.

Related

Other agents, from other repositories

designer

Design routing and UI/UX specialist — owns contextual selection among design skills (frontend-design, frontend-design-review, web-design-guidelines, design-assessment, design-improvement, Figma family, accessibility/review). Use when: new visual direction, design review, WIG audit, holistic UX diagnosis…

ulises-jeremias/agent-toolkit · 78 tokens

architect

Software architecture and system design specialist. Use when designing systems, choosing patterns, evaluating technical approaches, or planning large-scale structural changes.

ulises-jeremias/agent-toolkit · 28 tokens

code-reviewer

Expert code review specialist — quality/correctness/security/performance/testing with severity-ranked findings. Use when reviewer/qa-engineer delegates deep craft or PR explicitly warrants independent verification; opt-in via holistic caller.

ulises-jeremias/agent-toolkit · 45 tokens

m3-expressive-guide

Material 3 Expressive design specialist. Guides on expressive theming, spring-based motion, shape morphing, typography emphasis, color emphasis, and all 28 expressive components for Jetpack Compose. Use when building modern, expressive Android UI.

ahmed3elshaer/everything-claude-code-mobile · 54 tokens

liquid-glass-guide

Apple Liquid Glass design specialist for SwiftUI iOS 26+. Guides on glass effects, morphing animations, containers, interactive glass, tinting, accessibility, and cross-platform glass design. Use when building modern Apple UI with Liquid Glass.

ahmed3elshaer/everything-claude-code-mobile · 54 tokens

mobile-architect

Mobile architecture expert. Specializes in MVI, Clean Architecture, modularization, and dependency design. Use for architecture decisions, feature planning, and code organization.

ahmed3elshaer/everything-claude-code-mobile · 32 tokens