Borrowing it
Nothing to install: this file belongs to Koshimizu-Takehito/my-toybox. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/Koshimizu-Takehito/my-toybox/develop/.claude/commands/new-screen.mdgit clone --depth 1 https://github.com/Koshimizu-Takehito/my-toyboxWrote 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.
[](https://agentmods.dev/commands/koshimizu-takehito/my-toybox/new-screen)<a href="https://agentmods.dev/commands/koshimizu-takehito/my-toybox/new-screen"><img src="https://agentmods.dev/badge/commands/koshimizu-takehito/my-toybox/new-screen/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.
<a href="https://agentmods.dev/commands/koshimizu-takehito/my-toybox/new-screen"><img src="https://agentmods.dev/badge/commands/koshimizu-takehito/my-toybox/new-screen.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.01055 |
| Opus 5 | $0.00000 | $0.00528 |
| Sonnet 5 | $0.00000 | $0.00211 |
| Haiku 4.5 | $0.00000 | $0.00105 |
Grade A, and why
new-screen 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 7d 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.
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.
New Screen Creator
Create a new visual effects screen for MyToybox with all required files and metadata.
Task
You are the screen-creator agent. Your mission is to create a complete, build-ready screen implementation following MyToybox's conventions.
Steps
-
Gather Requirements
- Ask the user for the screen name (UpperCamelCase, e.g., "ParticleExplosion")
- Ask which tags apply:
layout,animation,metal(can be multiple) - Ask if a Metal shader is needed (yes/no)
- Ask for a brief description (English or Japanese)
-
Validate Naming
- Ensure screen name is UpperCamelCase
- Convert to lowerCamelCase for the enum case ID (e.g., "ParticleExplosion" → "particleExplosionScreen")
- Verify the ID doesn't already exist in
Packages/Sources/AppScreens/AppScreen.swift
-
Update AppScreen.swift
- Read
Packages/Sources/AppScreens/AppScreen.swift - Add new case to the
enum AppScreenin lowerCamelCase with "Screen" suffix:case particleExplosionScreen - The
@Screensand@Metadatasmacros will automatically generate the required conformances
- Read
-
Create SwiftUI View File
- Create directory:
Packages/Sources/Screens/{ScreenName}/ - Create file:
{ScreenName}Screen.swift - Use this template:
import SwiftUI @Metadata(title: "{Title}", description: "{Description}", tags: [{tags}]) public struct {ScreenName}Screen: View { public init() {} public var body: some View { // TODO: Implement your view } } #Preview { {ScreenName}Screen() }
- Create directory:
-
Create Thumbnail File
- Create file:
{ScreenName}Screen+Thumbnail.swiftin the same directory - Every screen must provide a thumbnail — the default implementation returns an empty view
- Use this template (no shader):
import SwiftUI extension {ScreenName}Screen { @ViewBuilder static func thumbnail(isScrolling _: Bool, time _: TimeInterval) -> some View { // TODO: Implement thumbnail Text("{ScreenName}") .font(.caption2) .fontWeight(.bold) } } #Preview { {ScreenName}Screen.thumbnail .colorScheme(.dark) }
- Create file:
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.
- 7d ago First seen · 137 lines · 0 tokens per session scan A 28fd11d1bced
new-screen is a command published in the GitHub repository Koshimizu-Takehito/my-toybox (117 stars, last pushed 2mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,055 tokens. 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.
Other commands, from other repositories
ask
Ask a question about iOS/Swift development - routes to the right Axiom skill or agent.
modernize
Migrate legacy iOS patterns to modern equivalents (launches modernization-helper agent).
initialize-ios
Manual override: initialize ast-index for iOS/Swift/ObjC project.
kmp-implement-feature
KMP Agent Skills — build a new KMP feature end-to-end, layer by layer, with the full Koin 4 / Ktor 3 / SQLDelight 2 / CMP 1.11 stack wired correctly from the start.
create-activity
Generate a Jetpack Compose screen with proper architecture.
swift-new
Create new Swift project or component.