documenso-core-workflow-a

Featured

Implement Documenso document creation and recipient management workflows. Use when creating documents, managing recipients, adding signature fields, or building signing workflows with Documenso. Trigger with phrases like "documenso document", "create document", "add recipient", "documenso signer", "signature field".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Documenso Core Workflow A: Document Creation & Recipients ## Overview Complete workflow for creating documents, managing recipients with different roles, positioning fields, and controlling signing order. Covers both the SDK and v1 REST API for document-centric operations. ## Prerequisites - Completed `documenso-install-auth` setup - Understanding of `documenso-sdk-patterns` - PDF file ready for signing ## Instructions ### Step 1: Create a Document with the SDK ```typescript import { Documenso } from "@documenso/sdk-typescript"; import { readFileSync } from "fs"; const client = new Documenso({ apiKey: process.env.DOCUMENSO_API_KEY! }); // Create document shell const doc = await client.documents.createV0({ title: "Service Agreement — Q1 2026", }); // Upload PDF const pdf = readFileSync("./contracts/service-agreement.pdf"); await client.documents.setFileV0(doc.documentId, { file: new Blob([pdf], { type: "application/pdf" }), }); ``` ### Step 2: Recipient Roles Documenso supports these recipient roles: | Role | Behavior | |------|----------| | `SIGNER` | Must complete all assigned fields to finish | | `VIEWER` | Receives a copy but takes no action | | `APPROVER` | Must approve before signers can proceed | | `CC` | Receives a completed copy after all signatures | ```typescript // Add multiple recipients with roles const signer = await client.documentsRecipients.createV0(doc.documentId, { email: "ceo@acme.com", name: "Alice CEO", role: "SIGNER", }); cons...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

documenso-core-workflow-b

Implement Documenso template-based workflows and direct signing links. Use when creating reusable templates, generating documents from templates, or implementing direct signing experiences. Trigger with phrases like "documenso template", "signing link", "direct template", "reusable document", "template workflow".

2,266 Updated today
jeremylongshore
AI & Automation Featured

documenso-hello-world

Create a minimal working Documenso example. Use when starting a new Documenso integration, testing your setup, or learning basic document signing patterns. Trigger with phrases like "documenso hello world", "documenso example", "documenso quick start", "simple documenso code", "first document".

2,266 Updated today
jeremylongshore
AI & Automation Listed

pandadoc-automation

Automate document workflows with PandaDoc -- create documents from files, manage contacts, organize folders, set up webhooks, create templates, and track document status through the Composio PandaDoc integration.

62,564 Updated 1 weeks ago
ComposioHQ
AI & Automation Featured

documenso-webhooks-events

Implement Documenso webhook configuration and event handling. Use when setting up webhook endpoints, handling document events, or implementing real-time notifications for document signing. Trigger with phrases like "documenso webhook", "documenso events", "document completed webhook", "signing notification".

2,266 Updated today
jeremylongshore
AI & Automation Featured

documenso-data-handling

Handle document data, signatures, and PII in Documenso integrations. Use when managing document lifecycle, handling signed PDFs, or implementing data retention policies. Trigger with phrases like "documenso data", "signed document", "document retention", "documenso PII", "download signed pdf".

2,266 Updated today
jeremylongshore