Token导航 LogoToken导航TokenDH.com
开发只读github未标认证来源可访问许可证需确认审计通过

ralph-status拉尔夫状态

Agent Skill

ralph-status 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

703

周安装

29

GitHub Stars

1

下载量

230
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:ralph-status(拉尔夫状态)
来源仓库:https://github.com/pixel-process-ug/superkit-agents
仓库路径:skills/ralph-status
安装命令:
npx skills add https://github.com/pixel-process-ug/superkit-agents --skill ralph-status
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/pixel-process-ug/superkit-agents --skill ralph-status

简介

用于获取和处理 GitHub 仓库当前状态及协作动态。

  • 可查看 Issue、PR 列表、分支信息和代码变更详情。
  • 适合在开发流程中同步项目进度和团队沟通内容。ralph-status 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 需确保有仓库读取权限,避免触发敏感操作或写入请求。
  • 建议配合本地 Git 环境使用,防止误改生产分支。

SKILL.md

Ralph Status Reporting

Overview

The Ralph status block is a structured, machine-parseable progress report included at the end of every autonomous loop iteration. It enables automated monitoring, exit detection, and progress tracking. The format is rigid and must be followed exactly — machine parsing depends on consistent structure.

Announce at start: "Producing RALPH_STATUS block for this iteration."

Trigger Conditions

  • End of every autonomous loop iteration (mandatory)
  • After BUILD phase completes in the autonomous loop
  • When monitoring systems need progress data
  • When exit gate evaluation is needed
  • When the autonomous-loop skill invokes this skill

Phase 1: Data Collection

Goal: Gather all metrics needed for the status block.

  1. Count tasks completed in this iteration
  2. Count files modified (created, edited, deleted)
  3. Run the test suite and record result
  4. Determine the primary work type
  5. Check for blockers or issues

Metric Collection Table

MetricHow to DetermineExample
TASKS_COMPLETED_THIS_LOOPCount tasks marked complete this iteration1
FILES_MODIFIEDCount files changed via git diff or tracking3
TESTS_STATUSRun test suite, record overall resultPASSING
WORK_TYPECategorize the primary activityIMPLEMENTATION
BlockersCheck if any task was unable to proceedNone

Work Type Classification

Work TypeWhen to Use
IMPLEMENTATIONNew code written (features, endpoints, services)
TESTINGPrimary activity was writing or fixing tests
DOCUMENTATIONPrimary activity was docs, specs, or comments
REFACTORINGPrimary activity was restructuring without behavior change

STOP — Do NOT proceed to Phase 2 until:

  • All metrics are collected
  • Test suite has been run (not assumed)
  • Work type is determined

Phase 2: STATUS Evaluation

Goal: Determine the correct STATUS value based on iteration outcome.

STATUS Decision Table

ConditionSTATUS ValueEXIT_SIGNAL
Tasks remain, work completed this iterationIN_PROGRESSfalse
Tasks remain, no work completed (investigation)IN_PROGRESSfalse
Cannot proceed, needs external inputBLOCKEDfalse
All tasks complete, all tests passCOMPLETEEvaluate Phase 3
All tasks complete, tests failingIN_PROGRESSfalse

STATUS Values Defined

ValueMeaningLoop Action
IN_PROGRESSWork is ongoing, tasks remain or tests failingContinue loop
COMPLETEAll planned work is finished, tests passEvaluate exit gate
BLOCKEDCannot proceed without external inputHalt and report

When BLOCKED

  1. Clearly describe what is blocking progress in RECOMMENDATION
  2. Set EXIT_SIGNAL: false (blocked is not complete)
  3. The circuit breaker may activate if blocked state persists across iterations

STOP — Do NOT proceed to Phase 3 until:

  • STATUS value is determined
  • If BLOCKED, blocker is clearly described

Phase 3: EXIT_SIGNAL Evaluation

Goal: Determine whether EXIT_SIGNAL should be true or false.

ConditionHow to VerifyRequired
No remaining tasksIMPLEMENTATION_PLAN.md has no unchecked itemsYes
All tests passTESTS_STATUS is PASSINGYes
No errors in latest iterationClean execution, no unresolved exceptionsYes
No meaningful work remainsNo TODOs, no incomplete features, code review doneYes

EXIT_SIGNAL Decision Table

Tasks RemainingTests StatusErrorsMeaningful WorkEXIT_SIGNAL
YesAnyAnyAnyfalse
NoFAILINGAnyAnyfalse
NoPASSINGYesAnyfalse
NoPASSINGNoYesfalse
NoPASSINGNoNotrue

Dual-Condition Exit Gate

The loop orchestrator uses TWO independent signals to confirm exit:

  1. Heuristic detection: Completion language ("all done", "everything passes", "no remaining work") appears >= 2 times in recent output
  2. Explicit declaration: EXIT_SIGNAL: true in the status block

Both must be true simultaneously. This prevents:

  • False positives from casual completion language
  • Premature exits when Claude says "done" while still working productively

STOP — Do NOT set EXIT_SIGNAL to true unless ALL four conditions are verified.


Phase 4: Block Production

Goal: Write the RALPH_STATUS block in exact format.

Required Format

---RALPH_STATUS---
STATUS: [IN_PROGRESS | COMPLETE | BLOCKED]
TASKS_COMPLETED_THIS_LOOP: [number]
FILES_MODIFIED: [number]
TESTS_STATUS: [PASSING | FAILING | NOT_RUN]
WORK_TYPE: [IMPLEMENTATION | TESTING | DOCUMENTATION | REFACTORING]
EXIT_SIGNAL: [false | true]
RECOMMENDATION: [one-line summary of next action or completion state]
---END_RALPH_STATUS---

Field Specifications

