소스 정보
- 저장소
- ReinaMacCredy/loveNovel
- 최근 소스 활동
- 2026년 2월 23일 16:48
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/ReinaMacCredy/loveNovel --skill work명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | work |
| description | Execute a plan or direct task with worker delegation and verification. |
.maestro/plans//work fix the login bug/work --resumeYou are the orchestrator.
| Argument | Meaning |
|---|---|
<plan-name> | Load a plan by name or title substring |
--resume | Skip completed tasks (- [x]) |
| (none) | Auto-load if one plan; prompt if multiple |
| (description) | Planless mode — see reference/planless-flow.md |
Check .maestro/handoff/*.json for "status": "designing". If found, warn the user and wait for confirmation.
Scan .maestro/plans/*.md for available plans.
If <plan-name> argument given:
add, fix, create, update, implement, refactor, remove, change, move, build). If so → reference/planless-flow.mdPlan not found. Available: {list}If no argument:
No plans found. Run /design first, or /work <description>.Validate the plan has:
## Objective section (required)- [ ] checkbox (required)## Verification section (required)## Scope section (warn if missing, proceed)Present summary: title, objective excerpt, task count, scope.
Ask: "Execute this plan?" — wait for explicit confirmation. If cancelled, stop.
Write handoff file:
// .maestro/handoff/{plan-slug}.json
{
"topic": "{slug}",
"status": "executing",
"started": "{ISO timestamp}",
"plan": ".maestro/plans/{slug}.md"
}
Worktree isolation (optional) — ask user, then follow reference/worktree-isolation.md if chosen.
Load priority context from .maestro/notepad.md under ## Working Memory. Items tagged P0-P2 become hard constraints appended to every task prompt.
Discover skills → see reference/skill-injection.md. Build a registry for task prompt injection.
Work through each - [ ] checkbox in the plan, in dependency order.
For each task:
Use this template for every worker assignment:
## TASK
[Task title from the checkbox]
## EXPECTED OUTCOME
- [ ] Files created/modified: [paths from plan]
- [ ] Tests pass: [test command]
- [ ] No new errors
## CONTEXT
[Background, constraints, related files from plan]
## SKILL GUIDANCE
[Only if matching skills found — see reference/skill-injection.md]
## MUST DO
- [Explicit requirements from plan]
## MUST NOT DO
- [Explicit exclusions]
## PRIORITY CONTEXT
- [P0-P2 items from notepad, if any]
## KNOWLEDGE CAPTURE
- If you discover a non-obvious constraint, append to .maestro/notepad.md under ## Working Memory.
- Emit <remember category="learning">description</remember> for non-trivial patterns.
Spawn a worker subagent with the task prompt. Use whatever delegation tool your runtime provides (Task, handoff, subagent, etc.) — the point is isolated execution so you can verify independently.
Worker role selection:
| Role | Use for |
|---|---|
kraken | TDD, new features, multi-file changes |
spark | Quick fixes, single-file changes, config |
build-fixer | Build errors, lint failures, type errors |
If no subagent tool is available, do the work yourself inline.
After the worker finishes → see reference/verification.md for the full protocol.
Summary:
If passes → commit and mark done (4d).
If fails → retry up to 3 times:
build-fixer for persistent build/lint errorsoracle for diagnostic help on attempt 3git add <file1> <file2>feat(<plan-scope>): <short task description>
Plan: <plan-name>
Task: <task subject>
- [x] Task title <!-- commit: abc1234 -->
Never end a session with 0 commits. Each verified task gets its own commit.
Move to the next - [ ] checkbox. Repeat 4a-4d until all tasks are done.
--resume mode: Skip all - [x] checkboxes.
After all tasks are done, pass these gates before wrapping up:
## Verification section.## Security section → see reference/security.mdcritic agent for final review. If verdict is REVISE, send issues to workers and wait for fixes.All gates must pass before proceeding.
Extract wisdom → see reference/wisdom.md
Write learnings to .maestro/wisdom/{slug}.md.
Archive plan:
mkdir -p .maestro/archive/
mv .maestro/plans/{slug}.md .maestro/archive/{slug}.md
Update handoff:
{ "status": "archived", "completed": "{ISO timestamp}" }
Worktree cleanup (if used) → see reference/worktree-isolation.md
Append summary to notepad (.maestro/notepad.md under ## Working Memory):
- [{date}] [work:{slug}] Completed: {N}/{total} tasks. Files: {count}. Security: {pass|skip}.
Tell the user:
.maestro/archive/{slug}.mdSuggest: Run /review to verify results against acceptance criteria.
| Don't | Do instead |
|---|---|
| Edit files yourself | Delegate to workers |
| Skip verification | Verify every task before committing |
| Use one-line task prompts | Use the full delegation template |
| Skip wisdom extraction | Always write .maestro/wisdom/ file |
| Forget to commit | Commit after each verified task |
| Start without handoff file | Always write handoff in Step 3 |
| Topic | File |
|---|---|
| Verification protocol | reference/verification.md |
| Security review | reference/security.md |
| Wisdom extraction | reference/wisdom.md |
| Worktree isolation | reference/worktree-isolation.md |
| Skill injection | reference/skill-injection.md |
| Planless flow | reference/planless-flow.md |