一键导入
agile-sync
Synchronize all agile development artifacts in one command. Updates CHANGELOG, README stats, progress tracking, and validates documentation completeness.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Synchronize all agile development artifacts in one command. Updates CHANGELOG, README stats, progress tracking, and validates documentation completeness.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Orchestrates a dual-AI engineering loop where Claude CLI runs with `--dangerously-skip-permissions` for planning/implementation and Codex validates/reviews outputs. Use when users ask for Claude+Codex collaboration, cross-review, dual AI loop, or explicit Claude CLI execution with skip-permission mode ("claude", "dangerously-skip-permission", "dangerously-skip-permissions", "codex claude", "dual AI", "교차 검증", "claude 협업").
Codex Agent 작성 전문가. Frontmatter 검증, 트리거 키워드 제안, 구조 템플릿 제공, 테스트 시나리오 작성을 지원합니다.
Agent/Skill 사용 통계 및 성과 리포트 생성 전문가. CLI 차트로 시각화하고 인사이트를 제공합니다. "통계", "사용량", "analytics", "성과", "리포트", "메트릭", "분석", "usage", "metrics", "statistics", "report" 키워드에 반응.
Tool/Agent 사용 통계를 CLI 차트로 시각화. "통계", "사용량", "analytics", "metrics", "리포트" 키워드에 반응.
Use when creating or developing, before writing code or implementation plans - refines rough ideas into fully-formed designs through collaborative questioning, alternative exploration, and incremental validation. Don't use during clear 'mechanical' processes
GitHub Flow 기반 브랜치 및 Remote 관리 전문가. 브랜치 생성/삭제, Remote 설정, 원격 저장소 관리 시 사용. "브랜치", "branch", "브랜치 만들어", "새 브랜치", "브랜치 생성", "브랜치 삭제", "브랜치 전환", "checkout", "switch", "remote", "원격", "upstream", "origin", "fetch", "pull", "push", "merge branch", "create branch", "delete branch" 키워드에 반응.
| name | agile-sync |
| description | Synchronize all agile development artifacts in one command. Updates CHANGELOG, README stats, progress tracking, and validates documentation completeness. |
One-command synchronization of all agile development artifacts.
/agile-sync [--full|--quick|--validate]
| Option | Description |
|---|---|
--full | Complete sync: changelog + readme + progress + validation |
--quick | Quick sync: readme stats + recent changes only |
--validate | Validate only: check for inconsistencies without changes |
| (default) | Standard sync: changelog + readme + progress |
| Step | Action | Input | Output |
|---|---|---|---|
| 1 | Analyze Git State | git log, git status | Branch, commits, uncommitted files |
| 2 | Update CHANGELOG.md | Commits grouped by type | feat/fix/refactor/docs entries |
| 3 | Sync README Stats | Component counts via find | Updated Stats table |
| 4 | Update Progress | Phase TASKS.md scan | PROGRESS.md with progress bar |
| 5 | Validate Docs | Link/file checks | Validation report |
| 6 | Generate Report | All above | Sync summary with recommendations |
| Commit Type | CHANGELOG Section |
|---|---|
feat | Added |
fix | Fixed |
refactor | Changed |
docs | Documentation |
agents_count=$(find .codex/agents -name "*.md" | wc -l)
skills_count=$(find .codex/skills -name "SKILL.md" -o -name "*.md" | wc -l)
Source: docs/phases/phase-*/TASKS.md
Target: docs/PROGRESS.md
Format: [████████████░░░░░░░░] 60% (Phase 2 of 5)
Uses Phase system. Legacy
docs/progress/status.mdis deprecated.
| Context | Command |
|---|---|
| After feature implementation | /agile-sync |
| Before creating PR | /agile-sync --full |
| Quick check before commit | /agile-sync --validate |
| With active sprint | Auto-includes sprint metrics |
| Auto-triggered by | auto-doc-sync hook, .codex/ changes |
{
"agile": {
"auto_changelog": true,
"auto_readme_sync": true,
"sprint_tracking": true,
"velocity_tracking": true,
"sync_on_commit": true
}
}
| DO | DON'T |
|---|---|
| Run before PR creation | Skip validation before releases |
Run --validate before releases | Manually edit generated sections |
| Keep CHANGELOG under version control | Ignore sync warnings |
| Use conventional commits | - |
| Error | Fix |
|---|---|
| CHANGELOG.md not found | /agile-sync creates automatically |
| README stats section missing | Add ## Stats table to README.md |
| Progress tracking failed | mkdir -p docs/progress && touch docs/progress/status.md |
| Skill | Purpose |
|---|---|
/sprint | Sprint lifecycle management |
/readme-sync | Detailed README synchronization |
/changelog | Manual changelog management |
/doc-validate | Comprehensive doc validation |