Remote OpenClaw
Menu
SkillsMCPPluginsFree guideDigestSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise
Remote OpenClaw
SkillsMCPPluginsFree guideDigestSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise

Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Skills/software-mansion/argent/argent-metro-debugger
argent-metro-debugger logo

argent-metro-debugger

software-mansion/argent
3K installs1K stars
Run it on Hostinger →up to 70% off + an extra 10% with code ZACAARON10Free API →

Installation

npx skills add https://github.com/software-mansion/argent --skill argent-metro-debugger

Summary

Debug a JS runtime via CDP using argent debugger tools. Primary path is React Native via Metro (iOS / Android); a subset of the tools (debugger-connect, debugger-status, debugger-evaluate, debugger-log-registry) also drive an Electron app's renderer through the same surface. Use when connecting to the runtime, inspecting React components, reading console logs, or evaluating JavaScript.

SKILL.md

1. Prerequisites

For React Native (iOS / Android): requires Metro dev server running (default localhost:8081) and a React Native app connected to Metro (at least one CDP target). Verify via debugger-status.

For Electron: requires an Electron app already booted via boot-device with electronAppPath. The debugger re-uses the page CDP session that boot opens — port is ignored, device_id is the electron-cdp-<port> value returned by boot-device. Only debugger-connect, debugger-status, debugger-evaluate, and debugger-log-registry work on Electron; debugger-component-tree, debugger-reload-metro, debugger-inspect-element, the view-network- tools, and the react-profiler- / profiler-* tools are RN-only and reject Electron at the capability gate with Tool 'X' is not supported on electron app.

Android: reverse port for Metro

Android emulators and physical devices do not resolve the host's localhost by default. Before the RN app can reach Metro, forward port 8081 (or whichever port Metro is on) from the device back to the host:

adb -s <serial> reverse tcp:8081 tcp:8081

<serial> is the Android serial from list-devices. Once reversed, the app on the device connects to Metro just like an iOS simulator does, and all debugger- / network- / react-profiler-* tools work unchanged. If the device restarts or adb drops, re-run the command. A failing Metro connection on Android almost always means adb reverse has not been done or has been lost.

2. Tool Overview

All tools accept port (default 8081) AND device_id (the iOS Simulator UDID or Android serial, a.k.a. logicalDeviceId — the CDP-reported id that matches the device). Always make sure you target the correct app on the correct device.

One Metro port can serve multiple connected devices (e.g. two simulators on localhost:8081, or an iOS simulator alongside an Android emulator with adb reverse set up). device_id pins every debugger/network/profiler call to a specific device so sessions do not collide.

Connect & diagnostics

ToolPurpose
debugger-connectConnect to the JS runtime's CDP (Metro on iOS / Android; the page CDP session on Electron). Returns port, projectRoot (empty on Electron), deviceName, appName, logicalDeviceId, isNewDebugger, connected. The returned logicalDeviceId is the device_id for every subsequent debugger call.
debugger-statusLike connect + loadedScripts, enabledDomains, sourceMapReady (no-op on Electron). Use to diagnose.

Reload & recovery

ToolPurpose
debugger-reload-metroReload all connected apps (like pressing "r" in Metro terminal). Needs a CDP target.
restart-appTerminate and relaunch the app by device id and bundleId. Use when app lost Metro connection.

Inspection & console

ToolPurpose
debugger-component-treeFull React fiber tree (names, depth, bounding rects, tap coordinates).
debugger-inspect-elementInspect at (x, y) using logical pixel coordinates (not normalized 0-1): component hierarchy with source file:line and code fragment. See references/source-maps.md.
debugger-log-registryGet log summary (counts, clusters, file path). Then use Grep/Read on the flat log file for details.
debugger-evaluateRun a JS expression in the app runtime.

---

3. Component Inspection

debugger-component-tree vs debugger-inspect-element

debugger-component-treedebugger-inspect-element
Best forLayout overview; finding tap targets; user-defined component hierarchyIdentifying a visible element and tracing it to its source file
Use when"What's on screen and where?""What component is this and where is it defined?"

Both can point to source files, but inspect-element is purpose-built for source tracing. component-tree is for orientation and tap-target discovery.

includeSkipped guidance

Applies to both debugger-component-tree and debugger-inspect-element. Set to true only when debugging filter behavior — e.g., an expected component is missing from output, or you need to inspect a very specific branch of the tree (not just an overview).

Warning: Output can be very large. Always combine with maxNodes (component-tree) or maxItems (inspect-element) and increase it incrementally (e.g., start at 50, then grow). Do not use includeSkipped without a limit on large apps.

---

4. Golden Rules

  1. debugger-status first when something fails — it runs discovery, connection, and returns diagnostics.
  2. "No CDP targets" → get the app to connect to Metro — use restart-app on the device, then retry debugger-status.
  3. Never assume one failure is permanent — follow recovery steps before asking the user. For starting Metro and full failure recovery, see argent-react-native-app-workflow and references/failure-scenarios.md.

---

5. Reading Console Logs (Log Registry)

Logs are written to a flat log file on disk. Use the log-registry → grep pattern instead of reading logs inline.

Workflow

  1. Call debugger-log-registry — returns: file (log path), totalEntries, byLevel, clusters (top message groups with counts and source file info)
  2. Search the file using Grep or Read with patterns from the response.

Large log files: If totalEntries exceeds 10 000, delegate the grep exploration to an Explore subagent — pass it the file path, the entry format, and the patterns you need.

Flat log format

One entry per line — fields (whitespace-separated, | delimiter before message)

