ソース情報
- リポジトリ
- deathrashed/agents
- ソースの最終更新活動
- 2026年7月28日 18:05
- 検出された SKILL.md の言語
- 英語
- スター
- 1
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/deathrashed/agents --skill debugコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
Control the in-app Browser for opening, navigating, inspecting visible or interactive page state, clicking, typing, screenshots, and local web testing. It can have existing signed-in sessions. For semantic operations on linked resources, prefer a purpose-built connector, API, or CLI when available.
Control the user's Chrome browser for tasks that depend on existing Chrome state: tabs, logged-in sessions, or extensions. Prefer purpose-built connectors, APIs, or CLIs when available.
Control local Mac apps through Computer Use for tasks that require reading or operating app UI. Prefer purpose-built connectors, APIs, or CLIs when available.
| name | debug |
| description | Debug and fix issues with structured analysis (Debugger Agent) |
Debug issue:
Issue: {{args}}
| Mode | Trigger | Features |
|---|---|---|
| API | "500", "error", "response", "endpoint" | Root cause, fix, rollback |
| DB | "connection", "pool", "query", "timeout" | Leak detection, kill commands |
| CI | "ci", "actions", "pipeline", "build" | Workflow analysis, fix |
| PERF | "slow", "latency", "performance", "degradation" | N+1, EXPLAIN, optimization |
| GENERAL | default | Standard debug flow |
[Key error logs]
[Clear explanation of why this is happening]
# Command to run
// Before
[broken code]
// After
[fixed code]
# Test the fix
If fix doesn't work:
# Rollback command
git revert [commit]
# or
kubectl rollout undo deployment/[name]
# Verify fix worked
curl -X POST https://api.example.com/endpoint
# Expected: 200 OK
# Check logs
tail -f /var/log/app.log | grep ERROR
# Expected: No new errors
# Monitor metrics
# Expected: Error rate < 0.1%
To prevent this in future:
-- Active connections
SELECT * FROM pg_stat_activity;
-- Long running queries
SELECT pid, now() - pg_stat_activity.query_start AS duration, query
FROM pg_stat_activity
WHERE state != 'idle'
ORDER BY duration DESC;
-- Kill stuck query
SELECT pg_terminate_backend(pid);
-- EXPLAIN ANALYZE
EXPLAIN ANALYZE SELECT ...;
Key Takeaway: Turns hours of troubleshooting into 30-minute structured analysis.