Setup & Installation
Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:
What This Skill Does
Assists with building and optimizing 3D games and interactive experiences on Android. Covers engine-specific workflows (Unity, Unreal, Godot) and native graphics APIs (OpenGL ES, Vulkan), with attention to Android's performance constraints, lifecycle handling, and Play Store packaging.
Combines engine-level and Android-platform knowledge in one skill, so you get advice on build settings, permissions, and lifecycle that generic engine docs skip.
When to use it
- Optimizing a Unity game for mid-range Android devices
- Diagnosing thermal throttling in a mobile 3D game
- Setting up Vulkan rendering pipeline for Android NDK
- Handling Android lifecycle events (pause, resume, GL context release) in a game
- Packaging and signing an AAB for Play Store submission
Example Workflow
Here's how your AI assistant might use this skill in practice.
User asks: My Unity Android game runs fine on flagship devices but stutters badly on mid-range phones
- 1Ask which Unity version and target Android API level are in use
- 2Review quality settings and suggest lowering shadow resolution, texture compression, and draw call budgets
- 3Recommend enabling static and dynamic batching and adding LODs to high-poly meshes
- 4Advise using Android Studio CPU/GPU profiler and Unity Profiler to identify bottlenecks
- 5Suggest ABI splits and IL2CPP scripting backend for smaller, faster builds
A prioritized list of quality and build settings changes with expected impact on mid-range hardware