enforcing-stability-in-ci

enforcing-stability-in-ci is a skill for Claude Code, Codex from skydoves/compose-performance-skills. It costs 200 tokens per session (3,733 once invoked), scanned A, original, Apache-2.0.

A guide to making a continuous-integration build check that Jetpack Compose stability does not get worse over time.

In plain words
What is it for?
Use it to save a stability baseline, compare pull requests against it, fail builds on unwanted regressions, and apply the check across feature modules in a monorepo, a repository containing multiple related projects.
Why use it?
It catches changes such as adding a mutable field that would stop Compose from skipping unnecessary UI updates, before the change reaches users.

Skill for Claude CodeCodex

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

Good fit Use it to save a stability baseline, compare pull requests against it, fail builds on unwanted regressions, and apply the check across feature modules in a monorepo, a repository containing multiple related projects.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/skydoves/compose-performance-skills/enforcing-stability-in-ci
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 skydoves/compose-performance-skills --skill enforcing-stability-in-ci
Clone the repo
git clone --depth 1 https://github.com/skydoves/compose-performance-skills

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 enforcing-stability-in-ci

README.md
[![agentmods](https://agentmods.dev/badge/skills/skydoves/compose-performance-skills/enforcing-stability-in-ci/github.svg)](https://agentmods.dev/skills/skydoves/compose-performance-skills/enforcing-stability-in-ci)
Your own site
<a href="https://agentmods.dev/skills/skydoves/compose-performance-skills/enforcing-stability-in-ci"><img src="https://agentmods.dev/badge/skills/skydoves/compose-performance-skills/enforcing-stability-in-ci/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 enforcing-stability-in-ci

Your own site · 80×15
<a href="https://agentmods.dev/skills/skydoves/compose-performance-skills/enforcing-stability-in-ci"><img src="https://agentmods.dev/badge/skills/skydoves/compose-performance-skills/enforcing-stability-in-ci.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 200 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,733 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00200 $0.03733
Opus 5 $0.00100 $0.01867
Sonnet 5 $0.00040 $0.00747
Haiku 4.5 $0.00020 $0.00373

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

Security

Grade A, and why

enforcing-stability-in-ci 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 10d 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.

stability/enforcing-stability-in-ci/SKILL.md · 323 lines

How it starts

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

Enforcing Stability in CI — make stability regressions fail the build

Stability is a property that silently regresses. A new var in a shared data class can disable skipping across dozens of screens, and nothing in the build output complains. Treat stability like binary compatibility: commit a baseline, diff it on every PR, fail the build when the diff goes the wrong way. This skill sets that gate up using the skydoves/compose-stability-analyzer Gradle plugin and points to j-roskopf/ComposeGuard for non-Android multiplatform projects.

When to use this skill

  • The team wants a stability service-level objective enforced in CI, not a manual check.
  • A PR introduced an unstable parameter and nobody noticed until field reports of dropped frames came in.
  • Migrating a large app to strong skipping and need a regression net while refactoring.
  • Standardizing stability practice across a monorepo with many feature modules.
  • The user mentions stabilityCheck, stabilityDump, baseline drift, ComposeGuard, or "fail the build on stability regression".

When NOT to use this skill

  • A single-developer throwaway prototype. The baseline maintenance cost is not worth it.
  • Stability has not been diagnosed at all yet. Run ../diagnosing-compose-stability/SKILL.md first to make sure the current state is acceptable; baselining a broken state just locks the brokenness in.
  • The conceptual question is "why did the compiler classify X as Y?". Use ../understanding-stability-inference/SKILL.md.

Prerequisites

  • Kotlin 2.0+ with the Compose compiler Gradle plugin (org.jetbrains.kotlin.plugin.compose). Strong skipping is default on.
  • Gradle 8+.
  • A working CI pipeline that already runs ./gradlew assemble or equivalent.
  • Compose Compiler reports already understood (read ../diagnosing-compose-stability/SKILL.md first).
  • Ability to commit generated files to the repository (the .stability baseline must be checked in).

Workflow

1. Apply the plugin

Add the plugin to the version catalog and apply it to every module that ships UI composables.

Read the full file on GitHub · 323 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. 10d ago First seen · 323 lines · 200 tokens per session scan A c5a2f1fe86a7

Subscribe to this mod's changes

enforcing-stability-in-ci is a skill published in the GitHub repository skydoves/compose-performance-skills (500 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 200 tokens to every session and 3,733 once invoked, about $0.0010 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-30.

Related

Other skills, from other repositories

claude-android-ninja

Build and migrate Android apps with Kotlin, Jetpack Compose, MVVM, Hilt, Room 3 (KSP, SQLiteDriver, Flow/suspend DAOs), Navigation3, and multi-module Gradle. Use for new projects or modules, Compose screens and ViewModels, Room 3 and RemoteMediator, API 37 / targetSdk migration, Play Integrity client wiring…

Drjacky/claude-android-ninja · 123 tokens

rebrand

Rebrand a fresh clone of android-clean-template into a new app. Asks for the app name, application id, sample-feature and networking decisions, then executes docs/CLONECHECKLIST.md end to end. Use on a fresh un-rebranded clone (application id still com.mkchtv.cleantemplate) or when the user asks to set up, rename, or…

mykola-kichatov/android-clean-template · 85 tokens

kotlin-android-ci

Expert guidance on CI/CD for Kotlin Android projects — GitHub Actions, Gradle remote cache, signing, Play Publisher, and Firebase App Distribution. Use this when setting up or debugging CI pipelines.

almasumdev/awesome-kotlin-android-agent-skills · 45 tokens

sceneview-ios

Build 3D and AR apps on Apple platforms (iOS, macOS, visionOS) with SceneViewSwift — the SwiftUI wrapper around RealityKit. Use whenever the user asks for "3D in SwiftUI", "AR with ARKit in SwiftUI", a model viewer for iOS, or any Apple-platform 3D/AR app where the dependency is the SceneViewSwift Swift Package from…

sceneview/sceneview · 148 tokens

sceneview

Build 3D and AR apps with the SceneView SDK in Jetpack Compose, SwiftUI (iOS/macOS/visionOS via SceneViewSwift), Web (Filament.js), Flutter and React Native. Use whenever the user asks for "3D in Compose", "AR with ARCore in Compose", a model viewer, or any cross-platform 3D/AR app where the dependency is…

sceneview/sceneview · 156 tokens

compose-animations

Use when writing or reviewing Jetpack Compose motion: visibility enter/exit, animating one property toward a target, color or size transitions, multiple properties from one state, switching composable content, or choosing between AnimatedVisibility, animateAsState, rememberTransition, AnimatedContent, and Crossfade.

chrisbanes/skills · 64 tokens