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,106 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Korean Technical Blog Brief",
"type": "object",
"required": [
"sources"
],
"properties": {
"mode": {
"enum": [
"outline",
"article",
"revise",
"audit"
],
"default": "article"
},
"document_type": {
"type": "string"
},
"purpose": {
"type": "string"
},
"target_audience": {
"type": "string"
},
"reader_outcome": {
"type": "string"
},
"sources": {
"type": "array",
"items": {
"type": "object",
"required": [
"content"
],
"properties": {
"name": {
"type": "string"
},
"content": {
"type": "string"
},
"source_type": {
"type": "string"
},
"verified": {
"type": "boolean"
}
}
}
},
"evidence": {
"type": "array",
"items": {
"type": "object",
"properties": {
"claim": {
"type": "string"
},
"value": {},
"scope": {
"type": "string"
},
"source": {
"type": "string"
},
"status": {
"enum": [
"verified",
"unverified",
"conflicting"
]
}
}
}
},
"protected_terms": {
"type": "array",
"items": {
"type": "string"
}
},
"locked_spans": {
"type": "array",
"items": {
"type": "string"
}
},
"register": {
"enum": [
"preserve",
"hamnida",
"haeyo",
"plain"
]
},
"public_constraints": {
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": true
}
@@ -0,0 +1,177 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "KoreanTechnicalBlogResult",
"type": "object",
"required": [
"status",
"document_type",
"assumptions",
"protected_spans",
"article",
"changes",
"warnings",
"scores",
"gate_failures"
],
"properties": {
"status": {
"enum": [
"pass",
"needs_clarification",
"blocked"
]
},
"document_type": {
"type": "string"
},
"assumptions": {
"type": "array",
"items": {
"type": "object",
"required": [
"field",
"value",
"state"
],
"properties": {
"field": {
"type": "string"
},
"value": {},
"state": {
"enum": [
"provided",
"inferred",
"unspecified"
]
}
}
}
},
"protected_spans": {
"type": "array",
"items": {
"type": "object",
"required": [
"type",
"value"
],
"properties": {
"type": {
"type": "string"
},
"value": {
"type": "string"
}
}
}
},
"article": {
"type": "string"
},
"changes": {
"type": "array",
"items": {
"type": "object",
"required": [
"source",
"result",
"problem",
"rule_ids",
"preservation_check"
],
"properties": {
"source": {
"type": "string"
},
"result": {
"type": "string"
},
"problem": {
"type": "string"
},
"rule_ids": {
"type": "array",
"items": {
"type": "string"
}
},
"preservation_check": {
"enum": [
"passed",
"warning",
"failed"
]
}
}
}
},
"warnings": {
"type": "array",
"items": {
"type": "object",
"required": [
"type",
"message"
],
"properties": {
"type": {
"type": "string"
},
"message": {
"type": "string"
}
}
}
},
"scores": {
"type": "object",
"required": [
"factual_fidelity",
"structure_and_audience",
"korean_language",
"technical_evidence",
"brand_consistency",
"naturalness",
"total"
],
"properties": {
"factual_fidelity": {
"type": "number",
"minimum": 0
},
"structure_and_audience": {
"type": "number",
"minimum": 0
},
"korean_language": {
"type": "number",
"minimum": 0
},
"technical_evidence": {
"type": "number",
"minimum": 0
},
"brand_consistency": {
"type": "number",
"minimum": 0
},
"naturalness": {
"type": "number",
"minimum": 0
},
"total": {
"type": "number",
"minimum": 0
}
}
},
"gate_failures": {
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false
}
@@ -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
}