debroid

作者 PatilShreyas已验证

Autonomous, headless Android debugger designed for AI coding agents. Inspect runtime memory, set breakpoints, and debug live apps.

189
Stars
7
Forks
Kotlin
语言
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/PatilShreyas/debroid

快速入门

使用 debroid 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

Debroid 🤖⚡

The Headless Android Debugger for AI Agents

CI Release License

Debroid (DEBug + AnDROID) is a headless CLI that speaks the Java Debug Wire protocol (JDWP) so AI agents — Claude Code, Grok Build, Codex, OpenCode, Cursor, Antigravity, or anything with a terminal — can debug a live Android app the way a human would in Android Studio: set breakpoints, catch exceptions, step through code, inspect and mutate variables, and watch fields — all without a GUI, and all through strict, machine-parseable JSON.

❓ Why it exists

Traditional Android development environments are highly visual. While AI coding assistants can write code, they are effectively "blind" when it comes to runtime debugging because they cannot click through the Android Studio UI to inspect memory or pause execution.

Debroid closes this gap. It acts as a translation layer between the raw terminal (which AI agents are great at using) and the Android Virtual Machine. By providing a CLI that outputs deterministic JSON, an AI agent can autonomously hypothesize a bug, launch the app, trap the exact line of code, read the live state of the device, and evaluate a fix — granting agents the same deep runtime awareness previously reserved for human developers.

✨ Features

  • 🔴 Breakpoints: Set line breakpoints in any class. Debroid automatically defers them if the class isn't loaded yet.
  • ⚡ Exception Traps: Catch caught or uncaught exceptions globally across the app.
  • 👀 Watchpoints: Monitor field access and modification live.
  • 🔬 Deep Inspection: Recursively inspect deep object memory, local variables, and call frames with built-in cycle-guards.
  • 🧬 Live Mutation: Modify variable memory dynamically on paused threads using set-var.
  • 🧮 Live Evaluation: Fully-featured expression evaluator supporting Java syntax, method calls, and arithmetic directly in the target VM.
  • 🐾 Stepping: Step Over, Step Into, Step Out, or Resume at will.
  • 🧵 Coroutine Aware: Built-in mechanism to extract shallow locals from Kotlin Continuation frames.

🚀 Installation

[!TIP] Let your AI Agent do it for you! Copy & paste this prompt directly to your AI agent:

Read https://raw.githubusercontent.com/PatilShreyas/debroid/main/README.md and install the Debroid CLI and its skill globally for me.

Prerequisites

  • Java JDK 11+ (JAVA_HOME)
  • Android SDK & adb configured in your PATH

Install the CLI

Option 1: Quick Install (Pre-built Release Binary) Run the one-liner script to download the latest release binary and install it:

curl -fsSL https://raw.githubusercontent.com/PatilShreyas/debroid/main/install.sh | bash

Option 2: Local Build Install (Build from Source) Clone the repository and build locally:

./install.sh
🗑️ How to uninstall

To completely remove Debroid from your system:

  1. Stop any active background daemon sessions:
    debroid stop
    
  2. Remove the binary executable from your user local directory:
    rm ~/.local/bin/debroid
    

🧠 AI Agent Skill Setup

Debroid is designed to be operated autonomously by AI agents. To teach your agent how to use Debroid effectively, provide it with the skill instructions (SKILL.md).

The exact AI skill instructions are automatically extracted by the CLI to ~/.debroid/skills/debroid-cli/SKILL.md on the first run.

Select your AI agent below and run the provided command to create a symbolic link so your agent always stays up to date when you update the Debroid CLI:

🤖 Antigravity & Antigravity CLI
mkdir -p ~/.gemini/skills/debroid && ln -s ~/.debroid/skills/debroid-cli/SKILL.md ~/.gemini/skills/debroid/SKILL.md
🟧 Claude Code
mkdir -p ~/.claude/skills/debroid && ln -s ~/.debroid/skills/debroid-cli/SKILL.md ~/.claude/skills/debroid/SKILL.md
🖱️ Cursor
mkdir -p .cursor/rules && ln -s ~/.debroid/skills/debroid-cli/SKILL.md .cursor/rules/debroid.mdc
✨ Grok Build
mkdir -p ~/.grok/skills/debroid && ln -s ~/.debroid/skills/debroid-cli/SKILL.md ~/.grok/skills/debroid/SKILL.md
🔓 OpenCode
mkdir -p ~/.config/opencode/skills/debroid && ln -s ~/.debroid/skills/debroid-cli/SKILL.md ~/.config/opencode/skills/debroid/SKILL.md
💻 Codex
mkdir -p ~/.codex/skills/debroid && ln -s ~/.debroid/skills/debroid-cli/SKILL.md ~/.codex/skills/debroid/SKILL.md

🔌 How it Works

Debroid separates the persistent debugging connection from the transient CLI commands to maintain state across agent invocations.

