RoutePlanningNavigationSkill

RoutePlanningNavigationSkill is a skill for Claude Code, Codex from FoneClaw-AI/foneclaw-android. It costs 27 tokens per session (1,013 once invoked), scanned A, original, MIT.

An Android-agent procedure for planning a trip and opening turn-by-turn navigation in a map app. It uses the phone’s location, installed map apps, destination, and travel mode.

In plain words
What is it for?
It identifies a suitable installed map app, gets the current location, starts navigation to a destination, and checks that navigation has begun.
Why use it?
It removes the need to choose the map app, set the starting point, and begin navigation manually.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It identifies a suitable installed map app, gets the current location, starts navigation to a destination, and checks that navigation has begun.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/foneclaw-ai/foneclaw-android/navigation
Install

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.

Any agent
npx skills add FoneClaw-AI/foneclaw-android --skill navigation
Clone the repo
git clone --depth 1 https://github.com/FoneClaw-AI/foneclaw-android

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for RoutePlanningNavigationSkill

README.md
[![agentmods](https://agentmods.dev/badge/skills/foneclaw-ai/foneclaw-android/navigation/github.svg)](https://agentmods.dev/skills/foneclaw-ai/foneclaw-android/navigation)
Your own site
<a href="https://agentmods.dev/skills/foneclaw-ai/foneclaw-android/navigation"><img src="https://agentmods.dev/badge/skills/foneclaw-ai/foneclaw-android/navigation/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.

agentmods 80×15 button for RoutePlanningNavigationSkill

Your own site · 80×15
<a href="https://agentmods.dev/skills/foneclaw-ai/foneclaw-android/navigation"><img src="https://agentmods.dev/badge/skills/foneclaw-ai/foneclaw-android/navigation.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 27 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,013 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00027 $0.01013
Opus 5 $0.00014 $0.00507
Sonnet 5 $0.00005 $0.00203
Haiku 4.5 $0.00003 $0.00101

Measured 8d ago against content hash 00a90b658bd8, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

RoutePlanningNavigationSkill 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 8d 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.

skills/navigation/SKILL.md · 113 lines

How it starts

The opening of the file, as written. The whole thing — 113 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Route Navigation Planning Agent Skill

Skill Name

Route Navigation Planning

Description

This skill is used by an Android agent to plan and start route navigation based on the user’s destination, preferred map application, current phone location, installed map applications, last used map application, and travel mode.

The agent should determine the map application name and package name, starting point, destination, and travel mode, then invoke the corresponding map navigation tool and monitor the screen until the target map application enters navigation mode.

Goal

Start route navigation for the user using an appropriate map application and travel mode.

Required Tools

  • get_installed_map_apps
  • get_location
  • map_navigate

Workflow

1. Determine the Map Application

The selected map application must include both the application display name and the package name. The package name is required when invoking the map navigation tool because deep links may fail or open the wrong target without it.

  1. Get the list of currently installed map applications on the phone, including each application’s display name and package name.

  2. If no map application is installed, notify the user:

    No map application is currently available. Task terminated.

  3. Select the map application using the following priority order:

    • The map application explicitly specified in the user’s current input.
    • The map application extracted from user preferences.
    • The last used map application.
    • A randomly selected installed map application.
  4. If a selected application is not installed or its package name cannot be resolved, skip it and continue to the next priority.

  5. If randomly selecting a map application, choose only from installed map applications with a known package name.

  6. The final selected map application must be represented as:

    • map_app_name
    • map_app_package_name

2. Determine the Starting Point

  1. Use the phone’s current location to get the latitude and longitude.
  2. If location retrieval fails, notify the user:

Read the full file on GitHub · 113 lines

Changes

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.

  1. 8d ago First seen · 113 lines · 27 tokens per session scan A 00a90b658bd8

Subscribe to this mod's changes

RoutePlanningNavigationSkill is a skill published in the GitHub repository FoneClaw-AI/foneclaw-android (6 stars, last pushed yesterday), licensed MIT. It adds 27 tokens to every session and 1,013 once invoked, about $0.0001 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-08-31.

Related

Other skills, from other repositories

reverse-engineering-android-malware-with-jadx

Reverse engineers malicious Android APK files using JADX decompiler to analyze Java/Kotlin source code, identify malicious functionality including data theft, C2 communication, privilege escalation, and overlay attacks. Examines manifest permissions, receivers, services, and native libraries. Activates for requests…

adriannoes/awesome-agentic-ai · 82 tokens

navigate

Call the unintent tool with the following exact parameters.

vNeeL-code/GHOST · 6 tokens

earllm-build

Build, maintain, and extend the EarLLM One Android project — a Kotlin/Compose app that connects Bluetooth earbuds to an LLM via voice pipeline.

sinhoneyy/master-skills · 36 tokens

mobile-design

Mobile UX patterns, touch interactions, gesture design, mobile-first principles, app navigation, and mobile performance.

manutej/luxor-claude-marketplace · 23 tokens

analyzing-android-malware-with-apktool

Perform static analysis of Android APK malware using apktool for resource decompilation, jadx for Java source recovery, and androguard for manifest inspection, dangerous permission-combination detection, and identification of obfuscated code, dynamic code loading, and reflection-based API calls. Use to statically…

mukul975/Anthropic-Cybersecurity-Skills · 84 tokens

solopi-ai

A command-line framework for testing Android apps and devices with SoloPi, including on-device or cloud AI decision models. It manages devices, test cases, recorded interactions, replays, performance history, and evidence.

alipay/SoloPi · 127 tokens