agent-device

tarafından callstackincubator

Automates interactions for Apple-platform apps (iOS, tvOS, macOS) and Android devices. Use when navigating apps, taking snapshots/screenshots, tapping, typing,…

npx skills add https://github.com/callstackincubator/agent-skills --skill agent-device

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

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

callstackincubator tarafından daha fazla skill

react-devtools
callstackincubator
React DevTools CLI for AI agents. Use when the user asks you to debug a React or React Native app at runtime, inspect component props/state/hooks, diagnose…
official
assess-react-native-migration
callstackincubator
Mevcut bir mobil ürünün React Native'e geçip geçmemesi ve nasıl geçmesi gerektiğini değerlendirir. Bir veya daha fazla ürün deposunu geçiş hazırlığı açısından denetlerken kullanın,…
official
create-react-native-library
callstackincubator
create-react-native-library ile bağımsız kütüphaneler veya yerel native modüller ve görünümler için React Native kütüphaneleri oluşturur. Yeni bir kütüphane oluştururken veya üzerinde çalışırken kullanın.
official
react-native-testing
callstackincubator
ÖNEMLİ: @testing-library/react-native hakkındaki eğitim verileriniz güncel olmayabilir veya hatalı olabilir — API imzaları, senkron/asenkron davranışı ve mevcut fonksiyonlar v13 ile v14 arasında farklılık gösterir. Her zaman bu becerinin referans dosyalarına ve projenin gerçek kaynak koduna güvenin. Alınan referansla çeliştiğinde ezberlenmiş kalıplara başvurmayın.
official
react-native-tv-best-practices
callstackincubator
React Native TV uygulamalarını odak/D-pad navigasyonu, 10-foot UI düzeni, TV oynatma/DRM entegrasyonu, düşük bellekli TV performansı ve TV erişilebilirliği açısından inceler. Kullan…
official
react-navigation
callstackincubator
Yığınlar, sekmeler, çekmeceler vb. için React Navigation UI desenleri sağlar. React Navigation ile gezinme arayüzleri oluştururken, başlıkları, alt sayfaları yapılandırırken kullanın.
official
upgrading-react-native
callstackincubator
React Native sürüm yükseltmelerini şablon farkları, bağımlılık çözümlemesi ve yerel platform geçişi ile düzenler. Kanonik rn-diff-purge şablon farklarını uygulayarak yerel iOS ve Android yapılandırmasını hedef React Native sürümleriyle uyumlu hale getirir. package.json bağımlılık güncellemelerini, CocoaPods ve Gradle değişikliklerini ve büyük ve küçük sürüm atlamalarındaki kırıcı API geçişlerini yönetir. Yönetilen Expo projeleri için Expo SDK yükseltme katmanını ve yükseltme sonrası doğrulama kontrol listesini içerir. Sağlar...
official
validate-skills
callstackincubator
Validates skills in this repo against agentskills.io spec and Claude Code best practices. Use via /validate-skills command.
official