Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计提醒

wreckit-ralph残骸拉尔夫

Agent Skill

wreckit-ralph 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

18,957

周安装

806

GitHub Stars

公开资料未说明

下载量

6,641
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:wreckit-ralph(残骸拉尔夫)
来源仓库:https://github.com/christiancattaneo/wreckit-ralph
安装命令:
openclaw skills install wreckit-ralph
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install wreckit-ralph

简介

防弹级 AI 代码验证工具,无需外部依赖即可进行并行静态分析、类型检查与安全变异测试。

  • 适合在 CI/CD 流程中集成,提升代码健壮性与安全性,减少线上故障风险。
  • 自动扫描代码库漏洞并生成修复建议,支持多语言项目与自定义规则配置。
  • 需授予代码仓库读取权限,注意测试过程中可能产生的临时文件与日志留存。
  • 建议定期更新检测规则库,结合人工复核关键模块,避免误报干扰正常开发节奏。

SKILL.md

name
reckit
description
>
metadata
openclaw
platforms
[macos, linux]
notes
Uses sessions_spawn for parallel verification swarms. Requires maxSpawnDepth >= 2.

Reckit — Bulletproof AI Code Verification

Build it. Break it. Prove it works.

Philosophy

AI can't verify itself. Structure the pipeline so it can't silently agree with itself. Separate Builder/Tester/Breaker roles across fresh contexts. Use independent oracles.

Full 14-step framework: references/verification-framework.md

Modes

Auto-detected from context:

ModeTriggerDescription
🟢 BUILDEmpty repo + PRDFull pipeline for greenfield
🟡 REBUILDExisting code + migration specBUILD + behavior capture + replay
🔴 FIXExisting code + bug reportFix, verify, check regressions
🔵 AUDITExisting code, no changesVerify and report only

Gates

Read the gate file before executing it. Each contains: question, checks, pass/fail criteria.

GateBUILDREBUILDFIXAUDITFile
AI Slop Scanreferences/gates/slop-scan.md
Type Checkreferences/gates/type-check.md
Ralph Loopreferences/gates/ralph-loop.md
Test Qualityreferences/gates/test-quality.md
Mutation Killreferences/gates/mutation-kill.md
Cross-Verifyreferences/gates/cross-verify.md
Behavior Capturereferences/gates/behavior-capture.md
Regressionreferences/gates/regression.md
SASTreferences/gates/sast.md
LLM-as-Judgeoptoptoptoptreferences/gates/llm-judge.md
Design Reviewreferences/gates/design-review.md
CI Integrationreferences/gates/ci-integration.md
Proof Bundlereferences/gates/proof-bundle.md

Scripts

Deterministic helpers — run these, don't rewrite them:

Core (all modes):

  • scripts/project-type.sh [path] — classify project context + calibration profile (skip_gates, thresholds, tolerated warns)
  • scripts/detect-stack.sh [path] — auto-detect language, framework, test runner → JSON
  • scripts/check-deps.sh [path] — verify all deps exist in registries (hallucination check)
  • scripts/slop-scan.sh [path] — semantic slop scan (tracked vs untracked debt, categorized output) → JSON
  • scripts/type-check.sh [path] — run type checker (tsc/mypy/cargo/go vet) → JSON
  • scripts/ralph-loop.sh [path] — validate IMPLEMENTATION_PLAN.md structure → JSON
  • scripts/coverage-stats.sh [path] — extract raw coverage numbers from test runner
  • scripts/mutation-test.sh [path] [test-cmd] — mutation testing (mutmut/cargo-mutants/Stryker/AI)
  • scripts/mutation-test-stryker.sh [path] — Stryker-specific mutation testing → JSON
  • scripts/red-team.sh [path] — SAST + 20+ vulnerability patterns → JSON
  • scripts/regex-complexity.sh [path] [--context library|app] — targeted ReDoS analysis → JSON
  • scripts/proof-bundle.sh [path] [mode] — corroboration-based aggregation + proof bundle writer
  • scripts/run-all-gates.sh [path] [mode] [--log-file] — sequential gate runner with telemetry + adaptive skipping/tolerance

Mode-specific:

  • scripts/behavior-capture.sh [path] — capture golden fixtures before rebuild (REBUILD)
  • scripts/design-review.sh [path] — dep graph, coupling, circular deps (AUDIT/REBUILD) → JSON
  • scripts/ci-integration.sh [path] — CI config detection and scoring → JSON
  • scripts/differential-test.sh [path] — oracle comparison, golden tests (BUILD/REBUILD) → JSON

Extended verification:

  • scripts/dynamic-analysis.sh [path] — memory leaks, race conditions, FD leaks → JSON
  • scripts/perf-benchmark.sh [path] — benchmark detection + regression vs baseline → JSON
  • scripts/property-test.sh [path] — property-based/fuzz testing, generates stubs → JSON

Bootstrap:

  • scripts/run-audit.sh [path] [mode] [--spawn] — generate orchestrator task + optional spawn

Swarm Architecture

For multi-gate parallel execution, read references/swarm/orchestrator.md.

