一键导入
sync-docs
Use this skill when the user asks to synchronize project documentation after implemented changes. Do not trigger for planning-only conversations.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use this skill when the user asks to synchronize project documentation after implemented changes. Do not trigger for planning-only conversations.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Build the signed Android release App Bundle (.aab) for this repository. Use when the user asks to create or export a release AAB, run `bundleRelease`, bump the Android app version for release, verify release signing configuration, or report the final bundle output path and size.
Use this skill when the user explicitly asks to create git commits. Do not trigger for code changes that do not request commit creation.
| name | sync-docs |
| description | Use this skill when the user asks to synchronize project documentation after implemented changes. Do not trigger for planning-only conversations. |
세션 작업 완료 후 프로젝트 문서를 docs/에 동기화하는 스킬입니다. OpenAI Codex 워크플로우를 기본으로 하며 특정 벤더 도구에 종속되지 않게 관리합니다.
이 스킬은 다음 상황에서 실행합니다:
sync-docs 스킬 명시 호출(지원 환경) 또는 명시적 요청 시docs/ 디렉토리 구조:
docs/
├── ARCHITECTURE.md # 프로젝트 아키텍처 개요
├── CONVENTIONS.md # 코드 컨벤션 및 패턴
├── MODULES.md # 모듈별 설명 (구현된 모듈만)
└── REQUIREMENTS.md # 요구사항 문서
/sync-docs 실행 시 동기화 대상:
docs/ - 프로젝트 문서.agents/skills/sync-docs/SKILL.md - 이 스킬 파일 자체AGENTS.md - 문서 진입점(인덱스) 일관성 확인1. docs/ 디렉토리의 기존 문서 파일들 읽기
2. .agents/skills/sync-docs/SKILL.md 읽기
3. 마지막 업데이트 시점 파악
1. 이번 세션에서 수행한 작업 목록 수집 (todowrite로 관리된 TODO와 작업 로그 활용)
2. 변경된 파일들 분석 (git diff 또는 작업 기록)
3. 아키텍처/패턴 변경 사항 식별
4. 실제 구현된 코드 변경만 문서화 대상으로 식별
5. REQUIREMENTS.md 필수 검토: Implementation Details 섹션 업데이트 필요 여부 확인
각 문서별 업데이트 기준:
코드 블록 규칙: 코드 스니펫은 CONVENTIONS.md에만 작성. MODULES.md와 REQUIREMENTS.md는 설명/스펙만 기술.
1. 문서 내용 일관성 검증
2. 마크다운 포맷 검증
3. 변경 사항 요약 출력
4. (선택) 커밋 제안 - 사용자 확인 후
# Project Architecture
## Overview
[프로젝트 목적과 핵심 아키텍처 설명]
## Layer Structure
[레이어별 책임과 의존성 방향]
## Tech Stack
[사용 기술 스택과 선택 이유]
---
*Last Updated: YYYY-MM-DD*
# Code Conventions
## Naming
[네이밍 규칙]
## Architecture Patterns
[사용하는 아키텍처 패턴]
## File Structure
[파일/폴더 구조 규칙]
## Best Practices
[프로젝트별 베스트 프랙티스]
---
*Last Updated: YYYY-MM-DD*
# Module Documentation
## [Module Name]
### Purpose
[모듈의 목적]
### Responsibilities
[모듈의 책임]
### Dependencies
[의존하는 다른 모듈]
### Key Classes/Functions
[주요 클래스/함수 목록]
---
문서 동기화 후 엔트리 문서(AGENTS.md)에 참조가 최신인지 확인:
## External File Loading
CRITICAL: 다음 문서들은 작업 시 참고하세요:
- 아키텍처 이해: @docs/ARCHITECTURE.md
- 코드 컨벤션: @docs/CONVENTIONS.md
- 모듈 설명: @docs/MODULES.md
- 요구사항: @docs/REQUIREMENTS.md
User: 문서 동기화해줘
Agent:
1. docs/ 및 .agents/skills/sync-docs/SKILL.md 확인
2. 이번 세션 작업 분석 (실제 구현된 것만)
3. 관련 문서 업데이트
4. 변경 사항 요약 출력
5. 커밋 여부 확인
Last Updated: 2026-02-13 (Codex 기준 docs/ + .agents/skills 구조로 경로 갱신)