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 skills add akiotanaka847/qaio-desktop --skill build-app-localgit clone --depth 1 https://github.com/akiotanaka847/qaio-desktopWrote 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/skills/akiotanaka847/qaio-desktop/build-app-local)<a href="https://agentmods.dev/skills/akiotanaka847/qaio-desktop/build-app-local"><img src="https://agentmods.dev/badge/skills/akiotanaka847/qaio-desktop/build-app-local/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/skills/akiotanaka847/qaio-desktop/build-app-local"><img src="https://agentmods.dev/badge/skills/akiotanaka847/qaio-desktop/build-app-local.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.00055 | $0.00868 |
| Opus 5 | $0.00028 | $0.00434 |
| Sonnet 5 | $0.00011 | $0.00174 |
| Haiku 4.5 | $0.00006 | $0.00087 |
Grade C, and why
build-app-local scanned grade C 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 11d 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.
Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
rm -rf app/src-tauri/target/universal-apple-darwin/release/bundle This is a copy
92% identical to build-app-local — 27 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.
How it starts
The opening of the file, as written. The whole thing — 90 lines — stays where its author put it; the contents beside it link to each section on GitHub.
/build-app-local
Manual macOS build. CI broken? Use this. Normal path = /release.
Pre-reqs
Env vars set in shell:
APPLE_SIGNING_IDENTITY— Developer ID stringAPPLE_API_KEY— App Store Connect key IDAPPLE_API_KEY_PATH— path to.p8APPLE_API_ISSUER— issuer UUIDTAURI_SIGNING_PRIVATE_KEY+TAURI_SIGNING_PRIVATE_KEY_PASSWORDPOSTHOG_KEY·POSTHOG_HOST·SUPABASE_URL·SUPABASE_ANON_KEY·SENTRY_DSN
Flow
# 0. One-time: ensure both macOS rustup targets installed
rustup target add aarch64-apple-darwin x86_64-apple-darwin
# 1. Clean stale
cd .. # workspace root
rm -rf app/src-tauri/target/universal-apple-darwin/release/bundle
rm -rf app/dist
# 2. Build engine sidecar for BOTH arches (required for universal)
cargo build --release --target aarch64-apple-darwin -p qaio-engine-server
cargo build --release --target x86_64-apple-darwin -p qaio-engine-server
# 3. Build + auto-sign the app (universal fat binary)
cd app
pnpm tauri build --target universal-apple-darwin
Tauri signs .app. Does NOT notarize DMG. Must do manually:
# 4. Submit DMG to Apple for notarization (note universal path)
DMG="src-tauri/target/universal-apple-darwin/release/bundle/dmg/Qaio_${VERSION}_universal.dmg"
xcrun notarytool submit "$DMG" \
--key "$APPLE_API_KEY_PATH" \
--key-id "$APPLE_API_KEY" \
--issuer "$APPLE_API_ISSUER" \
--wait
# 5. Staple ticket to DMG
xcrun stapler staple "$DMG"
# 6. Verify
xcrun stapler validate "$DMG"
spctl -a -vvv -t install "$DMG"
lipo -info "$(hdiutil attach "$DMG" -nobrowse -mountpoint /tmp/hmnt -quiet && echo /tmp/hmnt/*.app/Contents/MacOS/qaio-engine)"
# → expect: "Architectures in the fat file: ... x86_64 arm64"
hdiutil detach /tmp/hmnt -quiet
Output
cp "$DMG" ~/Desktop/Qaio-${VERSION}.dmg
Verify install
- Open DMG on clean Mac
- Drag to Applications
- Launch — no Gatekeeper warning
- Check "About Qaio" version matches
Common issues
- "App is damaged" — stapling failed. Re-staple.
- Notarization rejected —
xcrun notarytool log <submission-id> --key ...to see reason. - Code sign identity not found — check
security find-identity -v -p codesigning. Must match$APPLE_SIGNING_IDENTITYexactly. - Slow notarization — Apple servers variable. 2-15 min typical.
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.
- 11d ago First seen · 90 lines · 55 tokens per session scan C 9bbac17bf943
build-app-local is a skill published in the GitHub repository akiotanaka847/qaio-desktop (2 stars, last pushed 7d ago), licensed MIT. It adds 55 tokens to every session and 868 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). It is 92% identical to build-app-local, differing in 27 lines, and is treated as a copy.
Other skills, from other repositories
agent-release-swarm
Agent skill for release-swarm - invoke with $agent-release-swarm.
release-announcement
Write a release announcement — changelog, blog post, in-app note, or social post — that leads with user impact, names the audience, and includes upgrade/migration steps without filler.
multi-agent-release-manager
Cleans up the workspace, formats code, runs presubmit checks, and uploads CLs to Gerrit.
release-notes
Generate user-facing release notes from tickets, PRDs, or changelogs. Creates clear, engaging summaries organized by category (new features, improvements, fixes). Use when writing release notes, creating changelogs, announcing product updates, or summarizing what shipped.
pack-submit
Package one of this agent's own skills as a standalone community pack and submit it to the aeon registry as a PR.
updater_guide
Guidance for checking for and installing Row-Bot updates.