signalbox: Skill for Claude Code

.claude/skills/ios-settings-patterns/SKILL.md

ios-settings-patterns is a skill for Claude Code from dwmkerr/signalbox. It costs 68 tokens per session (1,969 once invoked), scanned A, original, MIT.

A design guide for settings controls and status text in macOS and iOS apps. It explains which control shape fits each kind of option and where task-specific controls should live.

In plain words
What is it for?
It helps design or change controls in macOS Settings windows, iOS Settings tabs, and panes that pair a control with live status.
Why use it?
It helps avoid confusing settings screens where long explanations compensate for unclear labels or the wrong control. It also helps keep unrelated options out of the main settings area.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: mentions subagents.

This is dwmkerr/signalbox's own configuration. It tells Claude Code how to work on signalbox itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything signalbox configures →

Reuse

Borrowing it

Nothing to install: this file belongs to dwmkerr/signalbox. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/dwmkerr/signalbox/main/.claude/skills/ios-settings-patterns/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/dwmkerr/signalbox

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-settings-patterns

README.md
[![agentmods](https://agentmods.dev/badge/skills/dwmkerr/signalbox/ios-settings-patterns/github.svg)](https://agentmods.dev/skills/dwmkerr/signalbox/ios-settings-patterns)
Your own site
<a href="https://agentmods.dev/skills/dwmkerr/signalbox/ios-settings-patterns"><img src="https://agentmods.dev/badge/skills/dwmkerr/signalbox/ios-settings-patterns/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for ios-settings-patterns

Your own site · 80×15
<a href="https://agentmods.dev/skills/dwmkerr/signalbox/ios-settings-patterns"><img src="https://agentmods.dev/badge/skills/dwmkerr/signalbox/ios-settings-patterns.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 68 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,969 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Rogue Agent · line 32
    Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
    Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
  • medium Rogue Agent · line 141
    Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
    Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
How audits are shown
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.00068 $0.01969
Opus 5 $0.00034 $0.00984
Sonnet 5 $0.00014 $0.00394
Haiku 4.5 $0.00007 $0.00197

Measured 5d ago against content hash 7fd4e5a06b64, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

ios-settings-patterns 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/skills/ios-settings-patterns/SKILL.md · 166 lines

How it starts

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

Settings patterns

Covers macOS and iOS. Most of it is macOS because that is where signalbox's settings window lives; the iOS notes are marked.

Read this before adding a control. The recurring failure in this project is not bad copy, it is reaching for a checkbox plus a paragraph when the problem wanted a different shape entirely.

The one rule that catches most mistakes

A settings pane is controls, not prose. If a control needs a paragraph to explain it, the paragraph is a symptom: either the label is wrong, the shape is wrong, or the explanation belongs in the docs. Apple's own guidance is blunt about it:

Minimize the number of settings you offer. Although people appreciate having control over an app, too many settings can make the experience feel less approachable, while also making it hard to find a particular setting.

Corollary that decides a surprising number of arguments:

When possible, prefer letting people modify task-specific options without going to your settings area.

If the option only matters while looking at a particular view, it belongs in that view. This is why signalbox's jumplist filter does not belong in Settings.

Pick the shape from the problem

The problem The shape Precedent
A binary that needs no explanation Checkbox, label says it all, no caption Any macOS app
A binary with one non-obvious consequence Checkbox plus ONE caption line System Settings throughout
A choice between 2-4 exclusive modes Radio buttons, one caption line each Little Snitch operation mode
A choice between many peers List or table, not radios Sharing pane
A background job with progress and results Toggle in Settings; progress in the surface that uses it Spotlight, Photos, iCloud Drive, Alfred
Something needing verification before use Field plus an explicit Test button WireGuard, Zotero sync
Diagnostics Help menu, or a separated button group. Never an inline hyperlink ~10 of 10 apps surveyed

Read the full file on GitHub · 166 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 · 166 lines · 68 tokens per session scan A 7fd4e5a06b64

Subscribe to this mod's changes

ios-settings-patterns is a skill published in the GitHub repository dwmkerr/signalbox (20 stars, last pushed 3d ago), licensed MIT. It adds 68 tokens to every session and 1,969 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-09-04.

Related

Other skills, from other repositories

ui-mobile

Mobile UI patterns - React Native, iOS/Android, touch targets.

alinaqi/maggy · 17 tokens

app-ui-design

Mobile app UI design expert for iOS and Android. Use when designing app interfaces, creating design systems, ensuring accessibility, or following platform guidelines. Covers Material Design 3, Human Interface Guidelines, color theory, typography, and 2025 trends.

majiayu000/spellbook · 54 tokens

ijfw-ui-spec

Use when the user says: 'ui spec', 'design contract', 'ui audit setup', 'lock the design', 'visual contract', 'ui review setup', or '/ijfw-ui-spec'. Produces UI-SPEC.md as the visual design contract before any frontend or visual-artifact build, and dispatches ijfw-ui-auditor as the final 6-pillar gate.

FerroxLabs/ijfw · 83 tokens

hig

Applies Human Interface Guidelines (HIG) principles — Hierarchy, Harmony, and Consistency — to UI/UX designs to ensure intuitive and cohesive interfaces / Menerapkan prinsip Human Interface Guidelines (HIG) — Hierarchy, Harmony, dan Consistency — pada desain UI/UX untuk memastikan antarmuka yang intuitif dan kohesif.

roedyrustam/vibes-plug · 74 tokens

ijfw-design

Use when the user says: 'design', 'redesign', 'UI', 'UX', 'dashboard', 'page', 'component', 'make it look better', 'polish', 'pretty', 'professional', 'user experience', 'layout', 'visual', 'accessibility', 'colors', 'typography', 'brand'.

FerroxLabs/ijfw · 72 tokens

app-icon-studio

Apple app icons: create, generate, evaluate, export, install, or debug iOS AppIcon.appiconset and macOS .icns assets for small-size clarity.

Xopoko/build-swift-apps · 40 tokens