Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Control Android/Google TV via ADB over network. Use when: (1) User asks to play something on their TV, (2) Launch a streaming app (Netflix, Max, Disney+, etc.), (3) Control TV playback, volume, or power, (4) Navigate TV UI or search for content, (5) Take screenshots of TV screen. Requires ADB installed and TV with ADB debugging enabled on the same network. --- name: android-tv-remote description: "Control Android/Google TV via ADB over network. Use when: (1) User asks to play something on their TV, (2) Launch a streaming app (Netflix, Max, Disney+, etc.), (3) Control TV playback, volume, or power, (4) Navigate TV UI or search for content, (5) Take screenshots of TV screen. Requires ADB installed and TV with ADB debugging enabled on the same network." --- Android TV Rem Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Freshness
Last checked 2/25/2026
Best For
android-tv-remote is best for be workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
Control Android/Google TV via ADB over network. Use when: (1) User asks to play something on their TV, (2) Launch a streaming app (Netflix, Max, Disney+, etc.), (3) Control TV playback, volume, or power, (4) Navigate TV UI or search for content, (5) Take screenshots of TV screen. Requires ADB installed and TV with ADB debugging enabled on the same network. --- name: android-tv-remote description: "Control Android/Google TV via ADB over network. Use when: (1) User asks to play something on their TV, (2) Launch a streaming app (Netflix, Max, Disney+, etc.), (3) Control TV playback, volume, or power, (4) Navigate TV UI or search for content, (5) Take screenshots of TV screen. Requires ADB installed and TV with ADB debugging enabled on the same network." --- Android TV Rem
Public facts
4
Change events
1
Artifacts
0
Freshness
Feb 25, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Feb 25, 2026
Vendor
Bronbot
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Setup snapshot
git clone https://github.com/bronbot/android-tv-remote.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Bronbot
Protocol compatibility
OpenClaw
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
4
Snippets
0
Languages
typescript
Parameters
bash
TV=192.168.0.6 # Set to TV's IP # Connect scripts/tv-remote.sh $TV connect # List installed streaming apps scripts/tv-remote.sh $TV apps # Launch an app scripts/tv-remote.sh $TV launch com.wbd.stream # Take screenshot (returns file path) scripts/tv-remote.sh $TV screenshot /tmp/tv.png # Navigate UI scripts/tv-remote.sh $TV navigate left up up up enter # Type text in search scripts/tv-remote.sh $TV type "ten year old tom" # Volume control scripts/tv-remote.sh $TV volume up 5 scripts/tv-remote.sh $TV volume mute # Send key scripts/tv-remote.sh $TV key HOME scripts/tv-remote.sh $TV key PLAY # Power on/off scripts/tv-remote.sh $TV power
bash
# Play a known show (uses learned sequence)
scripts/quick-play.sh $TV play tom
# List everything in the catalog
scripts/quick-play.sh $TV catalog
# Add a new show to the catalog (empty sequence, will learn on first play)
scripts/quick-play.sh $TV add-show "breaking bad" com.netflix.ninja "Breaking Bad" "bb"
# Save a navigation sequence after successfully navigating manually
scripts/quick-play.sh $TV save-sequence "ten year old tom" '[{"action":"launch","package":"com.wbd.stream","waitMs":8000},{"action":"key","key":"ENTER","note":"select profile","waitMs":5000},{"action":"key","key":"ENTER","note":"resume playback","waitMs":2000}]'
# Boost confidence after successful playback
scripts/quick-play.sh $TV boost-confidence "ten year old tom"
# Save a deep link (fastest possible — skips all navigation)
scripts/quick-play.sh $TV deep-link "ten year old tom" "https://play.max.com/show/..."bash
scripts/quick-play.sh $TV add-show "show name" com.package "Show Name" "alias1" "alias2"
scripts/quick-play.sh $TV save-sequence "show name" '[steps...]'markdown
### TV - IP: 192.168.0.6 - Brand: Sony - Model: BRAVIA 4K VH2 - Profile: Jorge
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Control Android/Google TV via ADB over network. Use when: (1) User asks to play something on their TV, (2) Launch a streaming app (Netflix, Max, Disney+, etc.), (3) Control TV playback, volume, or power, (4) Navigate TV UI or search for content, (5) Take screenshots of TV screen. Requires ADB installed and TV with ADB debugging enabled on the same network. --- name: android-tv-remote description: "Control Android/Google TV via ADB over network. Use when: (1) User asks to play something on their TV, (2) Launch a streaming app (Netflix, Max, Disney+, etc.), (3) Control TV playback, volume, or power, (4) Navigate TV UI or search for content, (5) Take screenshots of TV screen. Requires ADB installed and TV with ADB debugging enabled on the same network." --- Android TV Rem
Control Android/Google TV devices via ADB over the local network. Navigate UIs, launch apps, search for content, and play shows — all through text commands.
adb installed (sudo apt install adb)Helper script at scripts/tv-remote.sh:
TV=192.168.0.6 # Set to TV's IP
# Connect
scripts/tv-remote.sh $TV connect
# List installed streaming apps
scripts/tv-remote.sh $TV apps
# Launch an app
scripts/tv-remote.sh $TV launch com.wbd.stream
# Take screenshot (returns file path)
scripts/tv-remote.sh $TV screenshot /tmp/tv.png
# Navigate UI
scripts/tv-remote.sh $TV navigate left up up up enter
# Type text in search
scripts/tv-remote.sh $TV type "ten year old tom"
# Volume control
scripts/tv-remote.sh $TV volume up 5
scripts/tv-remote.sh $TV volume mute
# Send key
scripts/tv-remote.sh $TV key HOME
scripts/tv-remote.sh $TV key PLAY
# Power on/off
scripts/tv-remote.sh $TV power
Critical pattern: TV UIs cannot be navigated blind. Always use a screenshot → analyze → navigate → screenshot loop.
scripts/tv-remote.sh $TV screenshot /tmp/tv.pngscripts/tv-remote.sh $TV navigate <directions>To play a show/movie on a streaming app:
scripts/tv-remote.sh $TV connectscripts/tv-remote.sh $TV launch <package> — see references/app-packages.md for package namessleep 5 && scripts/tv-remote.sh $TV screenshot /tmp/tv.pngscripts/tv-remote.sh $TV key ENTERsleep 8 — streaming apps are slow to loadscripts/tv-remote.sh $TV type "show name"sleep 3adb -s $TV:5555 shell am force-stop com.netflix.ninja%s when using raw adb shell input text. The helper script handles this automaticallyThe skill gets faster over time. Every successful navigation is saved to data/tv-catalog.json and replayed instantly next time.
quick-play.sh save-sequencequick-play.sh play "tom" replays the saved sequence in seconds — no screenshots neededquick-play.sh boost-confidence "tom" (caps at 1.0)# Play a known show (uses learned sequence)
scripts/quick-play.sh $TV play tom
# List everything in the catalog
scripts/quick-play.sh $TV catalog
# Add a new show to the catalog (empty sequence, will learn on first play)
scripts/quick-play.sh $TV add-show "breaking bad" com.netflix.ninja "Breaking Bad" "bb"
# Save a navigation sequence after successfully navigating manually
scripts/quick-play.sh $TV save-sequence "ten year old tom" '[{"action":"launch","package":"com.wbd.stream","waitMs":8000},{"action":"key","key":"ENTER","note":"select profile","waitMs":5000},{"action":"key","key":"ENTER","note":"resume playback","waitMs":2000}]'
# Boost confidence after successful playback
scripts/quick-play.sh $TV boost-confidence "ten year old tom"
# Save a deep link (fastest possible — skips all navigation)
scripts/quick-play.sh $TV deep-link "ten year old tom" "https://play.max.com/show/..."
When the user says "play X":
Check catalog: scripts/quick-play.sh $TV play "X"
Screenshot-navigate loop (first time or low confidence):
scripts/quick-play.sh $TV add-show "show name" com.package "Show Name" "alias1" "alias2"
scripts/quick-play.sh $TV save-sequence "show name" '[steps...]'
After playback confirmed:
scripts/quick-play.sh $TV boost-confidence "show name"scripts/quick-play.sh $TV update "show name" '{"lastSeason":1,"lastEpisode":11}'App patterns are also learned:
appPatterns so new shows on the same app start with knowledge| Confidence | Behavior | |-----------|----------| | 0.0 | No learned sequence — full screenshot loop | | 0.1 - 0.4 | Sequence exists but unverified — execute + screenshot to verify | | 0.5 - 0.6 | Used a few times — execute + screenshot only at end | | 0.7 - 0.9 | Reliable — execute blind, screenshot only if user reports failure | | 1.0 | Bulletproof — execute blind, no verification needed |
The catalog in data/tv-catalog.json grows automatically:
Store TV details in TOOLS.md:
### TV
- IP: 192.168.0.6
- Brand: Sony
- Model: BRAVIA 4K VH2
- Profile: Jorge
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/bronbot-android-tv-remote/snapshot"
curl -s "https://xpersona.co/api/v1/agents/bronbot-android-tv-remote/contract"
curl -s "https://xpersona.co/api/v1/agents/bronbot-android-tv-remote/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 5d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | 🌟 Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/bronbot-android-tv-remote/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/bronbot-android-tv-remote/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/bronbot-android-tv-remote/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/bronbot-android-tv-remote/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/bronbot-android-tv-remote/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/bronbot-android-tv-remote/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-16T23:29:40.815Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "be",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:be|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Bronbot",
"href": "https://github.com/bronbot/android-tv-remote",
"sourceUrl": "https://github.com/bronbot/android-tv-remote",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-25T02:23:41.957Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/bronbot-android-tv-remote/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/bronbot-android-tv-remote/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-25T02:23:41.957Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/bronbot-android-tv-remote/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/bronbot-android-tv-remote/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to android-tv-remote and adjacent AI workflows.