Quick overview:

Main agent → wreckit orchestrator (depth 1)
  ├─ Planning: Architect worker
  ├─ Building: Sequential Implementer workers
  ├─ Verification: Parallel gate workers
  ├─ Sequential: Cross-verify / regression / judge
  └─ Decision: Proof bundle → Ship / Caution / Blocked

Critical: Read references/swarm/collect.md before spawning workers. Never fabricate results. Wait for all workers to report back. Worker output format: references/swarm/handoff.md.

Config required:

{ "agents.defaults.subagents": { "maxSpawnDepth": 2, "maxChildrenPerAgent": 8 } }

Decision Framework

VerdictCriteria
ShipNo hard blocks; no corroborated multi-domain fail evidence above block threshold
Caution ⚠️Single non-hard fail, warning-only risk, or corroboration below block threshold
Blocked 🚫Any hard block OR corroborated non-hard failure pattern (multi-signal, multi-domain, high-confidence)

Hard-block + corroboration rule details: references/gates/corroboration.md

Supported Languages & Stacks

LanguageGates AvailableNotes
TypeScript/JS11/11Full support via Stryker, tsc, vitest/jest
Python11/11Full support via mutmut, mypy/pyright, pytest
Rust11/11Full support via cargo-mutants, cargo check/test
Go11/11Full support via go vet, go test
Swift (SPM)9/11mutation = AI-estimated CAUTION, cross-verify = manual
Swift (Xcode)7/11type-check = xcodebuild, mutation = AI-estimated, coverage = limited
iOS apps7/11Same as Xcode projects
Java/Kotlin10/11Gradle/Maven, mutation via PIT (manual setup)
Shell8/11shellcheck, limited mutation testing

Swift Notes

  • Mutation testing requires manual verification — no automated mutation testing tool exists for Swift as of 2026. The mutation gate uses AI-estimated analysis (counts mutation surface, compares to test count) and always outputs CAUTION, never SHIP.
  • SPM projects get high-confidence type checking via swift build (the compiler IS the type checker).
  • Xcode projects get medium-confidence type checking via xcodebuild with auto-detected schemes.
  • Dependency checking lists SPM dependencies but notes that no automated CVE database exists for Swift packages — manual review is always recommended.
  • CocoaPods projects: pod outdated is checked if Podfile present.
  • Build systems detected: SPM, xcodebuild, CocoaPods, Carthage, mixed.

Running an Audit (Single-Agent, No Swarm)

For small projects or when swarm isn't needed, run gates sequentially:

  1. scripts/detect-stack.sh → know your target (language, test cmd, type checker)
  2. scripts/check-deps.sh → verify deps are real (not hallucinated)
  3. scripts/slop-scan.sh → find placeholders, template artifacts, empty stubs
  4. Run type checker (from detect-stack output) → references/gates/type-check.md
  5. Run tests + scripts/coverage-stats.shreferences/gates/test-quality.md
  6. scripts/mutation-test.shreferences/gates/mutation-kill.md (uses mutmut/cargo-mutants/Stryker if available)
  7. scripts/red-team.shreferences/gates/sast.md (20+ vulnerability patterns, JSON report)
  8. scripts/design-review.shreferences/gates/design-review.md (dep graph, circular deps, god modules)
  9. scripts/ci-integration.shreferences/gates/ci-integration.md (CI config detection + scoring)
  10. scripts/dynamic-analysis.shreferences/gates/dynamic-analysis.md (memory leaks, race conditions)
  11. scripts/perf-benchmark.shreferences/gates/performance.md (benchmark detection + regression)
  12. scripts/property-test.shreferences/gates/property-based.md (fuzzing, invariant checks)
  13. scripts/differential-test.shreferences/gates/differential.md (oracle comparison, metamorphic tests)
  14. echo '[...gate-results-json...]' | scripts/proof-bundle.sh [path] [mode] → writes .wreckit/proof.json, dashboard.json, decision.md

Quick Start

"Use wreckit to audit [project]. Don't change anything."
"Use wreckit to build [project] from this PRD."
"Use wreckit to fix [bug]. Prove nothing else breaks."
"Use wreckit to rebuild [project] in [framework]."

Dashboard

assets/dashboard/ contains a local web dashboard for viewing proof bundles across repos. Run: node assets/dashboard/server.mjs (port 3939). Reads .wreckit/dashboard.json from projects.

Codex CLI Notes (2026-02-22)

When using Codex CLI to build/run projects:

  • --full-auto sandbox blocks npm install network access (ENOTFOUND registry.npmjs.org)
  • Fix: use --dangerously-bypass-approvals-and-sandbox flag instead
  • Auth: echo "$OPENAI_API_KEY" | codex login --with-api-key stores credentials to ~/.codex/auth.json
  • Config: ~/.codex/config.toml with model = "gpt-5.2-codex" and [shell_environment_policy] inherit = "all"
  • gpt-5.3-codex is Copilot/VS Code only — not available via direct API. Use gpt-5.2-codex.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

77.43%
按下载量换算5,142

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

未展示

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install wreckit-ralph 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills