crash-fixer
自主崩溃分析和错误修复。监控来自 Cloudflare D1 的崩溃报告、重复数据删除、使用 Codex 5.3 High 进行分析、生成修复程序并创建 PR。用法:/crash-fixer [--hours 24] [--limit 5] [--dry-run]
安装 / 下载方式
TotalClaw CLI推荐
totalclaw install totalclaw:totalclaw~ryce-crash-fixercURL直接下载,无需登录
curl -fsSL https://skills.taituai.com/api/skills/totalclaw%3Atotalclaw~ryce-crash-fixer/file -o ryce-crash-fixer.md## 概述(中文) 自主崩溃分析和错误修复。监控来自 Cloudflare D1 的崩溃报告、重复数据删除、使用 Codex 5.3 High 进行分析、生成修复程序并创建 PR。用法:/crash-fixer [--hours 24] [--limit 5] [--dry-run] ## 原文 # crash-fixer Full autonomous crash-fixing loop. Fetches crashes, deduplicates, analyzes with AI, generates fixes, and creates PRs. ## Trigger ``` /crash-fixer [--hours 24] [--limit 5] [--dry-run] ``` ## How It Works 1. **Fetch** - Query crash reporter for new crashes 2. **Deduplicate** - Check fingerprint for identical crashes already fixed 3. **Analyze** - Use Codex 5.3 High (o3-high) to understand crash 4. **Fix** - Generate code fix 5. **PR** - Create branch → commit → PR 6. **Update** - Mark status in crash reporter ## Options | Flag | Default | Description | |------|---------|-------------| | `--hours N` | 24 | Only fetch crashes from last N hours | | `--limit N` | 3 | Max crashes to process per run | | `--dry-run` | false | Analyze but don't create PRs | ## Required Environment | Variable | Description | |----------|-------------| | `GH_TOKEN` | GitHub API token | | `CRASH_REPORTER_API_KEY` | API key for crash reporter worker | | `CRASH_REPORTER_URL` | URL of crash reporter worker | | `TARGET_REPO` | GitHub repo to fix (owner/name) | Note: Uses MiniMax M2.5 (available in OpenClaw) for AI analysis - no extra API key needed. ## Example ``` /crash-fixer --dry-run ```