Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
callstackincubator avatar

Agent Device

  • 6.6k installs
  • 1.6k repo stars
  • Updated July 25, 2026
  • callstackincubator/agent-skills

agent-device is an agent skill for Automates interactions for Apple-platform apps (iOS, tvOS, macOS) and Android devices. Use when navigating apps, taking snapshots/screenshots, tapping, typing, scrolling, or extrac

About

Automates interactions for Apple-platform apps (iOS, tvOS, macOS) and Android devices. Use when navigating apps, taking snapshots/screenshots, tapping, typing, scrolling, or extracting UI info across mobile, TV, and desktop targets. --- name: agent-device description: Automates interactions for Apple-platform apps (iOS, tvOS, macOS) and Android devices. Use when navigating apps, taking snapshots/screenshots, tapping, typing, scrolling, or extracting UI info across mobile, TV, and desktop targets. --- # agent-device Use this skill as a router with mandatory defaults. For normal device tasks, always load `references/bootstrap-install.md` and `references/exploration.md` before acting. Use bootstrap to confirm or establish deterministic setup. Use exploration for UI inspection, interaction, and verification once the app session is open. ## Default operating rules - Start conservative. Prefer read-only inspection before mutating the UI. - Use plain `snapshot` when the task is to verify what text or structure is currently visible on screen.

  • Start conservative. Prefer read-only inspection before mutating the UI.
  • Use plain `snapshot` when the task is to verify what text or structure is currently visible on screen.
  • Use `snapshot -i` only when you need interactive refs such as `@e3` for a requested action or targeted query.
  • Do not browse the web or use external sources unless the user explicitly asks.
  • Re-snapshot after meaningful UI changes instead of reusing stale refs.

Agent Device by the numbers

  • 6,565 all-time installs (skills.sh)
  • Ranked #106 of 1,039 Cloud & Infrastructure skills by installs in the Skillselion catalog
  • Security screen: LOW risk (skills.sh audit)
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

agent-device capabilities & compatibility

Capabilities
start conservative. prefer read only inspection · use plain `snapshot` when the task is to verify · use `snapshot i` only when you need interactive · do not browse the web or use external sources un · re snapshot after meaningful ui changes instead
Use cases
documentation
From the docs

What agent-device says it does

--- name: agent-device description: Automates interactions for Apple-platform apps (iOS, tvOS, macOS) and Android devices.
SKILL.md
Use when navigating apps, taking snapshots/screenshots, tapping, typing, scrolling, or extracting UI info across mobile, TV, and desktop targets.
SKILL.md
--- # agent-device Use this skill as a router with mandatory defaults.
SKILL.md
npx skills add https://github.com/callstackincubator/agent-skills --skill agent-device

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs6.6k
repo stars1.6k
Security audit3 / 3 scanners passed
Last updatedJuly 25, 2026
Repositorycallstackincubator/agent-skills

When should developers use agent-device and what problem does it solve?

Automates interactions for Apple-platform apps (iOS, tvOS, macOS) and Android devices. Use when navigating apps, taking snapshots/screenshots, tapping, typing, scrolling, or extracting UI info across

Who is it for?

Developers working with agent-device patterns described in the skill documentation.

Skip if: Skip when cached docs are empty or the task is outside the skill's documented scope.

When should I use this skill?

Automates interactions for Apple-platform apps (iOS, tvOS, macOS) and Android devices. Use when navigating apps, taking snapshots/screenshots, tapping, typing, scrolling, or extracting UI info across

What you get

Grounded guidance and workflows from SKILL.md for agent-device.

  • device screenshots
  • UI exploration reports
  • interaction verification logs

Files

SKILL.mdMarkdownGitHub ↗

agent-device

Use this skill as a router with mandatory defaults. Read this file first. For normal device tasks, always load references/bootstrap-install.md and references/exploration.md before acting. Use bootstrap to confirm or establish deterministic setup. Use exploration for UI inspection, interaction, and verification once the app session is open.

