com um clique
find-my-flags
// Use this skill to find Compose feature flags introduced by a specific git user or email and map them to the library version in which they were added.
// Use this skill to find Compose feature flags introduced by a specific git user or email and map them to the library version in which they were added.
Ensure KDocs are high quality, concise, active, and explicitly linked to API components.
A skill for building instrumented tests in Remote Compose using GridScreenshotUI.
A skill for building instrumented screenshot tests in Remote Compose using RemoteScreenshotTestRule.
A skill for creating, amending, formatting, and uploading commits in the AndroidX frameworks/support project
Scaffold a new RemoteCompose wear material3 component with test, sample, and preview
Scaffold a new RemoteCompose remote creation component with test, sample, and preview
| name | find-my-flags |
| description | Use this skill to find Compose feature flags introduced by a specific git user or email and map them to the library version in which they were added. |
| Term | Definition |
|---|---|
| Feature Flag | A toggle mechanism located in any of the Compose flag files (e.g., ComposeUiFlags, ComposeMaterial3Flags, ComposeRuntimeFlags, etc.) to guard regressions or features. |
| Flag Module | The library sub-component holding the flag: Ui, UiText, or Foundation. |
| Version TOML | The central AndroidX library versioning definition file libraryversions.toml. |
Follow this automated workflow to trace and map flags to the library versions they were introduced in.
The repository includes a dedicated script
.agents/skills/find-my-flags/scripts/find_my_flags which automatically queries
the local git history, determines the active user's git config email (or custom
email), parses new additions, and performs mapping relative to the repository
root.
Run the script directly from the repository root:
./.agents/skills/find-my-flags/scripts/find_my_flags
Or query a specific author:
./.agents/skills/find-my-flags/scripts/find_my_flags --author <email>
The script outputs a space-padded dynamically aligned terminal table:
| Feature Flag | Module | Commit | Added In Version |
| :-------------------------------------------------- | :--------- | :------------ | :--------------- |
| `isAccessibilityShowOnScreenNestedScrollingEnabled` | Ui | `83b18f2eae1` | `1.11.0-alpha03` |
| `isCorrectShadowLerpWithNullsEnabled` | UiText | `a8f0a350817` | `1.11.0-alpha03` |
| `isConcurrentTextFieldSelectionFixEnabled` | Foundation | `d27fdc43aba` | `1.12.0-alpha01` |
| `isExploreByTouchHoverHandled` | Ui | `acbdc65476d` | `1.12.0-alpha02` |
| `isInteractionSoundEffectOnClickEnabled` | Foundation | `e5e99dea07a` | `1.12.0-alpha03` |