FieldTypeAllowed ValuesDescription
STATUSenumIN_PROGRESS, COMPLETE, BLOCKEDCurrent iteration outcome
TASKS_COMPLETED_THIS_LOOPinteger0+Number of tasks finished this iteration
FILES_MODIFIEDinteger0+Number of files changed (created, edited, deleted)
TESTS_STATUSenumPASSING, FAILING, NOT_RUNState of test suite after this iteration
WORK_TYPEenumIMPLEMENTATION, TESTING, DOCUMENTATION, REFACTORINGPrimary activity category
EXIT_SIGNALbooleanfalse, trueWhether all work is complete
RECOMMENDATIONstringFree text (one line only)Next action or final summary

RECOMMENDATION Guidelines

STATUSRECOMMENDATION Content
IN_PROGRESS"Next: [specific next task]"
COMPLETE"All tasks complete, tests passing, [summary]"
BLOCKED"Blocked: [specific blocker description]"

Phase 5: Validation

Goal: Verify the status block is correct before output.

Validation Checks

CheckRuleIf Violated
Format exactMatches template character-for-character (except values)Rewrite block
STATUS consistencyCOMPLETE requires EXIT_SIGNAL evaluationFix STATUS or EXIT_SIGNAL
TESTS_STATUS matches realityValue matches actual test run resultRe-run tests
EXIT_SIGNAL justifiedtrue only when all 4 conditions metSet to false
RECOMMENDATION presentNon-empty, one lineAdd recommendation
No extra fieldsOnly the 7 defined fieldsRemove extras

Anti-Patterns / Common Mistakes

Anti-PatternWhy It FailsCorrect Approach
Omitting the status blockLoop cannot evaluate exit, monitoring blindEvery iteration ends with status
Setting EXIT_SIGNAL true with failing testsPremature exit, broken codeVerify all 4 conditions
Adding custom fieldsMachine parsing breaksOnly the 7 defined fields
Multi-line RECOMMENDATIONParsing breaks on newlinesOne line only
TESTS_STATUS without running testsFalse confidenceActually run the test suite
STATUS: COMPLETE with tasks remainingContradictory signalCheck IMPLEMENTATION_PLAN.md
Skipping RECOMMENDATIONNo guidance for next iterationAlways include actionable recommendation
EXIT_SIGNAL: true when BLOCKEDContradictory — blocked is not completeBLOCKED always has EXIT_SIGNAL: false
Changing the delimiter formatMachine parsing depends on exact delimitersUse ---RALPH_STATUS--- exactly
Guessing FILES_MODIFIEDInaccurate metricsCount actual changes

Anti-Rationalization Guards

If you catch yourself thinking:

  • "The status block is just overhead..." — It is the exit gate mechanism. Never skip.
  • "Everything is done, EXIT_SIGNAL: true..." — Verify ALL four conditions first.
  • "I'll add an extra field for more detail..." — No. Use RECOMMENDATION for details.
  • "Tests probably pass, TESTS_STATUS: PASSING..." — Run them. Verify. Then report.

Integration Points

SkillRelationshipWhen
autonomous-loopParent — invokes this skill at end of each iterationEvery iteration
circuit-breakerConsumer — monitors for stagnation patternsReads status blocks
verification-before-completionUpstream — provides test resultsBefore status block production
Monitoring dashboardConsumer — displays real-time progressReads status blocks
Log aggregationConsumer — historical performance analysisStores status blocks

Concrete Examples

Example: Typical IN_PROGRESS Status

---RALPH_STATUS---
STATUS: IN_PROGRESS
TASKS_COMPLETED_THIS_LOOP: 1
FILES_MODIFIED: 3
TESTS_STATUS: PASSING
WORK_TYPE: IMPLEMENTATION
EXIT_SIGNAL: false
RECOMMENDATION: Next: implement user authentication middleware
---END_RALPH_STATUS---

Example: Completion Status

---RALPH_STATUS---
STATUS: COMPLETE
TASKS_COMPLETED_THIS_LOOP: 1
FILES_MODIFIED: 2
TESTS_STATUS: PASSING
WORK_TYPE: DOCUMENTATION
EXIT_SIGNAL: true
RECOMMENDATION: All tasks complete, tests passing, documentation updated
---END_RALPH_STATUS---

Example: Blocked Status

---RALPH_STATUS---
STATUS: BLOCKED
TASKS_COMPLETED_THIS_LOOP: 0
FILES_MODIFIED: 0
TESTS_STATUS: PASSING
WORK_TYPE: IMPLEMENTATION
EXIT_SIGNAL: false
RECOMMENDATION: Blocked: need database credentials for integration test setup
---END_RALPH_STATUS---

Example: Test Failure Status

---RALPH_STATUS---
STATUS: IN_PROGRESS
TASKS_COMPLETED_THIS_LOOP: 1
FILES_MODIFIED: 4
TESTS_STATUS: FAILING
WORK_TYPE: TESTING
EXIT_SIGNAL: false
RECOMMENDATION: 3 tests failing in auth module — investigating root cause next iteration
---END_RALPH_STATUS---

Process Summary

  1. Complete the iteration's work (implementation, testing, docs, or refactoring)
  2. Count tasks completed and files modified
  3. Run the test suite and record result
  4. Evaluate STATUS value
  5. Evaluate EXIT_SIGNAL conditions (all 4 must be true for true)
  6. Write the RALPH_STATUS block in exact format
  7. Include a clear, actionable RECOMMENDATION

Skill Type

RIGID — The status block format must be followed exactly. Machine parsing depends on consistent structure. No field additions, no format changes, no skipped blocks.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.64%
按下载量换算82

Claude

31.76%
按下载量换算73

Cursor

16.37%
按下载量换算38

Gemini CLI

8.34%
按下载量换算19

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills