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.
npx agentmods add skills/termio-sh/termio/testflight-releasenpx skills add termio-sh/termio --skill testflight-releasegit clone --depth 1 https://github.com/termio-sh/termioWhat 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 | $0.00102 | $0.02585 |
| Opus 5 | $0.00051 | $0.01293 |
| Sonnet 5 | $0.00020 | $0.00517 |
| Haiku 4.5 | $0.00010 | $0.00259 |
Grade B, and why
testflight-release scanned grade B 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 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.
Asks for rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
mkdir -p ~/Library/Developer/asc-signing/termio && chmod 700 ~/Library/Developer/asc-signing/termio How it starts
The opening of the file, as written. The whole thing — 215 lines — stays where its author put it; the contents beside it link to each section on GitHub.
TestFlight release (iOS companion)
Cuts a TestFlight build of TermioMobile by hand. Unlike the Mac app, this is
not automated: .github/workflows has no upload step, so nothing happens when
a PR merges. Every TestFlight build is a local archive + upload.
Use the asc skill for anything beyond this path (crash triage, App Store
submission, metadata). This skill is only the beta-build pipeline, with the
repo-specific facts that asc cannot know.
Constants
| Thing | Value |
|---|---|
| App ID | 6790142237 (sh.termio.mobile, "Termio: Agentic Terminal") |
| Bundle ID resource | 97KQ9JGYL8 |
| Team | 5Y27G7B6D8, from ios/Signing.xcconfig — not the project file |
| Internal group | 7b62f012-b166-40df-ba19-e43c3a0b2c88 |
| Public Beta group | fe170244-643a-4c73-9c94-84ab44c254f9 (external, public link) |
| Signing assets | ~/Library/Developer/asc-signing/termio/ (mode 700, outside the repo) |
The build number in the repo is a lie
CURRENT_PROJECT_VERSION in ios/TermioMobile.xcodeproj/project.pbxproj sits at
an old value (285 at the time of writing) while App Store Connect is in the
700s. That is deliberate: the bump is applied for the archive and then thrown
away.
Never commit the bump. Resolve it against ASC, build, upload, revert:
cd ios
asc xcode version edit --next-build-number --app 6790142237 --platform IOS \
--project TermioMobile.xcodeproj --output json
# ... archive, export, upload ...
git checkout -- TermioMobile.xcodeproj/project.pbxproj
Uploading a build number at or below the highest one in ASC is rejected, so never guess it from the repo.
Steps
Run from a clean worktree on the commit you want to ship (normally main).
-
Bump — the command above. It reports the number it chose.
-
Archive (Release, signed for distribution):
cd ios asc xcode archive \ --project TermioMobile.xcodeproj --scheme TermioMobile \ --configuration Release --clean \ --archive-path .asc/artifacts/TermioMobile.xcarchive \ --xcodebuild-flag=-destination --xcodebuild-flag=generic/platform=iOS \ --xcodebuild-flag=-allowProvisioningUpdates --output json
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.
- 3d ago First seen · 215 lines · 102 tokens per session scan B bca67607523f
testflight-release is a skill published in the GitHub repository termio-sh/termio (359 stars, last pushed 4d ago), licensed MIT. It adds 102 tokens to every session and 2,585 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
changelog-generation
Changelog generation skill for ZeroClaw releases. Use this skill when the user wants to generate a changelog, prepare release notes, or summarize what changed between versions. Trigger on: 'generate changelog', 'changelog for v0.7.x', 'prepare release notes', 'what changed since ', 'write the changelog'…
release-readiness
Assesses ship-readiness for .NET MAUI release branches — Servicing Releases (SR) and Previews — and produces public-safe, copy-ready release handoffs or Loop-page drafts from the resulting evidence. Use for readiness verdicts, release blockers, Preview/SR status, release handoff pages, manual validation instructions…
canvas
Display, present, and render HTML content on connected Otto nodes (Mac app, iOS, Android). Show on device, preview on mobile, push to screen, or navigate to a URL on any connected node. Use for games, visualizations, dashboards, interactive demos, and live-reloading development previews. Supports presenting, hiding…
argent-device-interact
Interact with an iOS simulator, Android emulator, or Chromium (CDP) app using argent MCP tools. Use when tapping UI elements, performing gestures, scrolling/swiping, typing text, pressing hardware buttons, launching apps, opening URLs, taking screenshots, waiting for an element to appear or disappear, or checking…
argent-metro-debugger
Debug a JS runtime via CDP using argent debugger tools. Primary path is React Native via Metro (iOS / Android / Vega); a subset of the tools (debugger-connect, debugger-status, debugger-evaluate, debugger-log-registry) also drive a Chromium (CDP) app's renderer (an Electron app, or any Chromium browser exposing CDP)…
argent-settings-permissions
Grant, deny, or reset an app's runtime permissions (camera, microphone, photos, contacts, notifications, calendar, location, location-always, media-library, motion, reminders) on an iOS simulator or Android device using the argent settings-permissions tool - without navigating the system Settings UI. Use when the…