文档

Docuseal

试用

Manage DocuSeal e-signature workflows from the terminal via the DocuSeal CLI - create templates from PDF/DOCX/HTML, send documents for signing, track submissions, and update submitters. Use when the user wants to run DocuSeal commands in the shell, scripts, or CI/CD pipelines. Always load this skill

它能做什么

Manage DocuSeal e-signature workflows from the terminal via the DocuSeal CLI - create templates from PDF/DOCX/HTML, send documents for signing, track submissions, and update submitters. Use when the user wants to run DocuSeal commands in the shell, scripts, or CI/CD pipelines. Always load this skill before running `docuseal` commands.

技能文档

Agent Protocol

Rules for agents:

  • Supply ALL required flags — the CLI will not prompt for missing parameters.
  • Output is always JSON.
  • Use -d key=value (bracket notation) or -d '{"..": ".."}' (JSON) for body and array parameters.

Authentication

Set environment variables:

  • DOCUSEAL_API_KEY — API key (required). Get yours at https://console.docuseal.com/api
  • DOCUSEAL_SERVERglobal (default), europe, or full URL for self-hosted (e.g. https://docuseal.yourdomain.com)

Available Commands

Command GroupWhat it does
templateslist, retrieve, update, archive, create-pdf, create-docx, create-html, clone, merge, update-documents
submissionslist, retrieve, update, archive, create, send-emails, create-pdf, create-docx, create-html, documents
submitterslist, retrieve, update

Read the matching reference file for detailed flags and examples.

Common Mistakes

#MistakeFix
1Forgetting -d template_id= on submissions create--template-id is a flag; submitters and other body params go via -d
2Passing a plain file path as a URL--file accepts a local path; for remote files use -d "documents[0][file]=https://..."
3Expecting array params as comma-separatedArrays use bracket notation: -d "template_ids[]=1" -d "template_ids[]=2"
4Using templates create-pdf without a Pro planCommands marked (Pro) require a DocuSeal Pro subscription
5Sending to multiple recipients with submissions createUse submissions send-emails --emails a@b.com,c@d.com for bulk; submissions create is per-submitter

Security

The CLI accepts user-provided file paths, remote URLs (documents[0][file]=https://...), and HTML content as template input. This is by design — all content originates from the authenticated user and is sent directly to the DocuSeal API over HTTPS. The CLI does not fetch, render, or execute remote content locally; it passes references to the server for processing. No user input is interpolated into shell commands.

Common Patterns

List templates:

docuseal templates list --q "NDA" --limit 20

Create a template from a PDF and send for signing:

docuseal templates create-pdf --file contract.pdf --name "NDA"
docuseal submissions send-emails --template-id 1001 --emails signer@example.com

Create a submission with pre-filled fields (bracket notation):

docuseal submissions create --template-id 1001 \
  -d "submitters[0][email]=john@acme.com" \
  -d "submitters[0][values][Company Name]=Acme Corp"

Create a submission with pre-filled fields (JSON):

docuseal submissions create --template-id 1001 \
  -d '{"submitters": [{"email": "john@acme.com", "values": {"Company Name": "Acme Corp"}}]}'

Check signing status:

docuseal submissions list --template-id 1001 --status pending

Update a submitter:

docuseal submitters update 201 --email new@acme.com --send-email

When to Load References

  • Creating or managing templatesreferences/templates.md
  • Sending documents for signing or tracking statusreferences/submissions.md
  • Using dynamic content variables in DOCXreferences/docx-variables.md
  • Embedding field tags in PDF/DOCXreferences/field-tags.md
  • Writing HTML templates with field tagsreferences/html-fields.md
  • Listing or updating signersreferences/submitters.md

相关技能

Read DocuSign envelopes, recipients, templates, and signing status

23 次安装

用提示词生成专业 PDF 与 DOCX 文档——涵盖简历、合同、报告、方案等多种类型。

146 次安装6 星标

通过托管 OAuth 调用 Google Docs API,实现文档创建、读写与样式管理。

278 次安装8 星标

Build repeatable data-to-Docs pipelines from Sheets and Drive sources. Use for automated status reports, template-based document assembly, and scheduled publ...

34 次安装

Use this skill any time a .docx file is involved -- as input, output, or both. This includes: creating Word documents, reports, letters, memos, or proposals; reading, parsing, or extracting text from any .docx file; editing, modifying, or updating existing documents; working with templates, tracked

28 次安装1 星标

Use this skill when the user asks to OCR, transcribe, extract, or convert the contents of a scanned PDF, image, or office document into Markdown, HTML, DOCX,...

29 次安装1 星标