upload

upload is a command for Claude Code from omarshahine/HomeClaw. It costs 16 tokens per session (1,286 once invoked), scanned A, original, MIT.

A release command for sending a HomeClaw iOS app build to TestFlight, Apple's service for distributing beta app versions to testers. It prepares notes, creates an archive, uploads it, submits it to external testers, and monitors processing.

In plain words
What is it for?
Use it to release HomeClaw builds through App Store Connect and submit them to an external TestFlight testing group.
Why use it?
It brings the long sequence of beta-release steps into one monitored process and confirms whether the upload finishes processing.

Command for Claude Code

Part of the HomeClaw plugin — 17 skills, 4 commands shipped together

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 commands/omarshahine/homeclaw/upload
Clone the repo
git clone --depth 1 https://github.com/omarshahine/HomeClaw

Made for: Claude Code.

Or install HomeClaw, the plugin that ships this one along with the rest of its 17 skills, 4 commands.

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 upload

README.md
[![agentmods](https://agentmods.dev/badge/commands/omarshahine/homeclaw/upload.svg)](https://agentmods.dev/commands/omarshahine/homeclaw/upload)
Your own site
<a href="https://agentmods.dev/commands/omarshahine/homeclaw/upload"><img src="https://agentmods.dev/badge/commands/omarshahine/homeclaw/upload.svg" alt="Measured on agentmods" height="20"></a>
Per session 16 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,286 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 $0.00016 $0.01286
Opus 5 $0.00008 $0.00643
Sonnet 5 $0.00003 $0.00257
Haiku 4.5 $0.00002 $0.00129

Measured 3d ago against content hash 53f3d759bcd6, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

upload 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 3d 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/commands/upload.md · 92 lines

How it starts

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

Run the full TestFlight loop for HomeClaw via fastlane: generate notes, archive, upload to App Store Connect, submit to the External Testers group, tag the release, and confirm processing. The pipeline is long (8–20 min) so it MUST be run via Monitor so progress events stream into the conversation as they happen.

Pre-flight

  1. Verify the working tree is clean and on main:

    git status
    git rev-parse --abbrev-ref HEAD
    

    Abort if dirty or on a feature branch — release builds should ship from main.

  2. Check what's shipping. Generate release notes from commits since the last release tag (release tags are v{version}+{build}; the Fastfile auto-strips the +build suffix when re-archiving so a stale tag won't break it):

    LAST_TAG=$(git describe --tags --abbrev=0 --match 'v*' 2>/dev/null)
    git log --oneline "$LAST_TAG..HEAD"
    
  3. Draft tester notes to a file (NOT inline — multiline + bullet points read better, and the file persists if you need to retry the submit step). Keep it user-facing: what features they get, what bugs were fixed. Avoid commit-hash speak.

    # Write notes to /tmp/homeclaw_testflight_notes.txt
    

Run the pipeline (with Monitor)

The beta lane does: prepare (xcodegen + MCP build) → archive → export → upload → submit external. It exits non-zero on any failure. Use run_in_background so the Monitor can stream from its log file while you keep working.

fastlane beta notes_file:/tmp/homeclaw_testflight_notes.txt 2>&1 | tee /tmp/homeclaw_archive.log

Run with run_in_background: true. Then arm a Monitor to surface milestones:

tail -f /tmp/homeclaw_archive.log | grep -E --line-buffered "✓|finished successfully|Error|error|fail|FAIL|Submitting|Uploading|Build [0-9]+|TestFlight|version|warning|Traceback|EXPORT SUCCEEDED|Upload succeeded|external group"

The grep alternation MUST cover failure signatures (Error|fail|Traceback) — silence is not success.

Read the full file on GitHub · 92 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. 3d ago First seen · 92 lines · 16 tokens per session scan A 53f3d759bcd6

Subscribe to this mod's changes

upload is a command published in the GitHub repository omarshahine/HomeClaw (164 stars, last pushed 10d ago), licensed MIT. It adds 16 tokens to every session and 1,286 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.