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

Vega Multi Tv Migration

skill-amazonappdev-devices-agent-skills-vega-multi-tv-migration · by AmazonAppDev

Migrate Vega OS (Amazon Fire TV) applications to multi-platform React Native monorepo supporting Android TV, Apple TV, and other platforms. Covers analysis, implementation, and native module integration. Use when migrating TV apps to support multiple platforms or building new multi-platform TV applications.

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

Install

$ agentstack add skill-amazonappdev-devices-agent-skills-vega-multi-tv-migration

✓ 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-amazonappdev-devices-agent-skills-vega-multi-tv-migration)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo 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 Vega Multi Tv Migration? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Vega Multi-Platform Migration

Overview

Migrate Vega OS (Fire TV) apps to multi-platform React Native monorepo with 70-85% code reuse across Android TV, Apple TV, and Vega OS.

When to Apply

Use this skill when user mentions:

  • Migrating Vega/Fire TV app to other platforms
  • Building multi-platform TV application
  • Converting single-platform TV app to monorepo
  • Adding Android TV or Apple TV support
  • Sharing code between TV platforms
  • Setting up Yarn workspaces for TV apps

Phase Priority Guide

| Priority | Phase | Impact | When to Use | |----------|-------|--------|-------------| | 1 | Analysis | CRITICAL | Starting migration, no existing analysis | | 2 | Implementation | CRITICAL | Have analysis, need monorepo structure | | 3 | Platform Support | HIGH | Have working Vega monorepo, adding platforms | | 4 | Configuration | MEDIUM | Troubleshooting build/resolution issues |

Quick Decision Tree

User has existing Vega app?
├─ YES → Do they have migration analysis?
│  ├─ NO → Start Phase 1 (Analysis)
│  └─ YES → Is monorepo set up?
│     ├─ NO → Start Phase 2 (Implementation)
│     └─ YES → Start Phase 3 (Platform Support)
└─ NO → Starting from scratch?
   └─ YES → Skip Phase 1, start Phase 2 with new project

Quick Reference

Critical: Project Structure

# Verify monorepo structure exists
ls -la packages/shared packages/vega packages/expotv

# Check Yarn workspaces configured
grep -A5 "workspaces:" package.json

Critical: Dependency Classification

Common patterns for analysis:

  • Shared: Business logic, UI components, utilities, state management
  • Platform-specific: Navigation, video players, DRM, native modules
  • VMRP-compatible: Standard RN libraries that map to Vega equivalents

High: VMRP Configuration

Quick check if VMRP is working:

# Should see @vega-tv/react-native-module-resolver-preset
grep "vmrp" packages/vega/babel.config.js

References

Phase 1: Analysis (analysis-*)

| File | Impact | Description | |------|--------|-------------| | [PHASE1ANALYSIS.md](references/PHASE1ANALYSIS.md) | CRITICAL | Codebase analysis, dependency classification, migration planning |

Use when: Starting migration, no existing analysis document

Phase 2: Implementation (impl-*)

| File | Impact | Description | |------|--------|-------------| | [PHASE2IMPLEMENTATION.md](references/PHASE2IMPLEMENTATION.md) | CRITICAL | Monorepo scaffolding, code migration, VMRP setup with template references |

Use when: Have analysis, ready to build monorepo structure

Phase 3: Platform Support (platform-*)

| File | Impact | Description | |------|--------|-------------| | [PHASE3PLATFORMSUPPORT.md](references/PHASE3PLATFORMSUPPORT.md) | HIGH | Android TV and Apple TV implementation |

Use when: Have working Vega monorepo, adding new platforms

Templates

All configuration templates in [assets/templates/](assets/templates/) with companion .md docs:

  • root-package.json - Yarn workspaces setup
  • root-tsconfig.json - TypeScript project references
  • yarnrc.yml - Dependency deduplication (CRITICAL)
  • shared-package.json + .md - Shared package config with rules
  • vega-metro.config.js - Vega Metro with monorepo resolution
  • expotv-package.json + .md - Expo TV package config
  • expotv-app.json + .md - Expo TV configuration with plugins
  • expotv-metro.config.js - Expo Metro with TV extensions

Problem → Skill Mapping

| Problem | Start With | |---------|------------| | Need to analyze existing Vega app | PHASE1ANALYSIS.md | | Have analysis, need monorepo setup | PHASE2IMPLEMENTATION.md → templates | | Monorepo exists, adding Android TV | PHASE3PLATFORMSUPPORT.md | | Metro resolution errors | PHASE2IMPLEMENTATION.md → Metro config | | Duplicate React versions | PHASE2IMPLEMENTATION.md → .yarnrc.yml | | VMRP not mapping imports | PHASE2IMPLEMENTATION.md → VMRP section | | TypeScript path errors | PHASE2IMPLEMENTATION.md → TypeScript config | | Native module integration | PHASE3PLATFORMSUPPORT.md → Native Modules | | Build configuration issues | PHASE2IMPLEMENTATION.md → Configuration Files | | Starting from scratch | PHASE2IMPLEMENTATION.md (skip Phase 1) |

Workflow

  1. Use the decision tree above to determine the starting phase
  2. Load the appropriate reference file for that phase
  3. Follow Quick Start → Deep Dive pattern in each reference
  4. Verify at each phase's checkpoint before moving to the next phase
  5. Use [VALIDATIONCHECKLIST.md](assets/templates/VALIDATIONCHECKLIST.md) for comprehensive verification

Attribution

Based on Vega OS multi-platform migration patterns and React Native monorepo best practices.

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.