Files
document-haness/korean-technical-blog-skills-bundle-v1/writing-korean-technical-blogs/schemas/article-brief.schema.json
T
DongHyeonkaandClaude Opus 5 1099834617 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>
2026-08-07 14:19:24 +09:00

107 lines
1.9 KiB
JSON

{
"$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
}