用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/romeerez/orchid-orm --skill changeset命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 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.