소스 정보
- 저장소
- tools-only/X-Skills
- 최근 소스 활동
- 2026년 2월 27일 19:14
- 감지된 SKILL.md 언어
- 영어
- 스타
- 7
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tools-only/X-Skills --skill update-infos-release명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | update-infos-release |
| description | Update Claude Code releases tracking (guide + landing + version bump) |
| argument-hint | [bump-type] |
Automate Claude Code releases tracking and guide version management.
/update-infos-release # Update CC releases only (no guide version bump)
/update-infos-release patch # Update CC + bump guide patch (3.9.11 → 3.9.12)
/update-infos-release minor # Update CC + bump guide minor (3.9.11 → 3.10.0)
/update-infos-release major # Update CC + bump guide major (3.9.11 → 4.0.0)
./scripts/update-cc-releases.sh
If new versions detected, continue. Otherwise, stop.
Files to update:
machine-readable/claude-code-releases.yamlguide/claude-code-releases.mdclaude-code-ultimate-guide-landing/index.html (badge + section)Process:
Condensation rules for YAML:
breaking: arrayIf bump-type specified:
# Read current version
cat VERSION
# Bump version
# patch: 3.9.11 → 3.9.12
# minor: 3.9.11 → 3.10.0
# major: 3.9.11 → 4.0.0
# Update VERSION file
echo "X.Y.Z" > VERSION
# Sync version across docs
./scripts/sync-version.sh
Files synced by script:
README.mdguide/cheatsheet.mdguide/ultimate-guide.mdmachine-readable/reference.yamlAdd entry:
## [X.Y.Z] - YYYY-MM-DD
### Documentation
- **Claude Code Releases**: Updated tracking to vA.B.C
- [Feature 1]
- [Feature 2]
- [Feature 3]
[If guide version bump:]
### Version Bump
- Bumped guide version: [old] → [new]
- Reason: [major features added / significant updates / breaking changes in CC]
./scripts/check-landing-sync.sh
Expected output:
✅ Version guide: X.Y.Z
✅ Templates: N
✅ Quiz questions: N
✅ Guide lines: N
✅ Claude Code: vA.B.C
If mismatches, fix before committing.
Two repositories to update:
cd /Users/florianbruniaux/Sites/perso/claude-code-ultimate-guide
git add \
VERSION \
CHANGELOG.md \
README.md \
guide/cheatsheet.md \
guide/ultimate-guide.md \
guide/claude-code-releases.md \
machine-readable/reference.yaml \
machine-readable/claude-code-releases.yaml
# If version bump:
git commit -m "release: vX.Y.Z
- Update Claude Code releases tracking (vOLD → vNEW)
- [Bump type]: vOLD_GUIDE → vNEW_GUIDE
- Update CHANGELOG with release details
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>"
# If CC releases only:
git commit -m "docs: update Claude Code releases to vA.B.C
- Update latest tracked version: vOLD → vNEW
- Add vNEW highlights: [feature1], [feature2], [feature3]
- [Any breaking changes or fixes]
- Update dates: YYYY-MM-DD
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>"
git push
cd /Users/florianbruniaux/Sites/perso/claude-code-ultimate-guide-landing
git add index.html
git commit -m "chore: sync with guide vX.Y.Z
- Update Claude Code version badge: vOLD → vNEW
[If releases section updated:]
- Update releases timeline with vNEW features
- Maintain top 5 notable releases
- Maintain landing/guide synchronization
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>"
git push
Display to user:
✅ Release Update Complete
Guide Repository:
- Version: [old] → [new]
- Claude Code: vA.B.C
- Commit: [hash]
- Files: [count] updated
Landing Repository:
- Claude Code badge: vA.B.C
- Commit: [hash]
- Files: [count] updated
Synchronization: ✅ All synced
Next Steps:
1. Verify GitHub Pages deployment: https://florianbruniaux.github.io/claude-code-ultimate-guide-landing/
2. Check version badge displays correctly
3. [If major release] Update social media / announcements
If no new Claude Code versions:
ℹ️ No new Claude Code releases detected.
Current tracked: vX.Y.Z
Latest available: vX.Y.Z
Aborting. Nothing to update.
If sync check fails:
❌ Synchronization check failed:
[List mismatches]
Please fix manually before committing.
Run: ./scripts/check-landing-sync.sh
If git operations fail:
❌ Git operation failed: [error]
Manual intervention required.
Check: git status
User: /update-infos-release
Output:
✅ New Claude Code release detected: v2.1.15
Date: 2026-01-22
Highlights:
- New feature X
- Fix for Y
- Improvement Z
Updating tracking files...
✅ YAML updated
✅ Markdown updated
✅ Landing badge updated
Verifying sync... ✅ All synced
Committing changes...
✅ Guide: commit abc1234
✅ Landing: commit def5678
✅ Release Update Complete
User: /update-infos-release minor
Output:
✅ New Claude Code release detected: v2.2.0
Major release with significant features
Current guide version: 3.9.11
Bumping to: 3.10.0 (minor)
Updating files...
✅ Claude Code tracking updated
✅ Guide version bumped
✅ CHANGELOG updated
✅ All docs synced
Verifying sync... ✅ All synced
Committing changes...
✅ Guide: commit abc1234 (8 files)
✅ Landing: commit def5678 (1 file)
✅ Release Update Complete (v3.10.0)
git reset --hard)/version - Check current versions (guide + CC)/changelog - View recent CHANGELOG entries/sync - Run sync check without updates