AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Add Wear Os App

skill-khadinakbarlabs-expo-mobile-app-builder-add-wear-os-app · by khadinakbarlabs

Add a Wear OS companion app (Compose for Wear). Always native Kotlin - RN doesn't run on Wear. Use when the user says 'wear os app', 'android watch app', 'wearable companion'.

No reviews yet
0 installs
16 views
0.0% view→install

Install

$ agentstack add skill-khadinakbarlabs-expo-mobile-app-builder-add-wear-os-app

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-khadinakbarlabs-expo-mobile-app-builder-add-wear-os-app)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Add Wear Os App? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Add Wear OS App

Wear OS 5 (current 2026). Compose for Wear is the only viable UI.

Reality

  • Wear OS app = separate Compose module, not RN
  • Pair with main app via Wearable Data Layer API
  • Build separately in wear/ directory in your repo
  • Submit as separate Play Store entry OR bundled

When to build

  • Activity tracking (fitness, sleep)
  • Notifications + replies on wrist
  • Quick logging (habit, tasks, mood)
  • Glanceable data (counter, streak, next workout)

When NOT to build

  • Casual content consumption
  • Anything text-heavy
  • One-off feature (low ROI — small Wear user base)

Project setup

Open Android Studio → New → Wear OS module in your existing project.

android/
  app/             # Phone app
  wear/            # Wear OS app

Build with Gradle:

cd android
./gradlew :wear:assembleRelease

Compose for Wear

// MainActivity.kt
@Composable
fun MainScreen() {
  ScalingLazyColumn {
    item { Text("Today's streak") }
    item { Card { Text("7 days") } }
    item { Chip(onClick = { logHabit() }, label = { Text("Log it") }) }
  }
}

Data Layer (sync from phone)

// Send data from phone:
Wearable.getDataClient(context).putDataItem(...)

// Receive on watch:
class WearListener : WearableListenerService() {
  override fun onDataChanged(events: DataEventBuffer) { ... }
}

Health permissions (if fitness-related)

  • ACTIVITY_RECOGNITION
  • BODY_SENSORS
  • Permissions checked separately on watch

Common gotchas

  • Wear emulator is slow → test on real Wear device
  • Battery is brutal — limit background work
  • No web view, no RN — Kotlin only
  • Wear apps can submit separately or as embedded in phone app's APK
  • Battery-conscious UI: dark backgrounds, no animations

Build constraint

This skill is for if the user is OK dropping to Kotlin. Otherwise: skip Wear OS for MVP, add post-launch if data shows demand.

Pair with

  • add-gemini-nano (Wear devices don't support, so skip)
  • set-up-eas-android (Wear is a separate Gradle task)

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.