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/ThomasMoreAI/legal-skills-opennpx agentmods add skills/thomasmoreai/legal-skills-open/chinese-copyright-application-okooo5kmWrote 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/thomasmoreai/legal-skills-open/chinese-copyright-application-okooo5km)<a href="https://agentmods.dev/skills/thomasmoreai/legal-skills-open/chinese-copyright-application-okooo5km"><img src="https://agentmods.dev/badge/skills/thomasmoreai/legal-skills-open/chinese-copyright-application-okooo5km/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/thomasmoreai/legal-skills-open/chinese-copyright-application-okooo5km"><img src="https://agentmods.dev/badge/skills/thomasmoreai/legal-skills-open/chinese-copyright-application-okooo5km.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.00179 | $0.05703 |
| Opus 5 | $0.00089 | $0.02851 |
| Sonnet 5 | $0.00036 | $0.01141 |
| Haiku 4.5 | $0.00018 | $0.00570 |
Grade B, and why
chinese-copyright-application-okooo5km scanned grade B with 1 finding 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 9d 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.
Asks for rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
- macOS:`brew install --cask basictex && sudo tlmgr update --self && sudo tlmgr install ctex xecjk fancyhdr lastpage fancyvrb tabularx enumitem float xcolor longtable collection-fontsrecommended` How it starts
The opening of the file, as written. The whole thing — 451 lines — stays where its author put it; the contents beside it link to each section on GitHub.
中国软件著作权申请材料生成
核心原则
- 申请表:直接输出 Markdown(
.md)文件提交,不参与 LaTeX 编译。 - 源程序、用户手册、设计说明书:生成
.tex文件,用 XeLaTeX 编译为 PDF。
v1.1 关键变更
- 申请表载体由 LaTeX→PDF 改为 Markdown(PDF 文本提取带换行造成的录入问题)
- 主要功能字数:200 字 → 500–1000 字(建议 500–600)
- 新增版本号一致性核验(信息收集阶段就要查项目里的 version 字符串与目标版本号是否一致)
- 新增遗留代码识别(mockData/util.js 模板/logs 等不应进入鉴别材料)
- 设计说明书 §4 详细设计强制 6 段结构 + 模块覆盖双向对应
- 源程序 PDF 必须正好 60 页,提供
--front-lines/--back-lines微调参数
快速开始
- 环境检查与安装引导
- 收集著作权人信息与关键参数
- 分析项目结构和代码
- 生成四份 LaTeX 文档 + 编译脚本
- 生成截图清单
- 运行一致性校验
工作流程
第零步:环境检查
申请表是 Markdown,不需要 LaTeX 环境也能拿到。LaTeX 环境只用于编译三份 PDF(源程序、用户手册、设计说明书)。
执行 xelatex --version 检测。
如已安装:继续下一步。
如未安装:告知用户当前可以先生成全部 Markdown/LaTeX 源文件 + Markdown 申请表,待安装 LaTeX 后再编译三份 PDF;询问是否立即安装。用户同意后按以下命令执行:
- macOS:
brew install --cask basictex && sudo tlmgr update --self && sudo tlmgr install ctex xecjk fancyhdr lastpage fancyvrb tabularx enumitem float xcolor longtable collection-fontsrecommended - Linux:
sudo apt install texlive-xetex texlive-lang-chinese texlive-latex-extra texlive-fonts-recommended - Windows:引导用户安装 TeX Live 完整版(https://www.tug.org/texlive/)
第一步 A:版本号一致性核验(先做)
这是上次(集享 V1.0 软著流水号 2026R11L0626727)被打回补正的首条意见:申请表填 V1.0,但
utils/config.js写的是version: '1.1.1',截图角标也是 V1.1.1,被审查员第一眼抓到。在收集软件参数之前必须先做这一步。
操作流程:
-
先问用户「这次软著要申请的版本号是多少」(首次申请通常 V1.0)。
-
然后扫描项目里所有版本号字符串:
# 配置文件中的 version 字段 grep -rEn '"version"\s*:\s*"[0-9]+(\.[0-9]+)+"' <项目路径> \ --include='*.js' --include='*.ts' --include='*.json' \ --exclude-dir=node_modules --exclude-dir=miniprogram_npm # 页面 footer / 关于页里硬编码的版本号 grep -rEn 'V[0-9]+\.[0-9]+|版本.*[0-9]+\.[0-9]+' \ <项目路径>/pages <项目路径>/components <项目路径>/src 2>/dev/null -
如果用户已经提供了运行截图目录,提醒用户检查截图右下角/关于页/启动页是否带版本号。
-
把扫描结果以表格形式列出来:所有出现位置 + 对应版本字符串。
-
如果发现不一致(任何位置的版本号 ≠ 用户拟申请的版本号),必须停下来,让用户裁决:「最终申请使用哪个版本号?」并明确告知用户:在提交申请前必须把所有出现位置统一(含重新截图)。
-
全部一致才能继续下一步。
详见 requirements.md。
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.
- 9d ago First seen · 451 lines · 179 tokens per session scan B 6227cc5ee7a8
chinese-copyright-application-okooo5km is a skill published in the GitHub repository ThomasMoreAI/legal-skills-open (72 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 179 tokens to every session and 5,703 once invoked, about $0.0009 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
audit-export
Export the full CocoAudit trail as a stakeholder-ready compliance document.
law-to-markdown
A legal-document conversion skill for turning PDF, Word, or plain-text regulations into structured Markdown. Markdown is a text format that uses simple symbols for headings and lists.
akf-trust-metadata-v2
AKF — The AI Native File Format workflow skill. Use this skill when the user needs The AI native file format. EXIF for AI — stamps every file with trust scores, source provenance, and compliance metadata. Embeds into 20+ formats (DOCX, PDF, images, code). EU AI Act, SOX, HIPAA auditing and the operator should preserve…
oscal-document-engineering
Convert, validate, and maintain OSCAL documents from legacy SSP/PDF/DOCX/Markdown source material.
oscal-document-workbench-expert
Convert legacy SSP/PDF/DOCX source material into traceable, validated OSCAL workspaces with Compliance Trestle and OSCAL CLI.
okhp3-sharepoint-library-contract-extractor
Extract specified obligation, renewal, notice, owner, counterparty, and risk fields from selected SharePoint contract files into a review queue. Use when contracts need operational visibility. Do not use to interpret legal obligations, update records, or send notices automatically.