feat: install korean technical blog skill bundle

.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>
This commit is contained in:
DongHyeonka
2026-08-07 14:20:42 +09:00
co-authored by Claude Opus 5
parent 1099834617
commit 25644cc4d9
81 changed files with 5261 additions and 1484 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
}