一键导入
docusign
DocuSign e-signature platform; lets an agent send engagement letters and contracts for signature, track envelope status, and retrieve executed documents.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
DocuSign e-signature platform; lets an agent send engagement letters and contracts for signature, track envelope status, and retrieve executed documents.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Clio Manage/Grow practice management platform; lets an agent create matters, log time, generate invoices, manage client intake, and sync docket deadlines.
Docket Alarm court monitoring and analytics platform; lets an agent track docket updates, set filing alerts, and pull judge analytics for motion strategy.
iManage Work matter-centric DMS; lets an agent retrieve, file, and version legal work product organized by client and matter workspace.
Intapp Conflicts firm-wide conflicts management system; lets an agent run new-business conflict searches, retrieve hit reports, and track waiver records.
Ironclad contract lifecycle management (CLM) platform; lets an agent upload contracts, run playbook analysis, retrieve risk scores, and track obligations and approvals.
NetDocuments cloud DMS; lets an agent store, retrieve, version, and search matter documents including briefs, contracts, and precedents.
| name | docusign |
| description | DocuSign e-signature platform; lets an agent send engagement letters and contracts for signature, track envelope status, and retrieve executed documents. |
| metadata | {"openclaw":{"requires":{"env":["DOCUSIGN_ACCOUNT_ID","DOCUSIGN_INTEGRATION_KEY","DOCUSIGN_USER_ID","DOCUSIGN_PRIVATE_KEY","DOCUSIGN_BASE_URL"]}},"primaryEnv":"DOCUSIGN_PRIVATE_KEY"} |
DocuSign is the dominant e-signature platform used by law firms to execute engagement letters, retainer agreements, settlement agreements, and contracts. It provides legally binding electronic signatures, a full audit trail, and certificate of completion for every envelope. The DocuSign eSignature REST API supports creating envelopes, routing to multiple signatories, and retrieving signed documents programmatically.
This skill authenticates using variables declared in the metadata frontmatter above. Set them in the OpenClaw daemon env file ~/.openclaw/.env (see .env.example at the config root). Required variables:
DOCUSIGN_ACCOUNT_ID - DocuSign account (API) ID from the admin panelDOCUSIGN_INTEGRATION_KEY - integration key (client ID) of the API appDOCUSIGN_USER_ID - GUID of the API service account userDOCUSIGN_PRIVATE_KEY - RSA private key for JWT grant authentication (PEM format)DOCUSIGN_BASE_URL - API base URL (e.g., https://na4.docusign.net/restapi)POST /v2.1/accounts/{accountId}/envelopes — create and send an envelope with documents and recipientsGET /v2.1/accounts/{accountId}/envelopes/{envelopeId} — retrieve envelope status and metadataGET /v2.1/accounts/{accountId}/envelopes/{envelopeId}/documents/{documentId} — download a signed documentPUT /v2.1/accounts/{accountId}/envelopes/{envelopeId} — void or correct a sent envelopePOST /v2.1/accounts/{accountId}/envelopes/{envelopeId}/views/recipient — generate an embedded signing URLGET /v2.1/accounts/{accountId}/envelopes/{envelopeId}/audit_events — retrieve the full signing audit trailna4.docusign.net) and demo (demo.docusign.net) environments; use demo for testing — never test with real client documents.