.agents/skills의 technical-document-author, revising-korean-technical-prose, writing-natural-korean을 korean-technical-blog-skills-bundle-v1의 세 스킬로 교체한다. - writing-korean-technical-blogs: 문제·제약·선택·구현·결과·한계 구조화 - reducing-ai-like-korean-writing: 상투성·추상화·반복 제거 - editing-korean-grammar-and-expression: 맞춤법·띄어쓰기·호응 검수 상류를 수정하지 않고 복사했다. diff -r 0건, MANIFEST.sha256 검증 통과, 번들 validate_skill.py 3/3 PASS. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
178 lines
3.4 KiB
JSON
178 lines
3.4 KiB
JSON
{
|
|
"$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
|
|
}
|