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 iflytek/iFly-Skills --skill iflytek-contract-intelligence-reviewgit clone --depth 1 https://github.com/iflytek/iFly-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/iflytek/ifly-skills/iflytek-contract-intelligence-review)<a href="https://agentmods.dev/skills/iflytek/ifly-skills/iflytek-contract-intelligence-review"><img src="https://agentmods.dev/badge/skills/iflytek/ifly-skills/iflytek-contract-intelligence-review/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/iflytek/ifly-skills/iflytek-contract-intelligence-review"><img src="https://agentmods.dev/badge/skills/iflytek/ifly-skills/iflytek-contract-intelligence-review.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.00116 | $0.01286 |
| Opus 5 | $0.00058 | $0.00643 |
| Sonnet 5 | $0.00023 | $0.00257 |
| Haiku 4.5 | $0.00012 | $0.00129 |
Grade A, and why
iflytek-contract-intelligence-review 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.
How it starts
The opening of the file, as written. The whole thing — 147 lines — stays where its author put it; the contents beside it link to each section on GitHub.
contract-intelligence-review (合同智能审核)
场景化合同智能审核 Workflow Skill。覆盖从文档识别到风险报告的完整审核流程。
When to Use
- 用户提交合同扫描件(PDF)需要审核
- 用户提交合同照片或页面截图
- 用户提交 Word/Markdown/TXT 格式合同正文
- 用户需要审核中英双语合同的一致性
- 用户需要重点审查特定条款(付款、违约、续约、知识产权)
- 法务人员需要批量审核合同风险
When NOT to Use
- 仅需要单个字词翻译(请使用翻译 skill)
- 仅需要语法检查(请使用校对 skill)
- 仅需要简单文本提取(请使用 OCR skill)
- 需要具有法律效力的正式法律意见书(本 skill 输出为审核参考,非法律意见)
Prerequisites
- Python 3.9+
- 环境变量(需要注入实际 OCR/LLM 实现):
OCR_API_ENDPOINT— OCR 服务地址OCR_API_KEY— OCR 服务密钥LLM_API_ENDPOINT— LLM 服务地址LLM_API_KEY— LLM 服务密钥
Supported Inputs
- PDF 文件(扫描件或文字版)
- 图片文件(JPG/PNG/BMP/HEIC)
- Word 文档(.docx)
- Markdown 文件(.md)
- 纯文本文件(.txt)
Usage
脚本位置:scripts/main.py
# 基础审核
python3 scripts/main.py --input contract.pdf
# 深度审核 + 重点条款
python3 scripts/main.py --input contract.pdf --review-mode deep --focus payment --focus liability
# 输出 JSON 格式
python3 scripts/main.py --input contract.pdf --output-format json
# 需要翻译摘要
python3 scripts/main.py --input contract.pdf --need-translation
# 保存中间结果
python3 scripts/main.py --input contract.pdf --save-intermediate --output-dir ./output
Options
| Flag | Description |
|---|---|
--input |
输入文件路径(必填) |
--input-type |
文件类型:auto/pdf/image/text |
--lang |
合同语言:zh/en/bilingual |
--review-mode |
审核模式:quick/standard/deep |
--focus |
重点审查项(可多次指定) |
--need-translation |
是否需要翻译摘要 |
--output-format |
输出格式:markdown/json/both |
--output-dir |
输出目录 |
--save-intermediate |
保存中间处理结果 |
Workflow
- 输入识别 — 文件类型自动检测、可读性评估
- 内容提取 — OCR 识别 / 文本提取
- 文本清洗 — 乱码过滤、段落重组
- 条款分段 — 条款编号识别、标题提取
- 风险检测 — 付款/违约/续约/知识产权/保密/争议解决
- 合规校对 — 术语一致性、格式规范性
- 双语检查 — 中英一致性核验
- 报告生成 — Markdown / JSON 输出
Risk Categories
| 类别 | 说明 |
|---|---|
| payment | 付款与结算风险 |
| liability | 违约责任风险 |
| renewal | 期限与续约风险 |
| ip | 知识产权归属风险 |
| confidentiality | 保密与数据合规风险 |
| dispute | 争议解决风险 |
Output Format
Markdown Report
What ships with it
27 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.
- _meta.json 508 B
- examples/sample_contract_excerpt.md 2.3 KB
- examples/sample_review_report.md 2.9 KB
- README.md 7.9 KB
- scripts/clients/__init__.py 17 B runs code
- scripts/clients/image_client.py 2.1 KB runs code
- scripts/clients/llm_review_client.py 3.5 KB runs code
- scripts/clients/ocr_client.py 3.0 KB runs code
- scripts/clients/translate_client.py 3.3 KB runs code
- scripts/config.py 1.5 KB runs code
- scripts/errors.py 874 B runs code
- scripts/main.py 12 KB runs code
- scripts/processors/__init__.py 20 B runs code
- scripts/processors/bilingual_checker.py 9.2 KB runs code
- scripts/processors/clause_splitter.py 5.5 KB runs code
- scripts/processors/compliance_checker.py 12 KB runs code
- scripts/processors/ingest.py 3.5 KB runs code
- scripts/processors/report_builder.py 9.5 KB runs code
- scripts/processors/risk_detector.py 14 KB runs code
- scripts/processors/text_cleaner.py 3.9 KB runs code
- scripts/prompts/__init__.py 17 B runs code
- scripts/utils/__init__.py 15 B runs code
- scripts/utils/file_utils.py 2.1 KB runs code
- scripts/utils/logger.py 1.2 KB runs code
- scripts/utils/validation.py 1.9 KB runs code
- templates/review_output.json 2.5 KB
- templates/review_report.md 2.1 KB
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 · 147 lines · 116 tokens per session scan A cdf420ac59f0
iflytek-contract-intelligence-review is a skill published in the GitHub repository iflytek/iFly-Skills (218 stars, last pushed 2d ago), licensed Apache-2.0. It adds 116 tokens to every session and 1,286 once invoked, about $0.0006 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
scammer
A scam-message checker that analyzes suspicious texts, images, or conversation descriptions. It can identify the likely stage of a scam and suggest what the sender may try next.
docx
Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files). Triggers include: any mention of 'Word doc', 'word document', '.docx', or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when…
doc-coauthoring
Guide users through a structured workflow for co-authoring documentation. Use when user wants to write documentation, proposals, technical specs, decision docs, or similar structured content. This workflow helps users efficiently transfer context, refine content through iteration, and verify the doc works for readers.…
xlsx
Use this skill any time a spreadsheet file is the primary input or output. This means any task where the user wants to: open, read, edit, or fix an existing .xlsx, .xlsm, .csv, or .tsv file (e.g., adding columns, computing formulas, formatting, charting, cleaning messy data); create a new spreadsheet from scratch or…
Use this skill whenever the user wants to do anything with PDF files. This includes reading or extracting text/tables from PDFs, combining or merging multiple PDFs into one, splitting PDFs apart, rotating pages, adding watermarks, creating new PDFs, filling PDF forms, encrypting/decrypting PDFs, extracting images, and…
pptx
Use this skill any time a .pptx file is involved in any way — as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from any .pptx file (even if the extracted content will be used elsewhere, like in an email or summary); editing, modifying…