소스 정보
- 저장소
- nicanac/vibe-architect-central
- 최근 소스 활동
- 2026년 1월 16일 13:02
- 감지된 SKILL.md 언어
- 영어
- 스타
- 2
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/nicanac/vibe-architect-central --skill setup-ralph명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
Automates browser interactions for web testing, form filling, screenshots, and data extraction. Use when the user needs to navigate websites, interact with web pages, fill forms, take screenshots, test web applications, or extract information from web pages.
Create and optimize MEMORY.md memory files or .agent/rules/ modular rules for Antigravity projects. Comprehensive guidance on file hierarchy, content structure, path-scoped rules, best practices, and anti-patterns. Use when working with MEMORY.md files, .agent/rules directories, setting up new projects, or improving Antigravity's context awareness.
Comprehensive code review following OWASP, SOLID, and best practices
SOC 직업 분류 기준
| name | setup-ralph |
| description | Setup the Ralph autonomous AI coding loop - ships features while you sleep |
| argument-hint | <project-path> [-i/--interactive] [-f/--feature <name>] |
Set up the Ralph autonomous coding loop in any project. Ralph runs AI agents in a loop, picking tasks from a PRD, implementing one at a time, committing after each, and accumulating learnings until all tasks are complete.
This skill ONLY sets up Ralph - you run the commands yourself.
Setup Ralph interactively (recommended):
/setup-ralph -i
Setup for specific feature:
/setup-ralph -f 01-add-authentication
What this does:
.agent/ralph/ structure in your projectAfter setup, you run:
bun run .agent/ralph/ralph.sh -f <feature-name>
🛑 NEVER run ralph.sh or any execution commands automatically 🛑 NEVER execute the loop - only set up files and show instructions ✅ ALWAYS let the user copy and run commands themselves ✅ ALWAYS end by showing the exact command to run
Use this skill when:
Don't use for:
| Flag | Description |
|---|---|
<project-path> | Path to the project (defaults to current directory) |
-i, --interactive | Interactive mode: brainstorm PRD with AI assistance |
-f, --feature <name> | Feature folder name (e.g., 01-add-auth) |
Examples:
/setup-ralph /path/to/project -i # Interactive PRD creation
/setup-ralph . -f 01-add-auth # Setup for specific feature
/setup-ralph -i -f 02-user-dashboard # Interactive with specific name
| Variable | Type | Description |
|---|---|---|
{project_path} | string | Absolute path to target project |
{ralph_dir} | string | Path to .agent/ralph in project |
{feature_name} | string | Feature folder name (e.g., 01-add-auth) |
{feature_dir} | string | Path to task folder |
{interactive_mode} | boolean | Whether to brainstorm PRD interactively |
{prd_content} | string | PRD markdown content |
{user_stories} | array | User stories extracted from PRD |
{branch_name} | string | Git branch for the feature |
Load resources/steps/step-00-init.md
| Step | File | Purpose |
|---|---|---|
| 00 | resources/steps/step-00-init.md | Parse flags, run setup script, create structure |
| 01 | resources/steps/step-01-interactive-prd.md | Interactive PRD brainstorming and creation |
| 02 | resources/steps/step-02-create-stories.md | Transform PRD into user stories (prd.json) |
| 03 | resources/steps/step-03-finish.md | Show run command (user runs it themselves) |
| Script | Purpose |
|---|---|
scripts/setup.sh | Creates all Ralph files in the project |
✅ Ralph structure created at {project_path}/.agent/ralph ✅ Feature folder created with PRD.md, prd.json, progress.txt ✅ User stories properly formatted in prd.json ✅ Clear run command provided to user (they run it themselves)