一键导入
android-file
// Operate workspace file and code workflows with list, glob, read, write, edit, and grep tools, including safe sequencing, sandbox boundaries, and permission recovery. Use for file inspection, code editing, and text search tasks.
// Operate workspace file and code workflows with list, glob, read, write, edit, and grep tools, including safe sequencing, sandbox boundaries, and permission recovery. Use for file inspection, code editing, and text search tasks.
Configure per-session remote channels (Telegram/Discord/Slack/Feishu/Email/WeCom), then verify inbound/outbound routing and processing visibility.
Safely inspect and edit Chinese text resources, translation tables, and UI copy without introducing encoding corruption. Use when touching UiPreferences.kt, localized strings, SKILL.md text, README translations, or when terminal output looks garbled.
Operate Android Bluetooth workflows with the bluetooth tool, including power, pairing handoff, BLE scan/connect/disconnect, and permission/settings recovery. Use for Bluetooth and BLE device tasks.
Operate Android device capabilities with device_status and device tools, including permissions, location, notifications, URL open, share, and settings recovery. Use for phone status, location, permissions, notifications, links, and Android system handoff tasks.
Operate Android media workflows with the media tool, including photo/video capture, media listing, audio recording/playback, and permission recovery. Use for camera, gallery, microphone, and playback tasks.
Operate Android personal data workflows with calendar and contacts tools, including read/write actions, permission recovery, and safe update/delete sequencing. Use for schedule and contact management tasks.
| name | android-file |
| description | Operate workspace file and code workflows with list, glob, read, write, edit, and grep tools, including safe sequencing, sandbox boundaries, and permission recovery. Use for file inspection, code editing, and text search tasks. |
Use the file tool set: list, glob, read, write, edit, grep.
list: enumerate files/dirsglob: find by patternread: read text with range limitswrite: overwrite or append textedit: deterministic find/replace updatesgrep: search content across filesopen_settings_if_failed=true and wait_user_confirmation=true only for permission recovery.list or glob.read.edit when pattern is stable.write when replacing full content.read or grep.list(path=".", recursive=true, max_depth=3, limit=200)glob(pattern="**/*.kt", path=".", files_only=true, limit=200)read(path="app/src/main/java/...", start_line=1, max_lines=200)edit(path="...", find="old", replace="new", all=false)grep(query="requestUserConfirmation", path="app/src/main/java", regex=false, limit=200)path_outside_workspace: move operation under workspace root.ambiguous_match: refine pattern or set all=true intentionally.permission_denied: allow settings recovery and retry same action.