deploy

A quick workflow for building an Android or iOS app and uploading its binary, the installable app file, to DeployGate.

In plain words
What is it for?
It detects the project platform, builds the app, and uploads it to DeployGate. First-time setup, iOS signing problems, tester device registration, distribution pages, and notifications are outside this workflow.
Why use it?
It removes the repeated manual steps of building an already-configured project and sending the result to testers.

Skill for Claude CodeCodex

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 skills/deploygate/deploygate-agent-plugin/deploy
Any agent
npx skills add DeployGate/deploygate-agent-plugin --skill deploy
Clone the repo
git clone --depth 1 https://github.com/DeployGate/deploygate-agent-plugin

Made for: Claude Code, Codex.

Per session 14 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 647 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.00014 $0.00647
Opus 5 $0.00007 $0.00324
Sonnet 5 $0.00003 $0.00129
Haiku 4.5 $0.00001 $0.00065

Measured yesterday against content hash 49695e442530, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

plugin/skills/deploy/SKILL.md · 57 lines

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

  1. 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
  2. Get owner name using the get_user_info MCP tool

  3. Build the app:

    • Android: ./gradlew assembleDebugapp/build/outputs/apk/debug/app-debug.apk
    • iOS: guide the user to build with fastlane gym or Xcode Archive, then provide the IPA path
    • Do NOT use APKs from Android Studio's Instant Run / Apply Changes
  4. Collect Git info for the upload message:

    git rev-parse --short HEAD          # commit hash
    git rev-parse --abbrev-ref HEAD     # branch name
    

    Format: "{branch} ({hash})" — e.g. "feature/login (abc1234)"

  5. Upload using the upload_app MCP tool:

    • owner_name: from step 2
    • file_path: path to the built binary
    • message: Git info from step 4
    • If the user specifies a distribution page, include distribution_key or distribution_name
  6. Show results: display the upload response including the app URL and revision number

Read the full file on GitHub · 57 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. yesterday First seen · 57 lines · 14 tokens per session scan A 49695e442530

Subscribe to this mod's changes

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.

Related

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…

beefiker/superloopy · 113 tokens

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.

datit309/supergraph · 48 tokens

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.

memi-design/memi · 46 tokens

bootstrap-xcode-workspace

Create, adopt, extend, and align one Swift product workspace with app, extension, package, and service components under one permanent Xcode entrypoint.

gaelic-ghost/socket · 36 tokens

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.

gaelic-ghost/socket · 48 tokens

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…

gaelic-ghost/socket · 74 tokens