Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill ralphban명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
| Use when this capability is needed.
> Use when this capability is needed.
Review architecture and API design for the vfs-s3 project. Use when the user mentions @architect, asks to review an issue's design, discuss module boundaries, API shape, or architectural decisions for vfs-s3. Also trigger when the user wants to create an ADR (Architecture Decision Record) or evaluate a technical approach for the project. Intended for dispatch from Codex automation or Claude routines; GitHub trigger phrase: @vfs-s3-bot please prepare design doc Use when this capability is needed.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | ralphban |
| description | | Use when this capability is needed. |
Status: Beta Last Updated: 2025-01-31 Dependencies: None (VS Code extension optional for visualization) Latest Versions: ralphban@1.0.2
Create a JSON file matching Ralphban's file patterns (default: *.prd.json, prd.json, tasks.json):
touch prd.json
[
{
"category": "backend",
"description": "Design task execution loop",
"status": "pending",
"priority": "high",
"steps": [
"Define task state transitions",
"Handle retries and failures",
"Persist progress"
],
"dependencies": [],
"passes": null
}
]
CRITICAL:
description is the unique identifier - must be unique across all taskscategory, description, and steps are required fieldsstatus defaults to pending if omittedOpen the file in VS Code with Ralphban extension installed. The Kanban board appears in the sidebar.
| Field | Type | Description |
|---|---|---|
category | string | Task category (configurable, defaults below) |
description | string | Unique task identifier and display text |
steps | string[] | Ordered list of steps to complete |
| Field | Type | Default | Description |
|---|---|---|---|
status | enum | "pending" | pending, in_progress, completed, cancelled |
priority | enum | none | high, medium, low |
dependencies | string[] | [] | Descriptions of tasks that must complete first |
passes | boolean|null | null | Explicit pass/fail (overrides status if set) |
frontend, backend, database, testing, documentation, infrastructure, security, functional
Custom categories can be configured in VS Code settings: ralphban.categories.
✅ Use unique description values - this is the task's ID
✅ Include at least one step in the steps array (can be empty [])
✅ Set status to in_progress when an agent starts working on a task
✅ Use dependencies array to express task ordering for agents
✅ Name files to match patterns: *.prd.json, prd.json, or tasks.json
❌ Duplicate description values across tasks - causes lookup failures
❌ Move completed tasks back to pending (extension enforces this)
❌ Use passes: true without also setting status: "completed"
❌ Omit required fields (category, description, steps)
❌ Put task files outside workspace root without updating filePatterns
pending ──────► in_progress ──────► completed
│ │ ▲
│ │ │
└───────────────┴──► cancelled ──────┘
(passes: false)
Status meanings:
pending: Not started, waiting in backlogin_progress: Agent is actively working on this taskcompleted: Task finished successfullycancelled: Task abandoned or blockedThe passes field:
null or undefined: Use status to determine completiontrue: Explicitly passed (forces completed state)false: Explicitly failed (forces cancelled state)[
{
"category": "backend",
"description": "Create user authentication API",
"status": "pending",
"priority": "high",
"steps": [
"Define auth endpoints (/login, /logout, /refresh)",
"Implement JWT token generation",
"Add password hashing with bcrypt",
"Create middleware for protected routes"
],
"dependencies": []
},
{
"category": "frontend",
"description": "Build login form component",
"status": "pending",
"priority": "high",
"steps":
When to use: Breaking down features into agent-executable tasks with clear dependencies.
When an agent picks up a task:
{
"description": "Create user authentication API",
"status": "in_progress"
}
When task completes:
{
"description": "Create user authentication API",
"status": "completed",
"passes": true
}
When task fails:
{
"description": "Create user authentication API",
"status": "cancelled",
"passes": false
}
{
"category": "functional",
"description": "Verify checkout flow handles empty cart",
"steps": [
"Navigate to checkout with empty cart",
"Verify error message appears",
"Confirm redirect to cart page"
]
}
Status and other fields default appropriately for pending tasks.
Ralphban discovers task files via glob patterns. Default patterns:
{
"ralphban.filePatterns": [
"**/*.prd.json",
"**/prd.json",
"**/tasks.json"
]
}
Recommended naming conventions:
prd.json - Main project PRD in repo rootfeature-name.prd.json - Feature-specific task filesplans/sprint-1.prd.json - Organized by sprint/phase#!/bin/bash
# Process tasks one at a time
TASKS_FILE="prd.json"
# Get next pending task
NEXT_TASK=$(jq -r '[.[] | select(.status == "pending")][0].description' "$TASKS_FILE")
if [ -n "$NEXT_TASK" ] && [ "$NEXT_TASK" != "null" ]; then
# Mark as in_progress
jq --arg desc "$NEXT_TASK" \
'(.[] | select(.description == $desc)).status = "in_progress"' \
"$TASKS_FILE" > tmp.json && mv tmp.json "$TASKS_FILE"
# Feed to agent
echo "Working on: $NEXT_TASK"
# ... agent execution here ...
# Mark complete
jq --arg desc "$NEXT_TASK" \
'(.[] | select(.description == $desc)).status = "completed" |
(.[] | select(.description == $desc)).passes = true' \
"$TASKS_FILE" > tmp.json && mv tmp.json "$TASKS_FILE"
fi
Before starting a task, check that all dependencies are completed:
# Check if task is ready (all deps completed)
is_ready() {
local task_desc="$1"
local deps=$(jq -r --arg desc "$task_desc" \
'.[] | select(.description == $desc).dependencies // []' "$TASKS_FILE")
for dep in $(echo "$deps" | jq -r '.[]'); do
status=$(jq -r --arg d "$dep" \
'.[] | select(.description == $d).status' "$TASKS_FILE")
if [ "$status" != "completed" ]; then
return 1
fi
done
return 0
}
This skill prevents 3 documented issues:
Error: Task "..." not found
Source: Tasks are matched by exact description string
Why It Happens: Description was modified or has whitespace differences
Prevention: Never modify description after creation; use exact match when updating
Error: Invalid task file: missing required field
Source: AJV schema validation in jsonParser.ts
Why It Happens: Missing category, description, or steps field
Prevention: Always include all three required fields, even if steps: []
Error: Tasks snap back to completed column Source: Business rule in UI prevents completed → pending/in_progress Why It Happens: Attempting to move completed tasks backward Prevention: Once completed, create new task if retry needed; don't modify status backward
{
"ralphban.filePatterns": ["**/*.prd.json", "**/tasks.json"],
"ralphban.categories": [
"frontend",
"backend",
"database",
"testing",
"documentation",
"infrastructure",
"security",
"functional"
],
"ralphban.featureFlags.enablePercentageCounter": true,
"ralphban.featureFlags.enableDragDrop": true,
"ralphban.featureFlags.enableFilters": true
}
{
"name": "ralphban",
"version": "1.0.2",
"engines": {
"vscode": "^1.100.0"
},
"dependencies": {
"ajv": "^8.17.1",
"minimatch": "^10.1.1"
}
}
Copy this template for new task files:
[
{
"category": "functional",
"description": "Task description here",
"status": "pending",
"priority": "medium",
"steps": [
"First step",
"Second step",
"Third step"
],
"dependencies": [],
"passes": null
}
]
Solution: Verify file matches ralphban.filePatterns glob. Check Output → Ralphban for errors.
Solution: Check ralphban.featureFlags.enableDragDrop is true. Completed tasks cannot move backward.
Solution: Ensure valid JSON array, each task has category, description, steps. Use VS Code's JSON validation.
Solution: Dependencies reference other tasks by exact description string. Typos break the link.
category, description, steps fieldsdescription values are uniqueralphban.filePatterns globConverted and distributed by TomeVault — claim your Tome and manage your conversions.