Borrowing it
Nothing to install: this file belongs to ahmed3elshaer/everything-claude-code-mobile. 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/ahmed3elshaer/everything-claude-code-mobile/main/.opencode/commands/mobile-checkpoint.mdgit clone --depth 1 https://github.com/ahmed3elshaer/everything-claude-code-mobileWrote 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/ahmed3elshaer/everything-claude-code-mobile/mobile-checkpoint)<a href="https://agentmods.dev/commands/ahmed3elshaer/everything-claude-code-mobile/mobile-checkpoint"><img src="https://agentmods.dev/badge/commands/ahmed3elshaer/everything-claude-code-mobile/mobile-checkpoint.svg" alt="Measured on agentmods" 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.00021 | $0.00926 |
| Opus 5 | $0.00010 | $0.00463 |
| Sonnet 5 | $0.00004 | $0.00185 |
| Haiku 4.5 | $0.00002 | $0.00093 |
Grade A, and why
mobile-checkpoint 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 8d 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 — 153 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Mobile Checkpoint Command
Save and restore Android project state at critical points during development.
Usage
/mobile-checkpoint save [name] # Save current state
/mobile-checkpoint list # List all checkpoints
/mobile-checkpoint restore <name> # Restore a checkpoint
/mobile-checkpoint delete <name> # Delete a checkpoint
/mobile-checkpoint export <name> # Export checkpoint to file
/mobile-checkpoint import <file> # Import checkpoint from file
Examples
# Save before risky refactor
/mobile-checkpoint save before-mvi-refactor
# Save before Gradle updates
/mobile-checkpoint save before-gradle-update
# List available checkpoints
/mobile-checkpoint list
# Restore after failed experiment
/mobile-checkpoint restore before-mvi-refactor
# Export for sharing
/mobile-checkpoint export working-state > checkpoint.json
What Gets Saved
Build State
- Current build variant (debug/release/staging)
- Gradle dependency versions
- Build configuration files
- ProGuard rules
Test State
- Last test run results
- Test coverage per module
- Failing test list
- Flaky test history
Code State
- Current git commit
- Staged and unstaged changes
- Branch name
- Recent file modifications
Compose State
- Recent Compose preview changes
- UI component modifications
- Navigation graph state
Manifest State
- Declared permissions
- Activity/Service declarations
- Deep link configurations
Checkpoint Structure
{
"name": "before-mvi-refactor",
"timestamp": "2026-02-03T10:30:00Z",
"git": {
"branch": "feature/auth",
"commit": "abc123",
"status": "clean",
"staged": [],
"unstaged": []
},
"build": {
"variant": "debug",
"gradleVersion": "8.2",
"kgpVersion": "1.9.20",
"dependencies": { ... }
},
"tests": {
"lastRun": "2026-02-03T10:25:00Z",
"passed": 142,
"failed": 3,
"coverage": "78%"
},
"manifest": {
"permissions": ["INTERNET", "ACCESS_NETWORK_STATE"],
"activities": 12,
"services": 3
},
"compose": {
"screens": 24,
"previews": 18,
"recentChanges": ["HomeScreen.kt", "ProfileScreen.kt"]
},
"instincts": { ... }
}
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.
- 8d ago First seen · 153 lines · 21 tokens per session scan A 2aa83cb23885
mobile-checkpoint is a command published in the GitHub repository ahmed3elshaer/everything-claude-code-mobile (66 stars, last pushed 2mo ago), licensed MIT. It adds 21 tokens to every session and 926 once invoked, about $0.0001 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.
Other commands, from other repositories
app-store-audit
Run an enterprise pre submission compliance audit on an iOS or Android app against Apple App Store and Google Play rejection rules. Pass a project path or run from the project root.
run-tests
Run tests, debug failures, or audit test quality (launches test-runner agent).
fix-build
Diagnose and fix Xcode build failures (launches build-fixer agent).
checklist
Generate a custom checklist for the current feature based on user requirements.
clarify
Identify underspecified areas in the current feature spec by asking up to 5 highly targeted clarification questions and encoding answers back into the spec.
specify
Create or update the feature specification from a natural language feature description.