update-docs
코드 변경에 따른 문서 업데이트를 생성합니다. Drift 감지 결과를 바탕으로 문서 수정안을 제안하고 사용자 승인 후 적용합니다. Triggers - '/update-docs', 'update documentation', '문서 업데이트', '문서 수정'
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
코드 변경에 따른 문서 업데이트를 생성합니다. Drift 감지 결과를 바탕으로 문서 수정안을 제안하고 사용자 승인 후 적용합니다. Triggers - '/update-docs', 'update documentation', '문서 업데이트', '문서 수정'
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Git 커밋에서 CHANGELOG.md 항목을 생성합니다. Conventional Commit 형식을 파싱하여 릴리즈 노트를 자동 생성합니다. Triggers - '/sync-changelog', 'sync changelog', 'generate changelog', '변경로그 동기화', '변경로그 생성'
코드 변경이 문서에 영향을 미치는지 감지합니다. 문서 drift를 찾고 업데이트가 필요한 파일을 알려줍니다. Triggers - '/check-drift', 'check documentation drift', '문서 drift 확인', '문서 동기화 확인'
基于 SOC 职业分类
| name | update-docs |
| description | 코드 변경에 따른 문서 업데이트를 생성합니다. Drift 감지 결과를 바탕으로 문서 수정안을 제안하고 사용자 승인 후 적용합니다. Triggers - '/update-docs', 'update documentation', '문서 업데이트', '문서 수정' |
| allowed-tools | ["Read","Write","Edit","Grep","Glob","Bash"] |
코드 변경에 따른 문서 업데이트를 생성하는 스킬입니다.
/update-docs
/update-docs for pkg/config/config.go changes
먼저 /check-drift를 실행하거나, 이미 감지된 drift 리포트를 확인합니다.
영향받는 문서의 현재 상태를 읽습니다:
변경된 코드에서 문서에 필요한 정보를 추출합니다:
## File: docs-site/docs/reference/cli.md
### Section: Command Line Options
**Current:**
| Flag | Type | Default | Description |
|------|------|---------|-------------|
| --web | bool | false | Enable web UI mode |
| --port | int | 8080 | Web server port |
**Proposed:**
| Flag | Type | Default | Description |
|------|------|---------|-------------|
| --web | bool | false | Enable web UI mode |
| --port | int | 8080 | Web server port |
| --trace-level | string | info | Set trace level (debug\|info\|warn\|error) |
---
Approve this change? [A]pprove / [E]dit / [S]kip / [Q]uit
[text](../path/file.md)```yaml, ```go, ```bash<your-value> 형식모든 변경은 사용자 승인 필요. 스킬은:
# 변경 전 백업 (git stash)
git stash push -m "docs-backup-before-update"
# 롤백이 필요한 경우
git stash pop
# 또는
git restore docs-site/docs/reference/cli.md
## Documentation Update Preview
### 1/3: docs-site/docs/reference/cli.md
**Change:** Add --trace-level flag documentation
```diff
| --port | int | 8080 | Web server port |
+| --trace-level | string | info | Set trace level (debug|info|warn|error) |
Approve? [A/E/S/Q]: A ✓ Applied update to cli.md
Change: Document model_profiles configuration
llm:
provider: openai
model: gpt-4
+
+ # Multiple model profiles (v0.8.0+)
+ model_profiles:
+ - name: fast
+ model: gpt-3.5-turbo
+ - name: accurate
+ model: gpt-4
Approve? [A/E/S/Q]: E What would you like to change? Add temperature field example [Regenerating...]
+ model_profiles:
+ - name: fast
+ model: gpt-3.5-turbo
+ temperature: 0.3
+ - name: accurate
+ model: gpt-4
+ temperature: 0.1
Approve? [A/E/S/Q]: A ✓ Applied update to configuration.md
git diff docs-site/ to review all changes
## 다음 단계
문서 업데이트 후:
1. `git diff docs-site/`로 변경사항 확인
2. 로컬에서 `mkdocs serve`로 미리보기 (선택)
3. 변경사항 커밋