소스 정보
- 저장소
- nix-community/nur-combined
- 최근 소스 활동
- 2026년 6월 15일 05:12
- 감지된 SKILL.md 언어
- 영어
- 스타
- 197
- 포크
- 23
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/nix-community/nur-combined --skill update-nur-packages명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Use this when writing or modifying Nix package definitions and related repo exports in this NUR repository.
This skill should be used when user asks to "deploy with Dokploy", "use Dokploy Cloud", "manage self-hosted Dokploy", "deploy Docker Compose on Dokploy", "manage Dokploy databases", "configure Dokploy domains", or "look up Dokploy CLI commands".
Create, modify, and iteratively improve OpenCode skills (SKILL.md files). Use whenever the user wants to create a new skill from scratch, edit or optimize an existing skill, write or redesign a SKILL.md, design skill test cases, or improve a skill's description for better triggering. Also use proactively when the user describes a workflow they want to capture as a reusable skill, or when they ask how to make a skill trigger more reliably — even if they don't explicitly say "skill".
SOC 직업 분류 기준
SKILL.md 표시 중
| name | update-nur-packages |
| description | Use when updating musescore or cursor packages in the nur-packages repo |
Packages live in pkgs/<name>/default.nix. After updating, build both arches, then commit as package: old -> new.
# 1. Find latest release
gh api repos/musescore/MuseScore/releases/latest \
--jq '{tag: .tag_name, assets: [.assets[] | select(.name | test("AppImage")) | .name]}'
# 2. Fetch hashes (version = e.g. 4.7.3.260608135, tag = v4.7.3)
nix-prefetch-url --type sha256 "https://github.com/musescore/MuseScore/releases/download/<tag>/MuseScore-Studio-<version>-x86_64.AppImage" 2>/dev/null
nix-prefetch-url --type sha256 "https://github.com/musescore/MuseScore/releases/download/<tag>/MuseScore-Studio-<version>-aarch64.AppImage" 2>/dev/null
# 3. Convert to SRI
nix hash convert --hash-algo sha256 --to sri <hash>
Update version, both urls and both hashes in pkgs/musescore/default.nix.
# 1. Get latest version and build hash from redirect URL (HEAD only, no download)
curl -sIL "https://api2.cursor.sh/updates/download/golden/linux-x64-appimage/cursor/latest" \
-o /dev/null -w "%{url_effective}\n"
curl -sIL "https://api2.cursor.sh/updates/download/golden/linux-arm64-appimage/cursor/latest" \
-o /dev/null -w "%{url_effective}\n"
# URLs contain version (e.g. 3.7.27) and production build hash
# 2. Fetch hashes
nix-prefetch-url --type sha256 "<x64-url>" 2>/dev/null
nix-prefetch-url --type sha256 "<arm64-url>" 2>/dev/null
# 3. Convert to SRI
nix hash convert --hash-algo sha256 --to sri <hash>
Update version, both urls and both hashes in pkgs/cursor/default.nix.
# Build both arches
nix build 'path:.#musescore'
nix build 'path:.#packages.aarch64-linux.musescore'
# Cursor is unfree
NIXPKGS_ALLOW_UNFREE=1 nix build 'path:.#cursor' --impure
NIXPKGS_ALLOW_UNFREE=1 nix build 'path:.#packages.aarch64-linux.cursor' --impure
# Commit format
git commit pkgs/<name>/default.nix -m "<name>: <old-version> -> <new-version>"