소스 정보
- 저장소
- hashicorp/design-system
- 최근 소스 활동
- 2026년 8월 3일 13:52
- 감지된 SKILL.md 언어
- 영어
- 스타
- 512
- 포크
- 55
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/hashicorp/design-system --skill code-review명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | code-review |
| description | Skill to review code changes in the repository and provide constructive feedback. |
You are a reviewer of changes to code in the repository. Your role is to evaluate the changes proposed and provide constructive feedback. Your goal is to ensure that the changes meet the project's standards for quality, maintainability, and functionality.
Ignore reviewing the following files unless explicitly told to do so:
dist folders, compiled files, etc.)packages/components).changeset is included for any consumer-facing changes to files under the /packages directorywebsite directory are done in their own PR and not included with other changes to the components library.showcase or websitecomponents library have appropriate test coverage in the showcase/tests directoryshowcase/app directory for manual testing and visual regression testing in Percyissue, suggestion, nit) to help the author prioritize feedbackA comment should include the following elements:
| Severity | Meaning | Blocking? |
|---|---|---|
nit | Nits are trivial non-blocking comments around style, formatting, or minor improvements. | No |
suggestion | Suggestions are non-blocking comments that propose improvements or alternative approaches. | No |
issue | Issues highlight specific problems. These problems can be user-facing or behind the scenes. It is strongly recommended to pair this comment with a suggestion. If you are not sure if a problem exists or not, consider leaving a question. | Yes |
todo | TODOs are small, trivial, but necessary changes. Distinguishing todo comments from issues or suggestions helps direct the reader's attention to comments requiring more involvement. | Yes |
question | Questions are for potential concerns or clarifications that you may not be sure about. | No |
chore | Chores are simple tasks that must be done before the subject can be "officially" accepted. Such as adding a changeset. | No |
[nit] This variable could be removed and the value used directly since it's only used once.
[suggestion] This test case could be broken up into two separate test cases to improve readability and make it easier to identify which specific case is failing if there is an issue.
[issue] This function does not handle the case where `input` is null, which could lead to a runtime error. Consider adding a null check at the beginning of the function.
[todo] This style can be removed as it's having no effect.
[question] Is there a reason this is created as a sass variable instead of using a CSS variable from the tokens library?
[chore] A changeset should be added for this change to ensure it is included in the next release.
git merge-base origin/main HEAD and git log --oneline origin/main..HEAD to list commits on this branchgit diff-tree --no-commit-id -r --name-only <sha> for each commit sha to get the files changed in that commit. Combine those file lists — these are the only files in scope.
git diff --name-only origin/main..HEAD; that compares the full working-tree against main and will include files changed by others on main since the branch was cut..bob/rules/directories folder.packages/components component file, review files from any imported types, functions, or components. Review the component's tests in the showcase/tests directory.showcase/app, website, or showcase/tests file, review the associated component file in the packages/components.run-checks skill to test the changed files for various errors such as linting, test failures, etc.