ralph-loop — community ralph-loop, oh-my-copilot, community, ide skills, Claude Code, Cursor, Windsurf

v1.0.0

关于此技能

oh-my-opencode for GitHub Copilot CLI — ultrawork, sisyphus, hephaestus, prometheus, ralph-loop, init-deep

Lee-SiHyeon Lee-SiHyeon
[3]
[0]
更新于: 3/29/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 1/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Review Score
1/11
Quality Score
35
Canonical Locale
ko
Detected Body Locale
ko

oh-my-opencode for GitHub Copilot CLI — ultrawork, sisyphus, hephaestus, prometheus, ralph-loop, init-deep

核心价值

oh-my-opencode for GitHub Copilot CLI — ultrawork, sisyphus, hephaestus, prometheus, ralph-loop, init-deep

适用 Agent 类型

Suitable for operator workflows that need explicit guardrails before installation and execution.

赋予的主要能力 · ralph-loop

! 使用限制与门槛

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The page lacks a strong recommendation layer.
  • - The page lacks concrete use-case guidance.
  • - The page lacks explicit limitations or caution signals.
  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

实验室 Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

常见问题与安装步骤

以下问题与步骤与页面结构化数据保持一致,便于搜索引擎理解页面内容。

? FAQ

ralph-loop 是什么?

oh-my-opencode for GitHub Copilot CLI — ultrawork, sisyphus, hephaestus, prometheus, ralph-loop, init-deep

如何安装 ralph-loop?

运行命令:npx killer-skills add Lee-SiHyeon/oh-my-copilot/ralph-loop。支持 Cursor、Windsurf、VS Code、Claude Code 等 19+ IDE/Agent。

ralph-loop 支持哪些 IDE 或 Agent?

该技能兼容 Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer。可使用 Killer-Skills CLI 一条命令通用安装。

安装步骤

  1. 1. 打开终端

    在你的项目目录中打开终端或命令行。

  2. 2. 执行安装命令

    运行:npx killer-skills add Lee-SiHyeon/oh-my-copilot/ralph-loop。CLI 会自动识别 IDE 或 AI Agent 并完成配置。

  3. 3. 开始使用技能

    ralph-loop 已启用,可立即在当前项目中调用。

! 参考页模式

此页面仍可作为安装与查阅参考,但 Killer-Skills 不再把它视为主要可索引落地页。请优先阅读上方评审结论,再决定是否继续查看上游仓库说明。

Imported Repository Instructions

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

Supporting Evidence

ralph-loop

安装 ralph-loop,这是一款面向AI agent workflows and automation的 AI Agent Skill。支持 Claude Code、Cursor、Windsurf,一键安装。

SKILL.md
Readonly
Imported Repository Instructions
The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.
Supporting Evidence

RALPH LOOP — 완료까지 자기교정 루프

"완료될 때까지 멈추지 않는다."

사용법

/ralph-loop "모든 TypeScript 에러 수정"
/ralph-loop "태스크 설명" --max-iterations=50
/ulw-loop "태스크 설명"         # ultrawork + loop 모드
/cancel-ralph                   # 실행 중인 루프 취소

ULTRAWORK LOOP vs RALPH LOOP

Ralph LoopULW Loop
종료 조건완료 promise 태그 출력Oracle 검증 + promise 태그
반복 한도기본 100회 (설정 가능)없음
검증 수준자체 검증Oracle 독립 검증
사용 시기일반 작업크리티컬 작업

Loop 프로토콜

Phase 1: Task Initialization

태스크 수신 → 즉시 TodoWrite (원자적 스텝으로):

TodoWrite([
  { id: "analyze", content: "현재 상태 분석", status: "in_progress" },
  { id: "step-1", content: "[구체적 스텝 1]", status: "pending" },
  { id: "step-2", content: "[구체적 스텝 2]", status: "pending" },
  { id: "verify", content: "결과 검증", status: "pending" }
])

Phase 2: Iteration Cycle

ITERATION N:
1. 남은 TodoWrite 항목 확인
2. 다음 pending 항목을 in_progress로
3. 해당 작업 실행
4. 결과 즉시 검증
5. completed 또는 failed 표시
6. 다음 반복 또는 완료 판정

Phase 3: Completion Check

각 반복 후 체크:

□ 모든 TodoWrite 항목 completed?
□ 빌드/타입 에러 없음?
□ 테스트 통과?
□ 완료 기준 충족?

모두 통과 시:

<promise>DONE</promise>

→ 이 태그가 없으면 루프 계속 실행

실패 항목 있을 시:

  • 실패 원인 분석
  • 다른 접근법 시도
  • TodoWrite 업데이트 후 계속

ULTRAWORK LOOP 검증 프로세스

/ulw-loop 모드에서는 추가 Oracle 검증 단계:

1. 자체 작업 완료 → <promise>DONE</promise> 출력
2. Oracle 검증 프롬프트 실행:
   "방금 구현한 것이 요청 사항을 완전히 충족하는가?
    A) 충족 — 명확한 증거 제시
    B) 미충족 — 누락된 것 명시
    C) 부분 충족 — 완료된 것과 남은 것 구분"
3. A만 진짜 완료
4. B 또는 C → 루프 재시작

자주 쓰이는 패턴

TypeScript 에러 수정 루프

/ralph-loop "모든 TypeScript 컴파일 에러 수정"

→ 루프 내부:
  1. npx tsc --noEmit 2>&1 실행
  2. 에러 목록 파싱
  3. 각 에러를 TodoWrite로
  4. 에러별 수정
  5. 다시 tsc 실행
  6. 에러 없으면 <promise>DONE</promise>

테스트 통과 루프

/ralph-loop "모든 테스트 통과"

→ 루프 내부:
  1. npm test 실행
  2. 실패 테스트 파악
  3. 실패별 수정
  4. 다시 npm test
  5. 모두 통과 → <promise>DONE</promise>

린트 정리 루프

/ralph-loop "모든 ESLint 경고 수정"

→ 루프 내부:
  1. npx eslint . 실행
  2. 경고 목록 파싱
  3. 자동 수정 가능한 것: npx eslint . --fix
  4. 수동 수정 필요한 것: TodoWrite로 개별 처리
  5. 모두 해결 → <promise>DONE</promise>

취소

실행 중 루프 취소:

/cancel-ralph

또는 Copilot CLI에서 Ctrl+C 후:

현재 루프가 취소됐습니다. 
완료된 TodoWrite: [목록]
미완료 TodoWrite: [목록]

설정

--max-iterations=N    # 최대 반복 횟수 (기본: 100)
--strategy=reset      # 각 반복마다 상태 초기화
--strategy=continue   # 이전 상태에서 계속 (기본)

Anti-Patterns

  • ❌ 검증 없이 완료 선언
  • ❌ 첫 번째 실패 후 포기
  • <promise>DONE</promise> 없이 루프 종료
  • ❌ 같은 접근법으로 계속 실패 (다른 방법 시도)
  • ❌ TodoWrite 없이 루프 시작 (추적 불가)

相关技能

寻找 ralph-loop 的替代方案 (Alternative) 或可搭配使用的同类 community Skill?探索以下相关开源技能。

查看全部

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

为prompts.chat的信息反馈系统生成可定制的插件小部件

149.6k
0
AI

flags

Logo of vercel
vercel

React 框架

138.4k
0
浏览器

pr-review

Logo of pytorch
pytorch

Python中具有强大GPU加速的张量和动态神经网络

98.6k
0
开发者工具