ソース情報
- リポジトリ
- AxGord/claude-workflow
- ソースの最終更新活動
- 2026年7月8日 18:54
- 検出された SKILL.md の言語
- 英語
- スター
- 5
- フォーク
- 2
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/AxGord/claude-workflow --skill debug-bridge-scaffoldコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
Debugging meta-patterns — what to do when fixes don't stick
Game dev precision and physics gotchas
Claude Code configuration gotchas — permission rule syntax and evaluation order, settings hierarchy, plugin install scopes, hook behavior
| 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)