Default operating rules

  • Start conservative. Prefer read-only inspection before mutating the UI.
  • Use plain snapshot when the task is to verify what text or structure is currently visible on screen.
  • Use snapshot -i only when you need interactive refs such as @e3 for a requested action or targeted query.
  • Avoid speculative mutations. You may take the smallest reversible UI action needed to unblock inspection or complete the requested task, such as dismissing a popup, closing an alert, or clearing an unintended surface.
  • Do not browse the web or use external sources unless the user explicitly asks.
  • Re-snapshot after meaningful UI changes instead of reusing stale refs.
  • Prefer @ref or selector targeting over raw coordinates.
  • Ensure the correct target is pinned and an app session is open before interacting.
  • Keep the loop short: open -> inspect/act -> verify if needed -> close.

Default flow

1. Load references/bootstrap-install.md and references/exploration.md before acting on a normal device task. 2. Use bootstrap first to confirm or establish the correct target, app install, and open app session. 3. Once the app session is open and stable, use exploration for inspection, interaction, and verification. 4. Start with plain snapshot if the goal is to read or verify what is visible. 5. Escalate to snapshot -i only if you need refs for interactive exploration or a requested action. 6. Use get, is, or find before mutating the UI when a read-only command can answer the question. 7. End by capturing proof if needed, then close.

QA modes

  • Open-ended bug hunt with reporting: use ../dogfood/SKILL.md.
  • Pass/fail QA from acceptance criteria: stay in this skill, start with references/bootstrap-install.md, then use the QA loop in references/exploration.md.

Required references

  • For every normal device task, after reading this file, load references/bootstrap-install.md first, then references/exploration.md, before acting.
  • Use bootstrap to confirm or establish deterministic setup, especially in sandbox or cloud environments.
  • Use exploration once the app session is open and stable.
  • Load additional references only when their scope is needed.

Decision rules

  • Use plain snapshot when you need to verify whether text is visible.
  • Use snapshot -i mainly for interactive exploration and choosing refs.
  • Use get, is, or find when they can answer the question without changing UI state.
  • Use fill to replace text.
  • Use type to append text.
  • When a task asks to "go back", use plain back for predictable app-owned navigation and reserve back --system for platform back gestures or button semantics.
  • Use type --delay-ms or fill --delay-ms for debounced search fields that drop characters when typed too quickly.
  • If there is no simulator, no app install, or no open app session yet, switch to bootstrap-install.md instead of improvising setup steps.
  • Use the smallest unblock action first when transient UI blocks inspection, but do not navigate, search, or enter new text just to make the UI reveal data unless the user asked for that interaction.
  • Do not use external lookups to compensate for missing on-screen data unless the user asked for them.
  • If the needed information is not exposed on screen, say that plainly instead of compensating with extra navigation, text entry, or web search.
  • Prefer @ref or selector targeting over raw coordinates.

Additional references

  • Need logs, network, alerts, permissions, or failure triage: references/debugging.md
  • Need screenshots, diff, recording, replay maintenance, or perf data: references/verification.md
  • Need desktop surfaces, menu bar behavior, or macOS-specific interaction rules: references/macos-desktop.md
  • Need remote HTTP transport, --remote-config launches, or tenant leases on a remote macOS host: references/remote-tenancy.md

Related skills

How it compares

Pick agent-device over browser DevTools skills when the target is a native mobile or desktop app rather than a web page.

FAQ

What does agent-device do?

Automates interactions for Apple-platform apps (iOS, tvOS, macOS) and Android devices. Use when navigating apps, taking snapshots/screenshots, tapping, typing, scrolling, or extracting UI info across mobile, TV, and desk

When should I invoke agent-device?

Automates interactions for Apple-platform apps (iOS, tvOS, macOS) and Android devices. Use when navigating apps, taking snapshots/screenshots, tapping, typing, scrolling, or extracting UI info across mobile, TV, and desk

Where is the source documentation?

Ground claims in SKILL.md excerpts and linked reference files from the cached docs.

Is Agent Device safe to install?

skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.