From minimap
Use only when the user explicitly asks to perform first-run mapping, create an initial Minimap graph, map a new area of the app, explore a launched Android app for navigation memory, or record known routes from scratch. This is token-intensive and should be bounded, staged, and reviewed.
npx claudepluginhub himattm/minimap --plugin minimapThis skill uses the workspace's default tool permissions.
Minimap first-run mapping creates initial navigation memory for a launched Android app. This skill is intentionally separate from everyday Minimap navigation because it is expensive: the agent must inspect Android layout JSON, decide what to tap, navigate the app, and record routes before Minimap can reuse the graph.
Suggests manual /compact at logical task boundaries in long Claude Code sessions and multi-phase tasks to avoid arbitrary auto-compaction losses.
Share bugs, ideas, or general feedback.
Minimap first-run mapping creates initial navigation memory for a launched Android app. This skill is intentionally separate from everyday Minimap navigation because it is expensive: the agent must inspect Android layout JSON, decide what to tap, navigate the app, and record routes before Minimap can reuse the graph.
Stage learned graph updates, but do not accept or commit them without explicit user approval.
Use this mode when the user asks to map the app, create an initial Minimap graph, do first-run mapping, explore the launched app, record known routes, or build navigation memory from scratch.
Warn the user before starting: first-run mapping is token-intensive. Keep the run bounded by the user's requested scope. If no scope is given, map a small set of high-value flows first, then report what remains.
Use this skill one time for an initial app map, or later only with a specific bounded reason:
Prerequisites:
minimap, android, and adb are on PATH.minimap init --agents all if Minimap has not been initialized.minimap doctor and fix blocking environment issues before mapping.Mapping workflow for each route:
settings, article-detail, or profile-edit.minimap map --discover <route-name> --max-actions 5 --stage.minimap layout and inspect the current screen.minimap tap --selector "<kind>=<value>" --reason "<why this moves toward the route>".minimap layout after each meaningful transition.minimap map --discover <route-name> --max-actions 5 --stage --finish.minimap accept unless the user explicitly approves accepting staged graph changes.After mapping:
minimap validate --all when at least one route has been accepted..minimap/runs/; do not commit raw layouts or runtime state.Failure handling:
minimap drift or minimap repair <target> --stage.