flowchart LR
    A["🤖 AI Agent\n(Terminal / CLI)"] <-->|Terminal Commands| B("⚡ Debroid Daemon\n(Background Server)")
    B <-->|JDWP over ADB| C["📱 Android App\n(Dalvik/ART VM)"]
  1. The AI Agent runs debroid commands in the terminal (e.g. debroid break ...).
  2. The Debroid CLI forwards these requests to the Debroid Daemon, which starts automatically in the background on the first command.
  3. The Debroid Daemon holds the long-lived JDWP socket connection open via ADB port forwarding, managing the breakpoints, event queue, and thread states of the Android App.
  4. The Daemon returns the result back to the CLI as a strict JSON payload, which the Agent reads from standard output.

📖 Command Reference

Here is the full list of commands and their signatures (note: all commands support global options -p, --port <int> / DEBROID_PORT environment variable, --version, and -h, --help; all JSON commands accept an optional --pretty flag to format response JSON, and an eager --schema flag to inspect output types):

CommandSignatureDescription
daemondebroid daemonStarts the persistent background daemon
stopdebroid stop [--pretty]Shuts down background daemon and detaches all active sessions
launchdebroid launch <app_id> [--suspend/--no-suspend] [--pretty]Launches app suspended and attaches (auto-clears set-debug-app on detach)
attachdebroid attach <app_id> [--suspend] [--pretty]Attaches to a running app
detachdebroid detach <session_id> [--pretty]Safely detaches debugger; for launch sessions also clears am set-debug-app
breakdebroid break <session_id> <file> <line> [-p/--package=<pkg>] [--pretty]Sets a line breakpoint (auto-defers if class isn't loaded yet)
remove-breakdebroid remove-break <session_id> <breakpoint_id> [--pretty]Removes a line breakpoint
catch-exceptiondebroid catch-exception <session_id> [class_name] [--caught] [--uncaught] [--pretty]Sets an exception breakpoint (default: --uncaught only)
remove-catch-exceptiondebroid remove-catch-exception <session_id> <exception_breakpoint_id> [--pretty]Removes an exception breakpoint
watchdebroid watch <session_id> <class_name> <field_name> [--access] [--modify] [--pretty]Sets a field watchpoint (default: access+modify)
remove-watchdebroid remove-watch <session_id> <watchpoint_id> [--pretty]Removes a watchpoint
pointsdebroid points <session_id> [--pretty]Lists all active and deferred breakpoints, exception points, and watchpoints for the session
threadsdebroid threads <session_id> [--pretty]Lists active threads
localsdebroid locals <session_id> <thread_id> [--pretty]Gets shallow local variables
pause-statedebroid pause-state <session_id> <thread_id> [--pretty]Gets frames, locals, and instance state
set-vardebroid set-var <session_id> <thread_id> <var_name> <new_value> [--pretty]Mutates local variable
evaldebroid eval <session_id> <thread_id> <expression...> [--pretty]Evaluates string expression
resumedebroid resume <session_id> [--pretty]Resumes all threads
polldebroid poll <session_id> [cursor=0] [--with-stacktrace] [--pretty]Polls for asynchronous debugger events
framesdebroid frames <session_id> <thread_id> [--pretty]Retrieves thread stack frames
coroutinedebroid coroutine <session_id> <continuation_id> [--pretty]Retrieves locals from a Continuation object
inspectdebroid inspect <session_id> <object_id> [-d/--max-depth=<int>] [--include-static] [--include-internal] [--pretty]Inspects object fields. Filters out static/synthetic noise by default.
stepdebroid step <session_id> <thread_id> <action> [--pretty]Steps execution (STEP_OVER, STEP_INTO, STEP_OUT, RESUME_THREAD, RESUME_ALL)
updatedebroid update [--check-only] [--pretty]Checks for CLI updates or performs an in-place self-update to the latest release

Security Note: The Debroid daemon listens on localhost (127.0.0.1) without authentication to enable fast communication with the CLI. It exposes live JVM manipulation. Only run Debroid on a machine where every local user is fully trusted.

🤝 Contributing

We welcome contributions! If you're building an AI agent or improving the underlying JDI wrappers, please see AGENTS.md for architectural guidelines and rules for maintaining the strict JSON CLI contract.

If Debroid saves your agent from a debugging dead end, consider giving the repo a ⭐ - it helps others find it :)

📄 License

This project is licensed under the Apache 2.0 License.

常见问题

What is debroid?

debroid is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by PatilShreyas. Autonomous, headless Android debugger designed for AI coding agents. Inspect runtime memory, set breakpoints, and debug live apps. It has 189 GitHub stars.

Is debroid safe to use?

Yes. debroid passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install debroid?

Clone the repository with "git clone https://github.com/PatilShreyas/debroid" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is debroid written in?

debroid is primarily written in Kotlin. It is open-source under PatilShreyas on GitHub, so you can review or fork the full source.

Are there alternatives to debroid?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh debroid against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI 智能体
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情