FieldExampleNotes
[L:<id>][L:42]Unique grep anchor
<timestamp>2026-03-17T14:30:00.000ZISO 8601
<LEVEL>ERROR, WARN , LOG Uppercase, padded to 5 chars
<source>src/api/user.ts:42 or -Relative path from source map; - if unavailable
<message>Failed login attemptFull message; embedded newlines replaced with space

Source attribution (file + line) is also available in clusters returned by debugger-log-registry.

Log files and messages can be large - Always scope your search, treat the file like a database, not a document.

When reading from the log file:

  • Never Read the log file directly. Use grep or shell commands with limits using the above file format tips.
  • Default to -m 50 unless you need more.
  • Use tail -N recent entries.
  • clusters[].message gives you the exact text which you may look for

If the file is too large Delegate to an Explore subagent with the file path, the format spec above, and the specific patterns you need.

---

Quick Reference

ActionTool
Diagnose / check connectiondebugger-status
Connect to CDP (Metro / Electron)debugger-connect
Reload JS (already connected)debugger-reload-metro
Relaunch app on devicerestart-app
Inspect component at pointdebugger-inspect-element
Full component treedebugger-component-tree
Console log overviewdebugger-log-registry (summary + log file path for Grep/Read)
Evaluate JSdebugger-evaluate

Score

0–100
71/ 100

Grade

B

Popularity23/30

2,597 installs — solid traction. Source repo has 1,295 GitHub stars.

Completeness27/30

Documented: full SKILL.md body, description, one-line install. Missing: category/license metadata.

Trust15/25

Community skill with a public GitHub source repository you can review.

Freshness6/15

No update timestamp is tracked for this skill in our catalog.

Scored automatically from popularity, completeness, trust, and freshness — computed only from data in our catalog, never fabricated.

Proud of your score? Add this badge to your README.

Paste a snippet into your GitHub README. The badge updates automatically and links back to this page.

Argent Metro Debugger skill score badge previewScore badge

Markdown

[![Argent Metro Debugger skill](https://www.remoteopenclaw.com/skills/software-mansion/argent/argent-metro-debugger/badges/score.svg)](https://www.remoteopenclaw.com/skills/software-mansion/argent/argent-metro-debugger)

HTML

<a href="https://www.remoteopenclaw.com/skills/software-mansion/argent/argent-metro-debugger"><img src="https://www.remoteopenclaw.com/skills/software-mansion/argent/argent-metro-debugger/badges/score.svg" alt="Argent Metro Debugger skill"/></a>

Argent Metro Debugger FAQ

How do I install the Argent Metro Debugger skill?

Run “npx skills add https://github.com/software-mansion/argent --skill argent-metro-debugger” in your terminal. The skill is added to your agent's skills directory and picked up automatically on the next run — no restart or extra configuration needed.

What does the Argent Metro Debugger skill do?

Debug a JS runtime via CDP using argent debugger tools. Primary path is React Native via Metro (iOS / Android); a subset of the tools (debugger-connect, debugger-status, debugger-evaluate, debugger-log-registry) also drive an Electron app's renderer through the same surface. Use when connecting to the runtime, inspecting React components, reading console logs, or evaluating JavaScript. The full SKILL.md on this page shows the exact instructions the skill gives your agent.

Is the Argent Metro Debugger skill free?

Yes. Argent Metro Debugger is a free, open-source skill published from software-mansion/argent. As with any third-party skill, review the source repository before installing it into an agent with sensitive access.

Does Argent Metro Debugger work with Claude Code and OpenClaw?

Yes. Skills use the portable SKILL.md format, so Argent Metro Debugger works with Claude Code, OpenClaw, Codex, Hermes, and any other agent that reads SKILL.md skills.

Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →

Categories

Command ExecutionRemote Code ExecutionPrompt InjectionData Exfiltration
View on GitHub

Recommended skills

Browse all →
find-skills logo

find-skills

vercel-labs/skills

2.7M installsInstall
frontend-design logo

frontend-design

anthropics/skills

720K installsInstall
grill-me logo

grill-me

mattpocock/skills

700K installsInstall
agent-browser logo

agent-browser

vercel-labs/agent-browser

596K installsInstall
grill-with-docs logo

grill-with-docs

mattpocock/skills

593K installsInstall
vercel-react-best-practices logo

vercel-react-best-practices

vercel-labs/agent-skills

590K installsInstall

Browse

Skills by category

Frontend250Git198Data154Testing120Design105Docs103Security96Automation87Backend76Devops37Productivity29Mcp23

Related guides

Hand-picked reading to help you choose, install, and use agent skills.

Guide10 Openclaw Skills Every Nextjs Developer NeedsGuideHow To Debug Openclaw Skills Not WorkingGuideBest Openclaw Skills 2026

Remote OpenClaw

AI agent skills directory, marketplace, and workflow hub for OpenClaw, Hermes Agent, Claude Code, Codex, and MCP-powered operator stacks.

The Agent Stack: weekly agent tooling digest, free.

Explore

  • Home
  • Skills Directory
  • Claude Code Skills
  • Codex Skills
  • MCP Clients
  • Marketplace
  • Hermes Ecosystem
  • Free guide
  • Learn
  • OpenClaw for Creators
  • OpenClaw for Founders
  • Blog
  • The Agent Stack (Digest)

More

  • Submit a Tool
  • Advertise
  • Playbook
  • Free Tools
  • API
  • Shipping
  • Contact
  • Terms
  • Privacy

Know a company that should advertise here? Refer them and earn 10% — up to $300 per referral.

© 2026 Remote OpenClaw
Fazier badgeFeatured on Twelve ToolsFeatured on Wired BusinessRemote OpenClaw - Featured on AI Agents DirectoryListed on Turbo0Featured on Uneed