소스 정보
- 저장소
- torchbox/django-pattern-library
- 최근 소스 활동
- 2026년 3월 9일 16:01
- 감지된 SKILL.md 언어
- 영어
- 스타
- 423
- 포크
- 52
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/torchbox/django-pattern-library --skill upgrading-stylelint명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | upgrading-stylelint |
| description | Upgrades a project’s Stylelint version or configuration |
| license | MIT |
Comprehensive project and dependencies review to identify needed changes to upgrade this project to a new Stylelint version, including stylesheet code changes, and potential opt-in improvements based on any changes in the Stylelint release.
To detect from the context or request from the user if unclear:
node --version, npm info . devDependencies)npm info . devDependencies)npm run.Always fetch latest information from the official Stylelint docs and any package docs if possible.
Combine it with project-specific information:
CONTRIBUTING.md or other docs.Upgrades are sensitive tasks, it’s critical to provide clear information to the user throughout the upgrade tasks, with clear requests for any extra input. And as a comprehensive report at the end.
If the current task mode is to work directly on the project code, commit regularly on a new branch unless otherwise noted by project instructions.
Commit for:
Push if allowed from current permissions or after user confirmation, when:
Options to check that the upgrade works correctly, to use as needed through upgrade steps:
Look for any deprecation warnings coming from Stylelint in particular.
package.json and lockfile)At this stage, if there are multiple Stylelint versions on the upgrade path, make sure that all subsequent work is done in sequence for every one of those versions. For example, upgrading from Stylelint v14 to v16 should involve running through all the steps in this file with v15 as the target; then asking the user to confirm the successful v15 upgrade; then restarting this all from v15 to v16.
upgrade-stylelint-vX)This may need to be done in a different order depending on whether dependency compatibility issues are reported when upgrading to the new Stylelint version.
npm info . devDependencies to confirm the current versions of all of the project’s dependencies ahead of the upgrades.npm install --save-dev stylelint@<version> to install the target Stylelint version, including any other packages relevant to that project.Note any warnings or errors from npm or from the project’s QA tools. Those might indicate further actions needed for the upgrades to be successful. Those might require moving on to the subsequent steps to resolve.
This is crucial for the success of the upgrade. The upgrade of Stylelint or of related packages may include changes to linting rules, which might surface new issues with the project.
--fix lax to attempt automated fixes if any are available.