android-ci-setup

android-ci-setup is a skill for Claude Code, Codex from woliveiras/geremmyas. It costs 55 tokens per session (1,492 once invoked), scanned A, original, MIT.

A continuous integration and delivery setup for Android projects using GitHub Actions, Gradle, and Fastlane. CI automatically checks code and builds the app when changes are pushed or proposed.

In plain words
What is it for?
Use it to create or repair Android CI, run lint and static analysis, execute unit tests, build release packages, review dependencies, and automate releases from selected branches.
Why use it?
It catches lint errors, code-quality problems, failing tests, vulnerable dependencies, and build failures before a release. It can also prepare protected deployments to Google Play.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to create or repair Android CI, run lint and static analysis, execute unit tests, build release packages, review dependencies, and automate releases from selected branches.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/woliveiras/geremmyas/android-ci-setup
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.

Any agent
npx skills add woliveiras/geremmyas --skill android-ci-setup
Clone the repo
git clone --depth 1 https://github.com/woliveiras/geremmyas

Made for: Claude Code, Codex.

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 android-ci-setup

README.md
[![agentmods](https://agentmods.dev/badge/skills/woliveiras/geremmyas/android-ci-setup/github.svg)](https://agentmods.dev/skills/woliveiras/geremmyas/android-ci-setup)
Your own site
<a href="https://agentmods.dev/skills/woliveiras/geremmyas/android-ci-setup"><img src="https://agentmods.dev/badge/skills/woliveiras/geremmyas/android-ci-setup/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.

agentmods 80×15 button for android-ci-setup

Your own site · 80×15
<a href="https://agentmods.dev/skills/woliveiras/geremmyas/android-ci-setup"><img src="https://agentmods.dev/badge/skills/woliveiras/geremmyas/android-ci-setup.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 55 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,492 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00055 $0.01492
Opus 5 $0.00028 $0.00746
Sonnet 5 $0.00011 $0.00298
Haiku 4.5 $0.00006 $0.00149

Measured 9d ago against content hash 80ec79ea41a6, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

android-ci-setup 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 9d 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.

content/skills/android-ci-setup/SKILL.md · 221 lines

How it starts

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

Android CI Setup

Multi-step workflow to create a production-grade Android CI pipeline with GitHub Actions, Gradle, and Fastlane.

When to Use

  • New Android project needs CI from scratch
  • Existing project has incomplete or fragile CI
  • Adding static analysis, dependency review, or automated deployment

Pipeline Layers (in order)

Each layer gates the next. If a layer fails, the pipeline stops.

  1. Setup — JDK, Gradle cache, dependency resolution
  2. Lint — Android Lint (lintDebug)
  3. Static Analysis — detekt + ktlint
  4. Unit TeststestDebugUnitTest
  5. BuildassembleRelease or bundleRelease
  6. Dependency Review — Block PRs introducing vulnerable deps
  7. Deploy (release branches) — Fastlane to Play Console tracks

Steps

1. Choose Build Configuration

Tool Recommendation
Gradle DSL Kotlin DSL (build.gradle.kts)
Dependencies Version Catalogs (gradle/libs.versions.toml)
Annotation Processing KSP (not kapt, when supported)
JDK 17 (minimum for AGP 8+/9)

2. Create Workflow File

.github/workflows/android-ci.yml:

name: Android CI

on:
  pull_request:
  push:
    branches: [main]

jobs:
  quality:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4

      - uses: actions/setup-java@v4
        with:
          distribution: temurin
          java-version: "17"
          cache: gradle

      - name: Lint
        run: ./gradlew lintDebug

      - name: Static analysis
        run: ./gradlew detekt ktlintCheck

      - name: Unit tests
        run: ./gradlew testDebugUnitTest

      - name: Build release
        run: ./gradlew assembleRelease

  dependency-review:
    if: github.event_name == 'pull_request'
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: actions/dependency-review-action@v4

3. Configure Android Lint

In app/build.gradle.kts:

android {
    lint {
        warningsAsErrors = true
        abortOnError = true
        checkDependencies = true
        baseline = file("lint-baseline.xml")
    }
}

Read the full file on GitHub · 221 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 9d ago First seen · 221 lines · 55 tokens per session scan A 80ec79ea41a6

Subscribe to this mod's changes

android-ci-setup is a skill published in the GitHub repository woliveiras/geremmyas (10 stars, last pushed 1mo ago), licensed MIT. It adds 55 tokens to every session and 1,492 once invoked, about $0.0003 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

eas-workflows

EAS service (paid). Helps understand and write EAS workflow YAML files for Expo projects. Use this skill when the user asks about CI/CD or workflows in an Expo or EAS context, mentions .eas/workflows/, or wants help with EAS build pipelines or deployment automation.

expo/skills · 63 tokens

flutter-cicd

Set up CI/CD pipelines for Flutter apps. Use when configuring automated testing, build, or deployment workflows with GitHub Actions or Fastlane.

HoangNguyen0403/agent-skills-standard · 33 tokens

github-actions

GitHub Actions workflow patterns for React Native iOS simulator and Android emulator cloud builds with downloadable artifacts. Use when setting up CI build pipelines or downloading GitHub Actions artifacts via gh CLI and GitHub API.

callstackincubator/agent-skills · 44 tokens

android-tooling

Configure Android static analysis with Detekt, Ktlint, and Android Lint for CI/CD quality gates. Use for Android-specific lint and quality tooling; defer generic Java Checkstyle, SonarQube, and standalone CI configuration.

HoangNguyen0403/agent-skills-standard · 51 tokens

app-store-deployment

Publishes mobile applications to iOS App Store and Google Play with code signing, versioning, and CI/CD automation. Use when preparing app releases, configuring signing certificates, or setting up automated deployment pipelines.

secondsky/claude-skills · 46 tokens

swift-preflight

Audit a Swift / iOS / macOS repo for Xcode Cloud and TestFlight release blockers before upload - pbxproj drift, static build numbers, missing ciscripts, macOS App Store entitlements/Info.plist, headless-CI keychain tests, ad-hoc signing entitlement rejections, and flaky-UITest release gating. Reports PASS/WARN/FAIL…

charlesjones-dev/claude-code-plugins-dev · 86 tokens