How this skill is triggered — by the user, by Claude, or both
Slash command
/easy-hwp:hwp-templateThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
$ARGUMENTS
$ARGUMENTS
| 명령어 | 설명 | 예시 |
|---|---|---|
save <이름> <파일> | 템플릿으로 저장 | /hwp-template save IRB IRB서식.hwpx |
list | 저장된 템플릿 목록 | /hwp-template list |
info <이름> | 템플릿 상세 정보 | /hwp-template info IRB |
delete <이름> | 템플릿 삭제 | /hwp-template delete IRB |
템플릿은 현재 프로젝트 디렉토리 기준으로 저장:
{프로젝트}/
└── templates/
├── index.json # 템플릿 메타데이터
└── {이름}.hwpx # 템플릿 파일들
templates/ 디렉토리가 없으면 생성templates/{이름}.hwpx로 복사templates/index.json에 메타데이터 저장:{
"templates": [
{
"name": "IRB",
"file": "IRB.hwpx",
"fields": ["연구과제명", "연구책임자", "연구기간"],
"created": "2024-01-15"
}
]
}
templates/index.json 읽기템플릿 목록:
| 이름 | 필드 수 | 등록일 |
|------|---------|--------|
| IRB | 15개 | 2024-01-15 |
templates/index.json에서 해당 템플릿 찾기templates/{이름}.hwpx 파일 삭제templates/index.json에서 항목 제거저장된 템플릿은 /hwp-fill에서 파일 경로 대신 이름으로 사용:
/hwp-fill IRB 내용.md
→ templates/IRB.hwpx를 자동으로 찾아서 사용
templates/ 디렉토리는 .gitignore에 추가 권장 (개인 서식이므로)npx claudepluginhub nathankim0/easy-hwp --plugin easy-hwpGenerates HWPX documents from user-uploaded or default templates using ZIP-level XML text replacement and ObjectFinder surveys. Use for quick report and official document creation.
Edits, extracts, and automates Korean HWPX/OWPML documents. Handles template placeholder replacement, document creation, and operating plan generation.
Fills institutional Word form templates (.doc/.docx) for IRB protocols, ethics applications, and grant proposals while preserving original formatting. Korean-aware CJK support.