ソース情報
- リポジトリ
- 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コマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
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 lists