소스 정보
- 저장소
- hristo2612/jinn
- 최근 소스 활동
- 2026년 7월 14일 16:12
- 감지된 SKILL.md 언어
- 영어
- 스타
- 313
- 포크
- 73
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/hristo2612/jinn --skill migrate명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | migrate |
| description | Apply pending version migrations to update this {{portalName}} instance |
This skill activates when the user runs /migrate, when launched by jinn migrate, or when asked to update/upgrade the instance.
When a new version of Jinn is released, it may include updated skills, new documentation, improved prompts, or config schema changes. These updates are shipped as migration folders in ~/.jinn/migrations/<version>/. Each folder contains:
MIGRATION.md - AI-readable instructions describing exactly what changedfiles/ - New or updated files in their correct relative directory structureYour job is to apply these migrations intelligently - preserving user customizations while incorporating improvements.
Read ~/.jinn/config.yaml and note the jinn.version field. If the field is missing, assume 0.0.0.
List all directories in ~/.jinn/migrations/. Each directory name is a semver version string (e.g., 0.2.0, 0.3.0).
Sort them in ascending semver order. Filter to only versions greater than the current instance version.
If no pending migrations exist, inform the user they are up to date and stop.
For each pending version, in ascending order:
Read ~/.jinn/migrations/<version>/MIGRATION.md. This file describes:
The MIGRATION.md will categorize changes:
New files (safe - just copy):
~/.jinn/migrations/<version>/files/<path> to ~/.jinn/<path>Updated files (needs merge):
Removed files (careful):
<filename>.pre-migration.bak before removingBefore modifying any existing file, create a backup:
file.ext to file.ext.pre-<version>.bakCLAUDE.md → CLAUDE.md.pre-0.2.0.bakThis ensures the user can always recover if something goes wrong.
After all migrations are successfully applied, update config.yaml:
jinn:
version: "<final-migrated-version>"
After adding any new skills, ensure their symlinks exist:
~/.jinn/.claude/skills/<skill-name> → ../../skills/<skill-name>~/.jinn/.agents/skills/<skill-name> → ../../skills/<skill-name>Remove the applied migration directories from ~/.jinn/migrations/.
Keep the backup files - the user can delete them manually later.
Give the user a clear summary:
Migration complete: v{old} → v{new}
Added:
- skills/migrate/ (new skill)
- docs/migrations.md (new doc)
Updated:
- CLAUDE.md (added new delegation protocol section)
- config.yaml (added jinn.version field)
Backups created:
- CLAUDE.md.pre-0.2.0.bak
- config.yaml.pre-0.2.0.bak
These are the most sensitive files - users heavily customize them. Follow this strategy:
# Heading, ## Heading)jinn migrate will retry.If the user asks for a dry run or preview, read all pending MIGRATION.md files and summarize what would change - without modifying any files.