소스 정보
- 저장소
- romeerez/orchid-orm
- 최근 소스 활동
- 2026년 8월 1일 23:53
- 감지된 SKILL.md 언어
- 영어
- 스타
- 543
- 포크
- 19
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/romeerez/orchid-orm --skill task-list명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | task-list |
| description | Use when user asks to write a task list, not to do a task |
Create or update exactly:
tasks.md in the same directory as the provided spec.mdThis is a task-list command for an existing spec, not research-only and not implementation.
By default, write a full task list that covers the complete spec. Only write a partial task list when the user explicitly asks for a limited scope.
The prompt must provide a path to changes/<feature-name>/<NUMBER-idea-name>/spec.md.
If no spec path is provided, ask one focused question for the path. If the path is not an existing spec.md file, stop and report it.
spec.md fully before writing tasks.guidelines/code.md or guidelines/test.md, plus nested guidelines/code.md or guidelines/test.md files for directories likely to change.src/index.ts; downstream internal pqb access goes through pqb/internal.tasks.md exists in the same folder, read it first, preserve still-correct tasks, remove stale tasks, and reconcile it with final spec.md.tasks.mdOutput path: same directory as the provided spec.md.
If it exists, read it first, preserve still-correct tasks, remove stale tasks, and reconcile it with final spec.md.
The file must start with this section before any package or docs work:
## 0. read spec.md and guidelines
- 0.1 Read `spec.md`, including `spec.md` `## Detailed Design`, before starting any later task. Follow that design for every later task, and make sure the final implementation matches it exactly.
- 0.2 Check whether any later task you were prompted to do requires coding. If yes, read and follow every guideline below for that work, and verify that all produced code follows them to the letter.
- you must follow guidelines/code.md or guidelines/test.md for coding
- you must follow <relevant-nested-path>/guidelines/code.md or <relevant-nested-path>/guidelines/test.md for coding
Section 0 rules:
0.1 and 0.2; both are plain list items, not checkboxes.guidelines/code.md or guidelines/test.md and every relevant nested guidelines/code.md or guidelines/test.md for directories the implementation will change.After section 0, only these sections are valid:
docs section, only for repo-root docs/ work, placed after package workchangeset section with the next number and one non-coding task that follows .agents/skills/changeset/SKILL.mdPackage section names must be package folder names or root package script names. For schema config work, use zod and/or valibot, never schema-configs or schemaConfigs. Keep package-local docs in the relevant package section.
Every implementation checkbox task after section 0:
1.1.1, 1.1.2If one requirement spans multiple packages, create a separate task in each affected package section. Do not create empty sections, standalone test tasks, generic research tasks, vague cleanup tasks, or exact test-writing instructions.
Every package coding task must start its subtask list with:
<task>.1 scope: <short package area or capability class><task>.2 acceptance: <high-level expected outcome>Then add change-specific subtasks. End every coding task with these exact verification subtasks after the numeric prefix:
pnpm verifyspec.md for every new user-visible requirementWhen writing those lines in tasks.md, keep the backticks around spec.md and pnpm verify as shown in the example below.
Non-coding tasks, including repo-root docs-only tasks and the final changeset task, do not get the four coding verification subtasks.
Use this structure:
## 0. read spec.md and guidelines
- 0.1 Read `spec.md`, including `spec.md` `## Detailed Design`, before starting any later task. Follow that design for every later task, and make sure the final implementation matches it exactly.
- 0.2 Check whether any later task you were prompted to do requires coding. If yes, read and follow every guideline below for that work, and verify that all produced code follows them to the letter.
- you must follow guidelines/code.md or guidelines/test.md for coding
- you must follow packages/pqb/src/query/guidelines/code.md or packages/pqb/src/query/guidelines/test.md for coding
## 1. pqb
- [ ] 1.1 <change slice title>
- 1.1.1 scope: query-builder read-only query capability
- 1.1.2 acceptance: read-only query objects keep read behavior and reject mutation APIs at the type level.
- 1.1.3 <high-level actionable subtask>
- 1.1.4 verify implementation against guidelines
- 1.1.5 code must be covered by tests
- 1.1.6 tests and types must pass: run `pnpm verify`
- 1.1.7 reconcile `spec.md` for every new user-visible requirement
## 2. orm
- [ ] 2.1 <change slice title>
- 2.1.1 scope: ORM table configuration
- 2.1.2 acceptance: table declarations can opt into read-only query objects without changing default writable behavior.
- 2.1.3 <high-level >
2.1.4 verify implementation against guidelines
2.1.5 code must be covered by tests
2.1.6 tests and types must pass: run
2.1.7 reconcile for every new user-visible requirement
[ ] 3.1
3.1.1
[ ] 4.1 Finalize the change
4.1.1 Follow to finalize the change.
Do not add docs or changeset sections to a partial task list. A partial task
list should contain section 0 and only the affected package or script sections
needed for the explicitly requested scope.
While writing tasks.md, keep this implementation-time rule in mind but do not emit it as its own section:
spec.md.## Detailed Design subsection before implementation. Add a new responsibility-centered subsection only when none fits.Summary, What Changes, Assumptions, and Capabilities aligned when the design materially changes.Before finishing, verify:
spec.md under changes/<feature-name>/<NUMBER-idea-name>/What Changes item and declared capability is covered by tasks.mdtasks.md starts with section 0; 0.1 and 0.2 are the only numbered entries there and are not checkboxes0 lists root and relevant nested code or test guidelinesscope: and acceptance:pnpm verifydocs for full task lists, and final changeset for full task listsSOC 직업 분류 기준