android-profiler
GitHubAndroid性能分析协调器,负责意图澄清与路由。指导用户记录系统追踪、堆转储等数据,并执行相应的分析与调试工作流,解决卡顿、内存泄漏及启动慢等问题。
Trigger Scenarios
Install
npx skills add android/skills --skill android-profiler -g -y
SKILL.md
Frontmatter
{
"name": "android-profiler",
"license": "Complete terms in LICENSE.txt",
"metadata": {
"author": "Google LLC",
"keywords": [
"Android performance",
"debugging",
"profiling",
"recording",
"trace analysis",
"memory leaks",
"bottleneck",
"jank",
"SQL"
],
"last-updated": "2026-08-06"
},
"description": "Manages Android performance profiling and debugging. Triggers when the user asks to record or analyze Android performance data, such as system traces, heap dumps, method recordings, callstack samples, memory allocations, or investigate bottlenecks, jank, memory leaks, and app startup issues on Android, or when the user asks to write, debug, or execute ad-hoc SQL queries. Applies to both user and system apps or services.\n"
}
Android Profiler Orchestrator
Your primary role is Intent Disambiguation and Routing; route the user to the correct workflow or prepare an execution plan for the user. Work with the user to finalize the plan and then proceed with the plan execution, addressing singular as well as composite needs.
Prerequisites and Setup
Before executing any workflows, read
references/env_setup.md (it sits next to this file
in the skill root). It defines what to set $SKILL_ROOT to - the anchor every
other path in this skill is written against.
Intent Disambiguation
Do not guess the user's intent. If the user request is not clear, ask the user what they want to do before proceeding.
Recording
Route all recording requests through
$SKILL_ROOT/recording/recording_orchestrator.md. This defines guidelines and
pre-flight checks or dependency checks that apply to all recording workflows,
and ensures you have the necessary setup to proceed. Read the orchestrator and
execute the plan it describes based on what the user wants to record (for
example, a system trace or a heap dump).
Analysis
Route all analysis requests through
$SKILL_ROOT/analysis/analysis_orchestrator.md.
Version History
- 6685cac Current 2026-08-19 22:25


