用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/hashicorp/design-system --skill add-changeset命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Update release notes prior to a release of the @hashicorp/design-system-components package
Skill to review code changes in the repository and provide constructive feedback.
Skill to check for linting errors, test failures, and other issues.
基于 SOC 职业分类
正在显示 SKILL.md
| name | add-changeset |
| description | Instructions for how to write changelog entries |
All changelog entries are created using changesets. Upcoming changeset files are located in the .changeset folder. Changeset files are created using the changeset CLI tool, which prompts the user to input the relevant information for the changelog entry. After a changeset file is created, it can be edited manually to ensure it follows the correct format and includes all necessary information.
For a given changeset the following parameters are required:
Locate the .changeset directory where the changeset file should be placed
Create the changeset file
Under the .changeset directory create a file with a unique filename using the pattern: [random-adjective]-[random-noun]-[random-verb].md (e.g., happy-lions-jump.md)
Add the required parameters to the changeset file
Follow the below template to add the required parameters to the changeset file:
---
"@hashicorp/{package-name}": {patch | minor | major}
---
{summary}
IMPORTANT A changeset must follow the below formatting for its targeted package and general formatting rules.
Each changeset entry related to the @hashicorp/design-system-components package should follow this template:
<!-- START {components/path} -->
`ComponentName` - Fixed {...additional details}.
<!-- END -->
`ComponentName` - Description of the change.
<!-- START components/path -->.
components/path should be the file path to the component's documentation in the website that the change is associated with, starting from website/docs/. Example: components/accordion.<!-- END -->.Multiple changes to the same component in a single changeset entry:
<!-- START {components/path} -->
`ComponentName` - Brief description of the change.
- {...additional details #1}.
- {...additional details #2}.
<!-- END -->
Changes to multiple components in a single changeset entry:
<!-- START {components/path1} -->
`ComponentName1` - Fixed {...additional details}.
<!-- END -->
<!-- START {components/path2} -->
`ComponentName2` - Fixed {...additional details}.
<!-- END -->
Each changeset entry related to the @hashicorp/design-system-mcp package should follow this template:
---
"@hashicorp/design-system-mcp": minor
---
Added the `list-components` tool for querying the component catalog.