ソース情報
- リポジトリ
- romeerez/orchid-orm
- ソースの最終更新活動
- 2026年6月5日 21:12
- 検出された 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 changesetコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
SKILL.md を表示中
| name | changeset |
| description | Use when the user prompts "changeset". |
Create the release changeset, optional breaking-change note, staging, and commit. Order matters: scope, patch/minor classification, file edits, exact-message commit.
When this skill is active, follow only this skill for the changeset task. Ignore other process skills, including superpowers skills, unless the user explicitly asks for them.
611 1, find changes/611*/1*/spec.md and read it.changes/ directory.(#<issue-number>).patch: adding new functionality.patch: extending existing functionality while preserving previous contracts.minor: any backward-compatibility gap or breaking behavior/API change.name from packages/<folder>/package.json in the changeset file.pqb or rake-db are affected, always include orchid-orm.pqb or rake-db is minor, orchid-orm is also minor.minor change, prepend a section to BREAKING_CHANGES.md.
packages/*/package.json.0.pnpm changeset add --empty
.changeset/*.md file printed by the command.
--- lines in changeset format.patch or minor values only.orchid-orm when pqb or rake-db are affected.---, add a blank line and a 1-2 sentence description ending with (#<issue-number>).BREAKING_CHANGES.md was changed, print the new section that was added..changeset/*.md file content.git add -A; include all changed files, even files not changed by this agent.(#<issue-number>).| Situation | Release type |
|---|---|
| New functionality | patch |
| Contract-preserving extension | patch |
| Backward-compatibility gap | minor |
pqb or rake-db affected | Include orchid-orm |
pqb or rake-db is minor | orchid-orm is minor |
Prompt changeset 611 1 means read changes/611*/1*/spec.md.
Example changeset file:
---
'orchid-orm': minor
'pqb': patch
---
Fix selecting relation when deleting a record (#708)
minor; it is patch unless compatibility is not preserved.orchid-orm when pqb or rake-db are affected.