Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/whoabuddy/claude-knowledge --skill quest-create명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | quest-create |
| description | Create a new quest with phased execution plan |
| allowed-tools | Bash, Read, Write, Edit, Glob, Grep, Task |
Create a new quest — a high-level goal broken into ordered phases for automated execution.
/quest-create <goal description or context>
The user provides a goal/prompt. The quest-planner agent derives a quest name and phase breakdown.
Check for active quests:
.planning/*/QUEST.md files with Status: active.planning/archive/ is always preservedSpawn quest-planner agent to analyze the goal:
Task tool with subagent_type: quest-planner
The planner returns:
Create quest directory: .planning/YYYY-MM-DD-<quest-name>/
Write quest files:
QUEST.md — Goal, linked repos, status (active), created datePHASES.md — Ordered phases, all status pendingSTATE.md — Current phase, activity logconfig.json — {"maxRetries": 3, "commitFormat": "conventional"}phases/ — Empty directory for phase plansAdd .planning/ to .gitignore if not already present
Display quest summary and next steps
# Quest: Quest Name
**Goal:** Goal description here.
**Status:** active
**Repos:**
- /path/to/repo (primary)
**Created:** YYYY-MM-DD
---
## Context
Detailed context from planner analysis.
## Key Dependencies
Phase dependency notes if any.
# Phases
## Phase 1: Name
Goal: What this phase achieves
Status: `pending`
## Phase 2: Name
Goal: What this phase achieves
Status: `pending`
Phase states: pending → completed (or checkpoint if stuck after maxRetries).
# Quest State
Current Phase: 1
Quest Status: active
## Activity Log
- YYYY-MM-DD: Quest created with N phases
{
"maxRetries": 3,
"commitFormat": "conventional"
}
.planning/
├── 2026-02-16-cost-tracking/
│ ├── QUEST.md
│ ├── PHASES.md
│ ├── STATE.md
│ ├── config.json
│ └── phases/
└── archive/
├── 2026-02-14-auth-system/
└── 2026-02-10-loop-hardening/
After creating a quest, use:
/quest-run to run the automated phase loop/quest-status to check progress