一键导入
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.