Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add NEU-ZHA/legal-ai-skills --skill evidence-catalog-generatorgit clone --depth 1 https://github.com/NEU-ZHA/legal-ai-skillsWrote 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/neu-zha/legal-ai-skills/evidence-catalog-generator)<a href="https://agentmods.dev/skills/neu-zha/legal-ai-skills/evidence-catalog-generator"><img src="https://agentmods.dev/badge/skills/neu-zha/legal-ai-skills/evidence-catalog-generator/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/neu-zha/legal-ai-skills/evidence-catalog-generator"><img src="https://agentmods.dev/badge/skills/neu-zha/legal-ai-skills/evidence-catalog-generator.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.00056 | $0.01101 |
| Opus 5 | $0.00028 | $0.00550 |
| Sonnet 5 | $0.00011 | $0.00220 |
| Haiku 4.5 | $0.00006 | $0.00110 |
Grade A, and why
evidence-catalog-generator 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 12d 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.
Copies of this mod
1 near-identical copy found in the catalogue:
- evidence-catalog-generator — 92% identical, 1 lines differ
How it starts
The opening of the file, as written. The whole thing — 93 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Evidence Catalog Generator / 证据目录生成器
根据用户提供的证据材料、材料清单或已整理条目,先整理成证据目录条目,再填入用户提供的 .docx 模板;没有模板时,生成一个通用证据目录 Word 文档。公开版只保留通用结构和脚本,不随仓库分发真实案件模板或真实示例数据。
Organize user-provided evidence materials or item lists into catalog entries, then fill them into a user-provided .docx template. If no template is provided, generate a generic evidence catalog DOCX. The public version contains only generic workflow and code, with no real case template or real sample facts.
Use When / 适用场景
- 用户有一组证据材料、文件名、材料清单或证据条目,需要整理为 Word 证据目录。
- 用户提供了机构、课程、法院或团队自己的
.docx模板。 - 用户没有模板,但接受生成一个通用占位版证据目录。
- 需要把 CSV、JSON 或 XLSX 中的证据条目批量写入表格。
Use when the user has evidence materials or item lists and wants them organized into a DOCX evidence catalog, either with their own template or with a generic placeholder document.
Privacy Rules / 隐私规则
- 不得使用维护者本地模板、真实案件模板或历史示例作为默认模板。
- 不得写死真实姓名、案号、项目名、地址、金额、账号、本机路径、公司名称或其他案卷指纹。
- 示例只能使用明显占位符,例如
[证据名称]、[证据来源]、[证明事项]、[页码]。 - 如果用户未提供字段,保留
[待补: 字段名],不要猜测。 - 生成前提醒用户检查其模板 metadata,避免把真实作者、单位、修订记录或自定义属性带入公开文件。
Required Inputs / 必要输入
- 用户提供的证据材料、文件名列表、材料说明,或已整理的 CSV、JSON、XLSX 条目表。
- 输出
.docx路径。 - 可选:用户自己的
.docx证据目录模板。 - 可选:标题、案件名称、案号、提交主体、提交日期。
Data Schema / 数据结构
整理后的每条证据建议包含这些字段:
| Field | 中文字段 | Required | Placeholder if missing |
|---|---|---|---|
number |
编号 |
no | 自动连续编号 |
name |
证据名称 |
yes | [待补: 证据名称] |
source |
证据来源 |
no | [待补: 证据来源] |
purpose |
证明事项 / 证明目的 |
yes | [待补: 证明事项] |
pages |
页码 / 页数 |
no | [待补: 页码] |
See references/data_schema.md for the full mapping.
Workflow / 工作流程
- 检查用户提供的材料和模板,不复用本地私有模板。
- 将材料整理为证据条目:编号、证据名称、证据来源、证明事项、页码。
- 对缺失信息使用
[待补: 字段名],不替用户猜事实。 - 如果提供模板,替换模板中的占位符并写入第一张证据目录表。
- 如果没有模板,生成一个纯占位的通用证据目录。
- 输出后给用户一份检查清单:缺失字段、模板 metadata、页码、表格行数。
Script Usage / 脚本用法
python3 scripts/generate_catalog.py \
--input path/to/evidence_items.csv \
--output path/to/evidence_catalog.docx \
--title "证据目录" \
--case-name "[案件名称]" \
--docket-number "[案号]" \
--submitter "[提交主体]" \
--submit-date "[提交日期]"
What ships with it
2 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.
- 12d ago First seen · 93 lines · 56 tokens per session scan A 358e6e08a7a1
evidence-catalog-generator is a skill published in the GitHub repository NEU-ZHA/legal-ai-skills (64 stars, last pushed 23d ago), licensed MIT. It adds 56 tokens to every session and 1,101 once invoked, about $0.0003 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
patent-reader
A plain-language reader for Chinese patents that turns a publication number or PDF into notes, diagrams, and an Obsidian entry. Obsidian is a note-taking app that stores linked Markdown files.
meta-pdf-reformat-pipeline
Modernize a legacy PDF: structural extraction → natural-language rewrite of problem pages → audit summary → re-merge into the final PDF.
software-copyright-materials
A workflow for creating Chinese application materials for software copyright registration from a real software project.
ectd-xml-compiler
Automatically convert uploaded drug application documents (Word/PDF) into XML skeleton structure compliant with eCTD 4.0/3.2.2 specifications.
audit-export
Export the full CocoAudit trail as a stakeholder-ready compliance document.
software-certificate-skill
An automated workflow for preparing Chinese software-copyright registration materials from a real software project. It produces application information, an operation manual, and source-code documents with evidence from the project.