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/deploygate/deploygate-agent-plugin/deploynpx skills add DeployGate/deploygate-agent-plugin --skill deploygit clone --depth 1 https://github.com/DeployGate/deploygate-agent-pluginWhat 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.00014 | $0.00647 |
| Opus 5 | $0.00007 | $0.00324 |
| Sonnet 5 | $0.00003 | $0.00129 |
| Haiku 4.5 | $0.00001 | $0.00065 |
Grade A, and why
deploy 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 yesterday.
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 — 57 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Build and upload app to DeployGate
Build the current project and upload the binary to DeployGate. This is the fast-path skill — a quick build + upload for a project that is already set up. For first-time setup, iOS code signing issues, UDID registration, distribution page creation, or notification configuration, escalate to the setup skill instead.
When to escalate to the setup skill
Stop this skill and suggest the user invoke setup if any of these apply:
- The user has never uploaded to DeployGate before (no API token configured)
- iOS build fails with a code signing / provisioning profile error
- A tester reports they can't install the app (UDID registration needed)
- The user needs to create or configure a distribution page
- The user wants to configure notifications
The setup skill owns the full onboarding flow and its detailed references cover these paths.
Steps
-
Detect project type by checking for build files:
build.gradle/build.gradle.kts→ Android*.xcodeproj/*.xcworkspace→ iOS- If both exist, ask the user which platform to build
-
Get owner name using the
get_user_infoMCP tool -
Build the app:
- Android:
./gradlew assembleDebug→app/build/outputs/apk/debug/app-debug.apk - iOS: guide the user to build with
fastlane gymor Xcode Archive, then provide the IPA path - Do NOT use APKs from Android Studio's Instant Run / Apply Changes
- Android:
-
Collect Git info for the upload message:
git rev-parse --short HEAD # commit hash git rev-parse --abbrev-ref HEAD # branch nameFormat:
"{branch} ({hash})"— e.g."feature/login (abc1234)" -
Upload using the
upload_appMCP tool:owner_name: from step 2file_path: path to the built binarymessage: Git info from step 4- If the user specifies a distribution page, include
distribution_keyordistribution_name
-
Show results: display the upload response including the app URL and revision number
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.
- yesterday First seen · 57 lines · 14 tokens per session scan A 49695e442530
deploy is a skill published in the GitHub repository DeployGate/deploygate-agent-plugin (3 stars, last pushed 6d ago), licensed MIT. It adds 14 tokens to every session and 647 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-31.
Other skills, from other repositories
superloopy-clone
Use when the user asks for Superloopy clone or asks to clone, rebuild, reverse-engineer, replicate, or copy a website or page into a Superloopy-governed implementation. Triggers on "loopy clone", target URLs plus requests such as "clone this site", "rebuild this page", "make a copy of this website", "pixel-perfect…
flutter-ui
Build Flutter UI from Figma MCP or image input. Scans src for design tokens (colors, sizes, text styles), existing components, and naming conventions before writing a single line of code. Never hard-codes values.
audit-frontend-design
Use when reviewing or changing a React, Next.js, Tailwind, or shadcn interface and you need evidence-backed findings for accessibility, hierarchy, tokens, states, and responsive design before editing code.
bootstrap-xcode-workspace
Create, adopt, extend, and align one Swift product workspace with app, extension, package, and service components under one permanent Xcode entrypoint.
hermes-agent-compatibility
Audit Socket-to-Hermes compatibility across Agent Skills, Codex plugins, MCP, hooks, apps, agents, and Hermes extension systems. Use for skill exports, config translations, and Hermes adapter decisions.
gradle-agp-workflow
Inspect and maintain Android Gradle and Android Gradle Plugin workflows, including Gradle wrapper policy, AGP and Kotlin plugin versions, Java toolchains, Android SDK settings, namespaces, variants, flavors, signing config, version catalogs, dependencies, generated sources, build cache boundaries, and targeted…