ワンクリックで
changeset
Use when the user prompts "changeset".
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use when the user prompts "changeset".
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Use when the user prompts "code doc" to create or update internal Orchid ORM code documentation from changes/ specs, short-code feature folders, or existing implementation code.
Use when the user prompts "implementation note" for an existing change idea.
Use when the user prompts "write spec" or "make spec".
Use when the user prompts "do task".
Use when the user prompts "write ideas" or "make ideas".
Use when the user prompts "refine design".
| 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.