triforce-sync-check

Solid

Verify 3-Mirror skill sync consistency across .public/skills, .codex/skills, and .claude/skills. Use after skill changes, before commits, or for CI validation.

AI & Automation 335 stars 29 forks Updated today

Install

View on GitHub

Quality Score: 85/100

Stars 20%
84
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
0
Description 5%
100

Skill Content

# Triforce Sync Check 3-Mirror 스킬 동기화 일관성을 검증하는 스킬입니다. ## Architecture ``` .public/skills/ (SSOT - Single Source of Truth) │ ├──► .codex/skills/ (Mirror - Antigravity/Codex) │ └──► .claude/skills/ (Mirror - Claude Code) ``` ## When to Use - 스킬 추가/수정/삭제 후 - 커밋 전 검증 - CI/CD 파이프라인 - 배포 전 확인 ## Quick Check ```bash # 1. 스킬 수 확인 ls -1d .public/skills/*/ | wc -l ls -1d .codex/skills/*/ | wc -l ls -1d .claude/skills/*/ | wc -l # 2. 콘텐츠 해시 비교 find .public/skills -name "SKILL.md" -exec md5 -q {} \; | sort | md5 find .codex/skills -name "SKILL.md" -exec md5 -q {} \; | sort | md5 find .claude/skills -name "SKILL.md" -exec md5 -q {} \; | sort | md5 ``` ## Full Verification Checklist ### 1. Count Verification ```bash public_count=$(ls -1d .public/skills/*/ | wc -l) codex_count=$(ls -1d .codex/skills/*/ | wc -l) claude_count=$(ls -1d .claude/skills/*/ | wc -l) echo "SSOT: $public_count" echo "Codex: $codex_count" echo "Claude: $claude_count" ``` **Pass Criteria**: 3개 값이 모두 동일 ### 2. Structure Verification ```bash # 디렉토리 목록 비교 diff <(ls -1 .public/skills | sort) <(ls -1 .codex/skills | sort) diff <(ls -1 .public/skills | sort) <(ls -1 .claude/skills | sort) ``` **Pass Criteria**: diff 출력 없음 (빈 결과) ### 3. Content Verification ```bash # SKILL.md 파일 해시 비교 public_hash=$(find .public/skills -name "SKILL.md" -exec md5 -q {} \; | sort | md5) codex_hash=$(find .codex/skills -name "SKILL.md" -exec md5 -q {} \; | sort | md5) claude_hash=$(find .c...

Details

Author
aiskillstore
Repository
aiskillstore/marketplace
Created
5 months ago
Last Updated
today
Language
Python
License
None

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

skill-check

Validate Claude Code skills against the agentskills specification. Catches structural, semantic, and naming issues before users do.

39,350 Updated today
sickn33
AI & Automation Solid

skill-check

Validate Claude Code skills against Anthropic guidelines. Use when user says "check skill", "skillcheck", "validate SKILL.md", or asks to find issues in skill definitions. Covers structural and semantic validation. Do NOT use for anti-slop detection, security scanning, token analysis, enterprise checks, or Eval Kit generation; use skill-check-pro for those. Do NOT use for LinkedIn skill engagement; use skillcheck-engage for that.

30 Updated today
olgasafonova
AI & Automation Listed

cli-audit-sync

Verify documentation-code coherence: detect stale references, broken links, terminology drift, outdated diagrams, and non-working examples. Use when the user wants to check if docs match reality, detect doc drift, verify README accuracy, find stale documentation, or says 'is my doc up to date', 'check coherence', 'sync docs', 'doc drift', 'stale docs', 'verify documentation'. Also triggers on 'broken links', 'outdated references', 'docs match code'.

4 Updated yesterday
Destynova2
AI & Automation Listed

skill-sync

Keep locally installed Claude Code skills in sync with their GitHub repos. Use when the user says "sync my skills", "push skill updates", "which skills are out of date?", "skill-sync", "push my skill changes", "are my skills in sync?", "register my skills", or "init skill registry". Companion to publish-skill (publish = first-time, skill-sync = ongoing maintenance). Do NOT use for creating new skills (use skill-creator), first-time publishing (use publish-skill), or improving skill quality (use schliff).

0 Updated today
wan-huiyan
AI & Automation Listed

skill-validator

Validate Claude Code skill files (SKILL.md) against Anthropic's structural requirements. Use this skill whenever the user asks to validate, lint, check, or verify a skill file or skill structure. Triggers on "validate skill", "lint skill", "check skill", "verify SKILL.md", "does my skill meet requirements", or any request to confirm a skill is correctly structured before publishing or importing.

1 Updated yesterday
Fyzel