소스 정보
- 저장소
- Tresjs/tres
- 최근 소스 활동
- 2026년 7월 15일 07:43
- 감지된 SKILL.md 언어
- 영어
- 스타
- 3,659
- 포크
- 192
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Tresjs/tres --skill lint-commit-pr명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | lint-commit-pr |
| description | Lint local changes, auto-fix, conventional commit, and optionally create PR |
Lint local changes, auto-fix issues, generate conventional commit message based on monorepo changes, and optionally create a PR.
Parameters: $ARGUMENTS
pr - Force create PR even if one existsno-pr - Skip PR creation, only commit and pushpr-only - Only create/update PR, skip lint and commit stepsHandle pr-only mode (if specified):
Check git status to identify modified files and ensure there are changes to commit
Run linter with auto-fix on affected projects only:
pnpm nx affected -t lint --fix to lint only projects with changesVerify lint passed - if there are remaining lint errors that couldn't be auto-fixed, report them and stop
Stage all changes using git add -A to ensure all modifications (including lint fixes) are staged
Analyze the changes:
git diff --staged to review all staged modificationsGenerate conventional commit message following this format:
<type>(<scope>): <description> where scope is the package/app namefix(core): resolve memory leak in dispose methodfeat(cientos): add new OrbitControls componentdocs(playground): update examples with new APIchore(docs): update navigation structuremonorepoShow the commit message to the user and ask for confirmation
Commit the staged changes with the approved message
Push to remote using git push -u origin HEAD
Handle PR creation based on parameter:
no-pr parameter: Stop here, changes are pushedgh pr view (will fail if no PR exists)pr parameter: Skip PR creation, inform user PR will auto-updatepr parameter provided: Create PR using gh pr create with:
pr-only mode)# Auto-detect (default behavior)
/lint-commit-pr
# Lints, commits, pushes
# Checks if PR exists with: gh pr view
# If PR exists: "✓ Changes pushed. Existing PR will update automatically"
# If no PR: Creates new PR
# Skip PR creation
/lint-commit-pr no-pr
# Force create PR
/lint-commit-pr pr
# Update existing PR only (skip lint/commit)
/lint-commit-pr pr-only
# Single package fix
packages/core/src/useRenderer.ts modified
→ fix(core): prevent renderer disposal on component unmount
# Feature in cientos
packages/cientos/src/components/Stars.vue added
→ feat(cientos): add Stars component for particle effects
# Documentation update
apps/docs/content/guide/getting-started.md modified
→ docs(docs): clarify installation instructions
# Multiple packages
packages/core and packages/cientos modified
→ feat(monorepo): add shared composable for camera controls
pnpm nx affected -t lint --fix before committingcore, cientos, docs)-u flag for first-time pushesgh pr view to check if PR exists (exit code 0 = exists)