用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/ThomasMoreAI/legal-skills-open --skill convert-contract-to-markdown命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Use when retrieving arbitration institutional rules (ICC, LCIA, SCC, SIAC, HKIAC, VIAC, МКАС/МАК при ТПП України, UNCITRAL) — fetching current version, verifying redaction applicable to the date of arbitration agreement, constructing URLs for official rule texts
Use when choosing the Polish legal regime for letters, requests, applications, complaints, petitions, public-information requests, KPA filings, PPSA complaints, RODO access requests, registry extracts, court-file access, tax/ZUS/cudzoziemcy/USC procedures, or professional lawyer letters. Prevents mixing UDIP, KPA, PPSA, RODO, registry, special-procedure, and advocate/radca letter regimes.
Use when preparing applications for recognition and enforcement of foreign arbitral awards in Poland, applications for setting aside arbitral awards under KPC art. 1205–1211, or opposing such applications — mapping Article V of the 1958 New York Convention to art. 1214–1215 of the Polish KPC, identifying grounds for refusal, structuring public policy arguments
正在显示 SKILL.md
基于 SOC 职业分类
| name | convert-contract-to-markdown |
| title | Convert Contract to Markdown |
| description | Convert a contract PDF to clean markdown for clause extraction or LLM analysis. |
| author | iterationlayer |
| author_url | https://github.com/iterationlayer/skills/tree/main/skills/convert-contract-to-markdown |
| license | MIT |
| version | 0.1.0 |
| execution_mode | open |
| jurisdiction | general |
| practice | contracts |
| language | en |
Legal and compliance teams use this recipe to convert contract PDFs to structured markdown before feeding them into LLM analysis pipelines or clause extraction workflows.
Document to Markdown (1 credit per page)
You need an Iteration Layer API key. Get one at platform.iterationlayer.com — free trial credits included, no credit card required.
For full integration guidance (SDKs, auth, MCP, error handling), see the Iteration Layer Integration Guide.
curl -X POST https://api.iterationlayer.com/document-to-markdown/v1/convert \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"file": {
"type": "url",
"name": "contract.pdf",
"url": "https://example.com/contracts/service-agreement-2026.pdf"
}
}'
import { IterationLayer } from "iterationlayer";
const client = new IterationLayer({ apiKey: "YOUR_API_KEY" });
const result = await client.convertDocumentToMarkdown({
file: {
type: "url",
name: "contract.pdf",
url: "https://example.com/contracts/service-agreement-2026.pdf",
},
});
from iterationlayer import IterationLayer
client = IterationLayer(api_key="YOUR_API_KEY")
result = client.convert_document_to_markdown(
file={
"type": "url",
"name": "contract.pdf",
"url": ,
}
)
import il "github.com/iterationlayer/sdk-go"
client := il.NewClient("YOUR_API_KEY")
result, err := client.ConvertDocumentToMarkdown(il.ConvertDocumentToMarkdownRequest{
File: il.FileInput{Type: "url", Name: "contract.pdf", Url: "https://example.com/contracts/service-agreement-2026.pdf"},
})
{
"name": "Convert Contract to Markdown",
"nodes": [
{
"parameters": {
"content": "## Convert Contract to Markdown
Legal and compliance teams use this recipe to convert contract PDFs to structured markdown before feeding them into LLM analysis pipelines or clause extraction workflows.
**Note:** This workflow uses the Iteration Layer community node (`n8n-nodes-iterationlayer`). Install it via Settings > Community Nodes on self-hosted n8n, or add it directly on n8n Cloud with Verified Community Nodes enabled.",
"height": 280,
"width": 500,
"color": 2
},
"type": "n8n-nodes-base.stickyNote",
"typeVersion": 1,
"position": [
200,
40
],
"id": "38e6da76-3ed5-468e-83b8-f6be1ed8a9d6",
"name": "Overview"
},
{
"parameters": {
"content": "### Step 1: Convert Document to Markdown
Resource: **Document to Markdown**
Configure the Document to Markdown parameters below, then connect your credentials.",
"height": 160,
"width": 300,
"color": 6
},
"type": "n8n-nodes-base.stickyNote",
"typeVersion": 1,
"position": [
475,
100
],
"id": "d407a240-e883-4d83-b7b9-b12a1a5cfc70",
"name": "Step 1 Note"
},
{
"parameters": {},
"type": "n8n-nodes-base.manualTrigger",
"typeVersion": 1,
"position": [
250,
300
],
"id": "ce36c899-26c8-45c0-838c-194728865698",
"name": "Manual Trigger"
},
{
"parameters": {
"resource": "documentToMarkdown",
"fileInputMode": "url",
"fileName": "contract.pdf",
"fileUrl": "https://example.com/contracts/service-agreement-2026.pdf"
},
"type": "n8n-nodes-iterationlayer.iterationLayer",
"typeVersion": 1,
"position": [
500,
300
],
"id": "75deb29a-0241-4a13-b160-c0dae41bada0",
"name": "Convert Document to Markdown",
"credentials": {
"iterationLayerApi": {
"id": "1",
"name": "Iteration Layer API"
}
}
}
],
"connections": {
"Manual Trigger": {
"main": [
[
{
"node": "Convert Document to Markdown",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {
"executionOrder": "v1"
}
}
Convert the contract at [file URL] to markdown. Use the convert_document_to_markdown tool with the file URL.
{
"success": true,
"data": {
"name": "contract.pdf",
"mime_type": "application/pdf",
"markdown": "# Service Agreement\n\n**Parties:** Nordlicht Consulting GmbH (\"Provider\") and Contoso Ltd. (\"Client\")\n\n**Effective Date:** 2026-03-01\n\n## 1. Services\n\nProvider agrees to deliver software development services as described in Schedule A attached hereto.\n\n## 2. Payment Terms\n\nClient shall pay Provider within 30 days of invoice receipt. Late payments accrue interest at 1.5% per month.\n\n## 3. Confidentiality\n\nEach party agrees to keep confidential all non-public information received from the other party.\n\n## 4. Termination\n\nEither party may terminate this agreement with 30 days written notice."
}
}