chore: 문서를 작성할 때 한국어의 표현 작성 스킬 추가 및 1인칭 관점의 글 작성 검증 테스트 추가

This commit is contained in:
DongHyeonka
2026-07-29 16:48:03 +09:00
parent c39406bbdd
commit 41501b5d06
520 changed files with 95494 additions and 2231 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/usr/bin/env bash
set -euo pipefail
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
export PYTHONPATH="$ROOT/src${PYTHONPATH:+:$PYTHONPATH}"
OUT_DIR="${1:-$ROOT/.run/application-core-mock}"
rm -rf "$OUT_DIR"
python3 -m claridoc run \
--brief "$ROOT/examples/briefs/application-core-spring-di-blog.json" \
--source-root "$ROOT/examples/corpus/llm-wiki-mini" \
--config "$ROOT/config/pipeline.mock.json" \
--output "$OUT_DIR"
printf '\nGolden reader-facing example:\n%s\n' "$ROOT/examples/golden/application-core-spring-di-boundary.md"
printf 'Retrieved evidence and mock provenance:\n%s\n' "$OUT_DIR/final/provenance.md"
printf 'Note: the mock draft validates pipeline mechanics; the golden file is the curated prose example.\n'