미추적 파일과 미커밋 수정을 전부 담아 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>
56 lines
1015 B
JSON
56 lines
1015 B
JSON
{
|
|
"$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
|
|
}
|