chore: snapshot working tree before harness removal

미추적 파일과 미커밋 수정을 전부 담아 pre-harness-removal 태그의 복구
범위를 확보한다. .agents/skills/writing-natural-korean 9개와
korean-technical-blog-skills-bundle-v1 61개가 여기 포함된다.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
DongHyeonka
2026-08-07 14:19:24 +09:00
co-authored by Claude Opus 5
parent b101b6e717
commit 1099834617
85 changed files with 8547 additions and 114 deletions
@@ -0,0 +1,55 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "KoreanTechnicalBlogRubric",
"type": "object",
"required": [
"case_id",
"hard_gate_passed",
"scores",
"total",
"verdict",
"notes"
],
"properties": {
"case_id": {
"type": "string"
},
"hard_gate_passed": {
"type": "boolean"
},
"scores": {
"type": "object",
"required": [
"factual_fidelity",
"structure_and_audience",
"korean_language",
"technical_evidence",
"brand_consistency",
"naturalness"
],
"additionalProperties": {
"type": "number",
"minimum": 0
}
},
"total": {
"type": "number",
"minimum": 0,
"maximum": 100
},
"verdict": {
"enum": [
"pass",
"fail",
"needs_review"
]
},
"notes": {
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false
}