axiom-app-composition

axiom-app-composition is a skill for Claude Code, Codex from ComeOnOliver/skillshub. It costs 73 tokens per session (9,289 once invoked), scanned A, original, MIT.

A guide to structuring the top-level parts of an iOS app, including its launch point, login flow, root screen, and lifecycle. It also covers restoring app state and splitting large apps into modules.

In plain words
What is it for?
Use it to design login-to-onboarding-to-main-screen flows, handle background and foreground changes, restore state after termination, and decide when to split features into modules.
Why use it?
It helps prevent scattered login logic, launch-screen flicker, and unclear ownership of app-wide state.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: positional $N argument.

Good fit Use it to design login-to-onboarding-to-main-screen flows, handle background and foreground changes, restore state after termination, and decide when to split features into modules.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/comeonoliver/skillshub/axiom-app-composition
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.

Any agent
npx skills add ComeOnOliver/skillshub --skill axiom-app-composition
Clone the repo
git clone --depth 1 https://github.com/ComeOnOliver/skillshub

Made for: Claude Code, Codex.

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 axiom-app-composition

README.md
[![agentmods](https://agentmods.dev/badge/skills/comeonoliver/skillshub/axiom-app-composition/github.svg)](https://agentmods.dev/skills/comeonoliver/skillshub/axiom-app-composition)
Your own site
<a href="https://agentmods.dev/skills/comeonoliver/skillshub/axiom-app-composition"><img src="https://agentmods.dev/badge/skills/comeonoliver/skillshub/axiom-app-composition/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 axiom-app-composition

Your own site · 80×15
<a href="https://agentmods.dev/skills/comeonoliver/skillshub/axiom-app-composition"><img src="https://agentmods.dev/badge/skills/comeonoliver/skillshub/axiom-app-composition.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 73 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 9,289 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
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.00073 $0.09289
Opus 5 $0.00036 $0.04645
Sonnet 5 $0.00015 $0.01858
Haiku 4.5 $0.00007 $0.00929

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

Security

Grade A, and why

axiom-app-composition scanned grade A with 1 finding 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

item = await ItemService.fetch(itemID)
skills/CharlesWiltgen/Axiom/axiom-app-composition/SKILL.md · 1,464 lines

How it starts

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

App Composition

When to Use This Skill

Use this skill when:

  • Structuring your @main entry point and root view
  • Managing authentication state (login → onboarding → main)
  • Switching between app-level states without flicker
  • Handling scene lifecycle events (scenePhase)
  • Restoring app state after termination
  • Deciding when to split into feature modules
  • Coordinating between multiple windows (iPad, axiom-visionOS)

Example Prompts

What You Might Ask Why This Skill Helps
"How do I switch between login and main screens?" AppStateController pattern with validated transitions
"My app flickers when switching from splash to main" Flicker prevention with animation coordination
"Where should auth state live?" App-level state machine, not scattered booleans
"How do I handle app going to background?" scenePhase lifecycle patterns
"When should I split my app into modules?" Decision tree based on codebase size and team
"How do I restore state after app is killed?" SceneStorage and state validation patterns

Quick Decision Tree

What app-level architecture question are you solving?
│
├─ How do I manage app states (loading, auth, main)?
│  └─ Part 1: App-Level State Machines
│     - Enum-based state with validated transitions
│     - AppStateController pattern
│     - Prevents "boolean soup" anti-pattern
│
├─ How do I structure @main and root view switching?
│  └─ Part 2: Root View Switching Patterns
│     - Delegate to AppStateController (no logic in @main)
│     - Flicker prevention with animation
│     - Coordinator integration
│
├─ How do I handle scene lifecycle?
│  └─ Part 3: Scene Lifecycle Integration
│     - scenePhase for session validation
│     - SceneStorage for restoration
│     - Multi-window coordination
│
├─ When should I modularize?
│  └─ Part 4: Feature Module Basics
│     - Decision tree by size/team
│     - Module boundaries and DI
│     - Navigation coordination
│
└─ What mistakes should I avoid?
   └─ Part 5: Anti-Patterns + Part 6: Pressure Scenarios
      - Boolean-based state
      - Logic in @main
      - Missing restoration validation

Read the full file on GitHub · 1,464 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 · 1,464 lines · 73 tokens per session scan A d4d5b5d50cbc

Subscribe to this mod's changes

axiom-app-composition is a skill published in the GitHub repository ComeOnOliver/skillshub (63 stars, last pushed 2mo ago), licensed MIT. It adds 73 tokens to every session and 9,289 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.