docs: 보스 설계 문서와 Codex YAML 도구 추가

- 프로젝트 AGENTS 지침에 커밋 후 푸시 확인 규칙과 런타임 콘텐츠 에이전트 규칙을 보강
- 보스 설계 플레이북과 멀티플레이 보스 설계 철학 문서를 추가해 사람용 설계 기준을 정리
- Codex-Tools 디렉터리에 Markdown→YAML→검증 파이프라인 스크립트와 프롬프트, 스키마, 설정 파일을 추가
This commit is contained in:
2026-04-06 14:03:49 +09:00
parent c48d1bee52
commit c8edf838fd
12 changed files with 1201 additions and 1 deletions

22
Codex-Tools/README.md Normal file
View File

@@ -0,0 +1,22 @@
# Codex Boss Pipeline Tools
This directory contains helper scripts for a Markdown -> YAML -> Validation workflow.
## Files
- `skills/generate_boss_yaml.py`: generate runtime YAML from a Markdown boss design document.
- `skills/validate_boss_yaml.py`: validate a generated boss YAML and emit a Markdown report.
- `skills/run_boss_pipeline.py`: run both steps together.
- `config/paths.example.yaml`: copy and edit into `paths.yaml` for your environment.
## Recommended flow
1. Write `/mnt/smb/Obsidian Vault/Colosseum/보스/<boss>/<boss> 기획.md`
2. Run `run_boss_pipeline.py`
3. Review `<boss>_validation.md`
4. Edit the Markdown source, then rerun.
## Example
```bash
python skills/run_boss_pipeline.py \
--md "/mnt/smb/Obsidian Vault/Colosseum/보스/드로그/드로그 기획.md" \
--config config/paths.yaml
```