compose-migrate-views-to-compose

compose-migrate-views-to-compose is a skill for Claude Code, Codex from RoninForge/roninforge-kotlin-compose. It costs 52 tokens per session (1,184 once invoked), scanned A, original, MIT.

A step-by-step guide for converting one Android screen from XML layouts and Activities or Fragments to Jetpack Compose, Android’s code-based UI system.

In plain words
What is it for?
Inventorying a screen, moving state to a ViewModel and StateFlow, creating composables, and updating navigation and Material 3 UI.
Why use it?
It provides a controlled migration path for older screens and codebases that mix the two UI approaches.

Skill for Claude CodeCodex

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

Good fit Inventorying a screen, moving state to a ViewModel and StateFlow, creating composables, and updating navigation and Material 3 UI.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/roninforge/roninforge-kotlin-compose/compose-migrate-views-to-compose
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 RoninForge/roninforge-kotlin-compose --skill compose-migrate-views-to-compose
Clone the repo
git clone --depth 1 https://github.com/RoninForge/roninforge-kotlin-compose

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 compose-migrate-views-to-compose

README.md
[![agentmods](https://agentmods.dev/badge/skills/roninforge/roninforge-kotlin-compose/compose-migrate-views-to-compose/github.svg)](https://agentmods.dev/skills/roninforge/roninforge-kotlin-compose/compose-migrate-views-to-compose)
Your own site
<a href="https://agentmods.dev/skills/roninforge/roninforge-kotlin-compose/compose-migrate-views-to-compose"><img src="https://agentmods.dev/badge/skills/roninforge/roninforge-kotlin-compose/compose-migrate-views-to-compose/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 compose-migrate-views-to-compose

Your own site · 80×15
<a href="https://agentmods.dev/skills/roninforge/roninforge-kotlin-compose/compose-migrate-views-to-compose"><img src="https://agentmods.dev/badge/skills/roninforge/roninforge-kotlin-compose/compose-migrate-views-to-compose.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 52 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,184 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.00052 $0.01184
Opus 5 $0.00026 $0.00592
Sonnet 5 $0.00010 $0.00237
Haiku 4.5 $0.00005 $0.00118

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

Security

Grade A, and why

compose-migrate-views-to-compose 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.

skills/compose-migrate-views-to-compose/SKILL.md · 156 lines

How it starts

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

Migrate View-system Screen to Compose

When to Use

When inheriting a legacy XML-based screen and converting it to Compose, or when an AI-generated codebase mixes View-system Activities with new Compose features.

Instructions

Apply per screen. Plan the migration screen-by-screen, not all at once.

Step 1: Inventory the screen

Identify:

  • The Activity / Fragment + its XML layout.
  • All findViewById references and what each view does.
  • ViewModel (if any) and its state surface (LiveData / Flow / lateinit).
  • Navigation entry points (which other screens navigate here, what arguments).

Step 2: Modernise the ViewModel

If the VM uses LiveData, convert to StateFlow:

// BEFORE
val users: LiveData<List<User>> = repo.observeUsers().asLiveData()

// AFTER
val users: StateFlow<List<User>> = repo.observeUsers()
    .stateIn(viewModelScope, SharingStarted.WhileSubscribed(5_000), emptyList())

If the VM does not exist yet, create one with a sealed UiState.

Step 3: Create the Screen composable

Define the stateless Screen taking the UI state and event lambdas:

@Composable
fun UserListScreen(
    state: UserListUiState,
    onUserClicked: (User) -> Unit,
    onRefresh: () -> Unit,
) {
    when (state) {
        UserListUiState.Loading -> CircularProgressIndicator()
        is UserListUiState.Success -> LazyColumn {
            items(state.users, key = { it.id }) { user ->
                UserRow(user, onClick = { onUserClicked(user) })
            }
        }
        is UserListUiState.Error -> Text(state.message)
    }
}

Step 4: Create the Route composable

@Composable
fun UserListRoute(
    vm: UserListViewModel = hiltViewModel(),
    onUserClicked: (User) -> Unit,
) {
    val state by vm.state.collectAsStateWithLifecycle()
    UserListScreen(state, onUserClicked, onRefresh = vm::refresh)
}

Step 5: Replace setContentView with setContent

Make the Activity a ComponentActivity (not AppCompatActivity unless you genuinely need Material Components / AppCompat):

Read the full file on GitHub · 156 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. 9d ago First seen · 156 lines · 52 tokens per session scan A dfb01f028415

Subscribe to this mod's changes

compose-migrate-views-to-compose is a skill published in the GitHub repository RoninForge/roninforge-kotlin-compose (1 stars, last pushed 3mo ago), licensed MIT. It adds 52 tokens to every session and 1,184 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

e2e-testing

AI-powered E2E testing for any app — Flutter, React Native, iOS, Android, Electron, Tauri, KMP, .NET MAUI. Connects via MCP to running apps so the agent can take screenshots, tap elements, enter text, scroll, inspect UI trees, and verify state with natural language. Use when the user wants to test an app's UI…

ai-dashboad/flutter-skill · 107 tokens

tw-migrate

Analyze a Tailwind CSS v3 project and generate a complete migration plan to v4. Scans config, CSS, and template files for v3 patterns and produces a prioritized checklist with exact find-and-replace commands.

RoninForge/roninforge-tailwind-v4 · 48 tokens

tw-component

Generate a UI component using correct Tailwind CSS v4 utility classes, CSS variable theming, and accessibility best practices. Prevents v3 syntax hallucination by grounding output in verified v4 patterns.

RoninForge/roninforge-tailwind-v4 · 43 tokens

tw-validate

Scan a Tailwind CSS project for v3/v4 version mixing, deprecated patterns, and common mistakes. Reports issues with exact file locations and suggested fixes.

RoninForge/roninforge-tailwind-v4 · 35 tokens

truesheet-usage

Consumer-side guide for integrating @lodev09/react-native-true-sheet into a React Native app. Use this skill whenever the user wants to add, configure, control, or debug a bottom sheet using TrueSheet — including ref-based sheets, named global sheets, web support with TrueSheetProvider/useTrueSheet, React Navigation…

lodev09/react-native-true-sheet · 169 tokens

uniwind

Uniwind — Tailwind CSS v4 styling for React Native. Use when adding, building, or debugging components in a React Native project that uses Uniwind classNames. Covers setup, Metro config, global.css, theming, className props, accent- color props, platform/data/state/responsive variants, CSS variables, custom utilities…

uni-stack/uniwind · 130 tokens