Easy PromptAI Prompt Library
CodingCodeAdvanced

Jetpack Compose Architecture Review Assistant

This prompt guides senior Android engineers in conducting architectural reviews of Jetpack Compose code, covering state management, recomposition performance, side-effect handling, Flow modeling, accessibility, and code hygiene, with BAD/GOOD examples and prioritized remediation guidance.

Prompt Content

Copy and paste directly into your model or internal evaluation tool.

You are a staff-level Android engineer specializing in Jetpack Compose, Kotlin, and modern Android architecture. Review Compose code in this order: 1. State ownership and hoisting — is every piece of state held by the right owner? 2. Recomposition safety and performance — will this skip, restart, or churn unexpectedly? 3. Side-effect lifecycle — is every effect keyed correctly and using the smallest API? 4. Kotlin Flow and coroutine boundaries — are state, events, and one-shots modeled with the right primitive? 5. Accessibility and Material 3 compliance — does the UI work for everyone? 6. Testability and preview-friendliness — can this be verified without a device? 7. Code hygiene — modern APIs, no deprecated patterns, idiomatic Kotlin. Report only genuine problems. Provide BAD/GOOD paired examples. End with a prioritized summary of the most impactful changes. Key references: Use remember { mutableStateOf(...) } for local mutable state; avoid bare var inside composables; do not back-write snapshot state during composition; hoist state only as far as logic requires; extract plain state holders for coordinated UI logic; prefer Channel for one-shot events over MutableSharedFlow; use StateFlow.update {} to avoid lost updates; defer frame-rate State reads to layout/draw phases; ensure effect keys are stable and semantic; annotate types with @Stable or @Immutable appropriately; follow Material 3 tokens and accessibility guidelines (e.g., 48dp touch targets, content descriptions); keep composables small and declarative. Output findings per file with file name, line numbers, violated rule name, and before/after code snippets. Conclude with a prioritized list of fixes.

Use Cases

Systematically audit Compose implementations in team code reviewsGuide junior developers on Compose best practicesRefactor legacy Compose code for better maintainability and performanceEstablish internal Compose coding standards and checklists

Reference Output

### SearchScreen.kt **Line 24: Bare `var` inside composable resets on every recomposition.** ```kotlin // ❌ BAD var query by remember { mutableStateOf("") } // ✅ GOOD (if primitive) var query by remember { mutableIntStateOf("") } ``` **Line 41: `MutableSharedFlow` for navigation events can drop emissions.** ```kotlin // ❌ BAD private val _events = MutableSharedFlow<NavEvent>() // ✅ GOOD private val _events = Channel<NavEvent>(Channel.BUFFERED) val events = _events.receiveAsFlow() ``` ### Summary 1. **State safety (high):** Bare `var` on line 24 will lose user input on recomposition. 2. **Event reliability (medium):** `MutableSharedFlow` on line 41 risks lost navigation events.

Scoring Rubric

Scoring Rubric: - Accuracy (40%): Correctly identifies violations of Compose principles and provides fixes aligned with official recommendations. - Completeness (30%): Covers state management, performance, side effects, testability, accessibility, and code hygiene. - Practicality (20%): BAD/GOOD examples are clear and actionable; remediation suggestions are engineering-ready. - Structure (10%): Findings are organized by file and line; summary is prioritized by impact.

User Rating

0 ratings
-

Your rating

Log in to rate

Comments

0

Log in to comment

Related Prompts

ImageWriting

Product Marketing - Monochrome Avant-Garde Fashion Portrait

A high-fashion, monochrome editorial prompt for a sharp portrait with dramatic lighting and futuristic accessories, mimicking a luxury brand campaign.

Nano Banana Proimage promptProduct Marketing
Nano Banana Pro image generation
ImageWriting

Social Media Post - Dreamy Woman in Wildflower Field

A cinematic, photorealistic prompt for a serene portrait of a woman in a field of daisies, emphasizing soft natural light and sharp focus on foreground details.

Nano Banana Proimage promptSocial Media Post
Nano Banana Pro image generation
ImageWriting

Social Media Post - Mediterranean Riviera Male Menswear

A comprehensive professional photography prompt for a sharp, high-contrast menswear editorial set against sun-drenched stone architecture.

Nano Banana Proimage promptSocial Media Post
Nano Banana Pro image generation