用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/AxGord/claude-workflow --skill debug-bridge-scaffold命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | debug-bridge-scaffold |
| description | Meta-skill for creating debug bridges for new technologies |
When you need runtime inspection of an application built with a technology that has no existing debug bridge.
Before building a custom bridge, check if a standard tool already works:
| Technology | Existing Solution |
|---|---|
| Web/Electron/browser apps | Playwright MCP, browser DevTools |
| Native apps with standard UI toolkit | Accessibility API MCP |
| Any app with visible UI | Computer Use (screenshot + click) |
| OpenFL/hxcpp | debug-bridge-openfl skill (already exists) |
If an existing solution covers your needs — use it. Don't build a bridge.
If no existing tool works, create an HTTP bridge following this pattern:
[Background Thread] HTTP Server (127.0.0.1:PORT)
↓ accept()
[Worker Thread] Parse request → dispatch to main thread
↓ runOnMainThread(fn)
[Main Thread] Execute handler → return result
↑ result via Lock/Mutex
[Worker Thread] Send HTTP response
| Endpoint | Method | Purpose |
|---|---|---|
/ping | GET | Health check |
/screenshot | GET | Capture visual state → save to /tmp → return path |
/shutdown | POST | Graceful exit |
Add endpoints relevant to the technology:
{"ok": true, "data": ...} / {"ok": false, "error": "..."}After building the bridge, create ~/.claude/skills/debug-bridge-<tech>/SKILL.md with:
Register it in coding-skill-selector under the appropriate domain.
Create ~/.claude/agents/interactive-<tech>-debugger.md with pre-loaded skills:
---
name: interactive-<tech>-debugger
description: <Tech> debug agent with visual debug bridge — ...
tools: Read, Glob, Grep, Bash, Skill
model: sonnet
skills:
- debugging
- debug-bridge
- debug-bridge-<tech>
- <app-specific-interactive-debug-skill if exists>
---
Body: describe the debug loop for the agent — PID tracking, separate build and run steps, timeout rules.
Then update:
task-delegation — add agent to Available Agents table and routing rulestesting — reference the new agent for integration verificationdebugging — reference the new agent in Step 4 (Debug Bridge)