원클릭으로
ralph-get-feature-stats
Get a compact summary of project status and feature counts from feature_list.json.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Get a compact summary of project status and feature counts from feature_list.json.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Atomically claim a feature for a teammate. Uses file locking to prevent two teammates from claiming the same feature. Teams variant only.
Select the next feature to implement from feature_list.json based on priority rules (in_progress first, then first pending).
Increment the attempts counter for a feature after a failed implementation attempt. Optionally sets the last_error message.
Interactive assistant that guides users through creating high-quality PRDs for Ralph-RLM Framework. Asks structured questions about project type, requirements, testing needs, and dependency ordering.
Update the status of a feature in feature_list.json (pending, in_progress, complete, or blocked) and recalculate stats.
PRD quality checklist that validates feature completeness, test coverage, sizing, dependency ordering, and acceptance criteria quality.
| name | ralph-get-feature-stats |
| description | Get a compact summary of project status and feature counts from feature_list.json. |
| user-invocable | false |
Get a compact summary of project status and feature counts.
Quickly check project progress without reading the entire feature_list.json. Returns project metadata and feature counts by status.
feature_list.json (default: ./feature_list.json)Compact JSON:
{
"project": "My Project",
"config": {
"test_command": "dotnet test",
"build_command": "dotnet build",
"max_attempts_per_feature": 5
},
"stats": {
"total_features": 85,
"complete": 42,
"in_progress": 1,
"pending": 40,
"blocked": 2
}
}
ralph skill get-feature-stats
feature_list.json.