Getting it into your agent
It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.
git clone --depth 1 https://github.com/lsj4232/KR_PATENT_SKILLnpx agentmods add skills/lsj4232/kr_patent_skill/kr-patent-docx-builderWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/lsj4232/kr_patent_skill/kr-patent-docx-builder)<a href="https://agentmods.dev/skills/lsj4232/kr_patent_skill/kr-patent-docx-builder"><img src="https://agentmods.dev/badge/skills/lsj4232/kr_patent_skill/kr-patent-docx-builder/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/lsj4232/kr_patent_skill/kr-patent-docx-builder"><img src="https://agentmods.dev/badge/skills/lsj4232/kr_patent_skill/kr-patent-docx-builder.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00224 | $0.06204 |
| Opus 5 | $0.00112 | $0.03102 |
| Sonnet 5 | $0.00045 | $0.01241 |
| Haiku 4.5 | $0.00022 | $0.00620 |
Grade A, and why
kr-patent-docx-builder scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 217 lines — stays where its author put it; the contents beside it link to each section on GitHub.
한국 특허 docx 빌더
무엇을 하는가
명세서 본문 콘텐츠(텍스트, 청구항, 부호의 설명 등)를 표준화된 JS 객체 형태로 받아, 한국 특허청 별지 양식을 따르는 docx 파일을 자동 생성한다.
핵심 가치: 매번 명세서 docx를 만들 때마다 폰트/들여쓰기/섹션 헤더 코드를 다시 짜지 않아도 된다. 본 스킬의 빌드 스크립트가 이미 검증된 양식을 적용한다.
핵심 파일
scripts/build_kr_patent.js— 메인 빌드 스크립트. content 객체를 받아 docx 생성references/content-schema.md— content 객체의 스키마 (어떤 필드를 채워야 하는지)references/example-content.js— 샘플 content 파일
사용 방법
Step 1. 필요 패키지 설치 (최초 1회)
# 본 스킬 디렉토리에서 1회만 실행. docx 패키지가 로컬 설치됨.
cd kr-patent-docx-builder
npm install
(package.json의 dependencies — docx)
Step 2. content 객체 작성
명세서의 각 섹션을 채우는 JS 객체를 작성한다. 스키마는 references/content-schema.md 참조.
작업 디렉토리에 content.js (필요 시 content_part1.js, content_part2.js, … 분할) 파일을 생성한다.
// content.js (최소 골격)
module.exports = {
metadata: {
file_label: "_법인명__관리번호_명세서초안01_담당자__YYYYMMDD_발명명",
invention_title: "예시 발명의 명칭",
representative_drawing: "도 1"
},
technical_field: "본 발명은 입자 가속기의 빔 진단 기술에 관한 것이다.",
background: [
"<배경 1단락>",
"<배경 2단락>",
"<배경 3단락>",
"<배경 4단락 - 해결과제로의 브릿지>"
],
problem_to_solve: [
"본 발명의 첫 번째 목적은, ~ 위한 것이다.",
"본 발명의 두 번째 목적은, ~ 위한 것이다."
],
solution: [
"<해결수단 단락 1>",
"<해결수단 단락 2>"
],
effects: [
"<효과 1 (3단 인과 구조)>",
"<효과 2>"
],
drawings_brief: [
{ fig: "도 1", desc: "본 발명의 일 실시예에 따른 X를 보인 블록도이다." }
],
detailed_description: [
"<실시예 도입부 표준 문구>",
"<도 1 실시예 단락>",
"<도 2 실시예 단락>"
],
// symbols: [ ... ] // ⚠ default: 생략. 한국 변리사 실무상 【부호의 설명】
// 섹션은 의도적으로 두지 않는 게 권리범위 보호·검토 부담
// 양면에서 유리. symbols 키 자체를 누락 또는 [] 빈 배열로 두면
// 빌더가 해당 섹션을 건너뜀. 사용자가 명시적으로 두기로
// 결정한 경우에만 다음 형태로 채움:
// symbols: [
// { num: "10", name: "슬릿 스캐너" },
// { num: "100", name: "빔 진단 시스템" },
// ],
claims: [
"[청구항 1] ~를 포함하는 X 시스템.",
"[청구항 2] 제1항에 있어서, ~인 것을 특징으로 하는 X 시스템."
],
abstract: "본 발명은 ~에 관한 것이다. ~를 통해 ~한 효과를 얻을 수 있다."
};
What ships with it
5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 11d ago First seen · 217 lines · 224 tokens per session scan A f4dc7037142c
kr-patent-docx-builder is a skill published in the GitHub repository lsj4232/KR_PATENT_SKILL (14 stars, last pushed 17d ago), licensed MIT. It adds 224 tokens to every session and 6,204 once invoked, about $0.0011 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
document-fill
A document-filling assistant that uses a supplied template and case files to fill in forms, contracts, or legal documents. It also reports where each filled value came from and which details are missing.
nuremberg-tokyo
Post-WWII international military tribunals research, drafting, and analysis: the IMT at Nuremberg (1945-46), the twelve NMT trials under Control Council Law No. 10 (1946-49), and the IMTFE at Tokyo (1946-48). Use whenever the conversation involves Nuremberg, the Tokyo Trial, the London or Tokyo Charters, the IMT or…
cps-rca
Cour Pénale Spéciale de la République Centrafricaine (CPS) / Special Criminal Court in the Central African Republic (SCC-CAR) research, drafting, and analysis. Use whenever the conversation involves the CPS, the Loi organique n°15.003 of 3 June 2015, the RPP (Loi 18.010), the affaire Paoua / Lemouna et Koundjili (Issa…
eac-habre
Chambres Africaines Extraordinaires (CAE) / Extraordinary African Chambers in the Courts of Senegal (EAC) research, drafting, and analysis — the Hissène Habré case. Use whenever the conversation involves the CAE/EAC, the AU-Senegal Accord of 22 August 2012, the Statute of the Chambers, the Habré trial (2015-2016), the…
eccc
Extraordinary Chambers in the Courts of Cambodia (ECCC, Khmer Rouge Tribunal) research, drafting, and analysis. Use whenever the conversation involves the ECCC, Case 001 (Duch), Case 002 (NUON Chea, KHIEU Samphan) including the severance into Cases 002/01 and 002/02, Cases 003 and 004, the ECCC Law, the Internal…
jep
Jurisdicción Especial para la Paz (JEP) — Colombia's Special Jurisdiction for Peace — research, drafting, and analysis. Use whenever the conversation involves the JEP, the SIVJRNR / Sistema Integral para la Paz, the 2016 Final Peace Agreement with the FARC-EP, Acto Legislativo 01 de 2017, Ley Estatutaria 1957 de 2019…