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.
npx skills add HoangNguyen0403/agent-skills-standard --skill android-edge-to-edgegit clone --depth 1 https://github.com/HoangNguyen0403/agent-skills-standardWrote 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.
[](https://agentmods.dev/skills/hoangnguyen0403/agent-skills-standard/android-edge-to-edge)<a href="https://agentmods.dev/skills/hoangnguyen0403/agent-skills-standard/android-edge-to-edge"><img src="https://agentmods.dev/badge/skills/hoangnguyen0403/agent-skills-standard/android-edge-to-edge/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.
<a href="https://agentmods.dev/skills/hoangnguyen0403/agent-skills-standard/android-edge-to-edge"><img src="https://agentmods.dev/badge/skills/hoangnguyen0403/agent-skills-standard/android-edge-to-edge.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00052 | $0.00770 |
| Opus 5 | $0.00026 | $0.00385 |
| Sonnet 5 | $0.00010 | $0.00154 |
| Haiku 4.5 | $0.00005 | $0.00077 |
Grade A, and why
android-edge-to-edge 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.
How it starts
The opening of the file, as written. The whole thing — 83 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Edge-to-Edge Migration
Priority: P1 (HIGH)
Structured workflow for migrating a Compose app to edge-to-edge display.
Prerequisites
- Project MUST use Jetpack Compose.
- Project MUST target SDK 35+. If lower, increase
compileSdkto 35.
Step 1: Plan
- Locate all Activity classes. For each without
enableEdgeToEdge(), plan to add it. - In each Activity, find all lists, FABs, and text fields that need inset handling.
- If
TextField/OutlinedTextFieldis present, plan IME inset handling.
Step 2: Enable edge-to-edge
- Add
enableEdgeToEdge()beforesetContentin everyActivity.onCreate. - Add
android:windowSoftInputMode="adjustResize"in AndroidManifest for Activities with soft keyboard.
Step 3: Apply insets
Choose ONE method per component to avoid double padding:
- PREFERRED — Scaffold: Pass
PaddingValuesto content lambda. - Material 3 components: Use built-in inset handling (
TopAppBar,NavigationBar, etc.). - Outside Scaffold: Use
Modifier.safeDrawingPadding()orwindowInsetsPadding.
See inset patterns for RIGHT/WRONG code examples.
Step 4: Handle IME
For Activities with soft keyboard:
- Set
adjustResizein manifest (NOT deprecatedSOFT_INPUT_ADJUST_RESIZE). - Add
imePadding()orfitInside(WindowInsetsRulers.Ime.current)to content container. - Place
imePaddingBEFOREverticalScroll().
See inset patterns for IME-specific RIGHT/WRONG patterns.
Step 5: Lists and FABs
- Apply inset padding to
contentPaddingofLazyColumn/LazyRow, NOT asModifier.padding()on parent. - FABs inside Scaffold are handled automatically. Outside Scaffold, use
safeDrawingPadding().
Verification
- Every
ActivitycallsenableEdgeToEdge(). -
adjustResizeset in AndroidManifest for keyboard Activities. - Text fields have IME inset handling.
- List items scroll behind system bars via
contentPadding. -
./gradlew buildsucceeds.
What ships with it
2 files 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.
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.
- 9d ago First seen · 83 lines · 52 tokens per session scan A 6125b2ec9cc7
android-edge-to-edge is a skill published in the GitHub repository HoangNguyen0403/agent-skills-standard (565 stars, last pushed 3d ago), licensed MIT. It adds 52 tokens to every session and 770 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-09-03.
Other skills, from other repositories
ss-audit
Audit screens for UX issues using Nielsen's heuristics and modern mobile UX best practices.
components
React component architecture for creating composable, accessible components with data attributes. Use when creating/updating composable components, not for higher-level feature/page components.
multi-surface-render
Multi-surface rendering with json-render — one JSON spec produces React web, Next.js, React Native, Ink terminal UIs, PDFs, emails, Remotion videos, OG images, and 3D scenes. Covers renderer target selection, registry mapping, and platform APIs (renderToBuffer, renderToStream, renderToFile). Use when generating output…
mobile-web-app
Add router-agnostic, native app-like page transitions to mobile web apps with SSGOI. Explore live drill, sheet, slide, and zoom demos at https://ssgoi.dev. Use when building or improving a mobile web app's routed page structure, layouts, or transitions, or when a project uses SSGOI or an @ssgoi package.
accessibility
Audits or remediates Flutter widgets against WCAG 2.2 conformance levels A, AA, or AAA across iOS, Android, Web, macOS, Windows, and Linux, covering Semantics labels and screen reader output under VoiceOver and TalkBack, touch target sizes, dragging alternatives, focus order and keyboard navigation, color contrast…
material-theming
Best practices for Flutter theming with Material 3, treating ThemeData as the single source of truth for colors, typography, component styles, and spacing. Use when creating, modifying, or reviewing ThemeData, ColorScheme, TextTheme, component themes, spacing systems, or light/dark mode support, and whenever widget…