documenso-performance-tuning

Featured

Optimize Documenso integration performance with caching, batching, and efficient patterns. Use when improving response times, reducing API calls, or optimizing bulk document operations. Trigger with phrases like "documenso performance", "optimize documenso", "documenso caching", "documenso batch operations".

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 Performance Tuning ## Overview Optimize Documenso integrations for speed and efficiency. Key strategies: reduce API round-trips with templates, cache document metadata, batch operations with concurrency control, and use async processing for bulk signing workflows. ## Prerequisites - Working Documenso integration - Redis or in-memory cache (recommended) - Completed `documenso-sdk-patterns` setup ## Instructions ### Step 1: Reduce API Calls with Templates The biggest performance win: templates reduce a multi-step document creation (create + upload + add recipients + add fields + send = 5+ calls) to just 2 calls (create from template + send). ```typescript // WITHOUT templates: 5+ API calls per document async function createDocumentManual(signer: { email: string; name: string }) { const doc = await client.documents.createV0({ title: "Contract" }); // 1 await client.documents.setFileV0(doc.documentId, { file: pdfBlob }); // 2 const recip = await client.documentsRecipients.createV0(doc.documentId, { // 3 email: signer.email, name: signer.name, role: "SIGNER", }); await client.documentsFields.createV0(doc.documentId, { // 4 recipientId: recip.recipientId, type: "SIGNATURE", pageNumber: 1, pageX: 10, pageY: 80, pageWidth: 30, pageHeight: 5, }); await client.documents.sendV0(doc.documentId); // 5 } // WITH templates: 2 API calls per document async ...

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-cost-tuning

Optimize Documenso usage costs and manage subscription efficiency. Use when analyzing costs, optimizing document usage, or managing Documenso subscription tiers. Trigger with phrases like "documenso costs", "documenso pricing", "optimize documenso spending", "documenso usage".

2,266 Updated today
jeremylongshore
AI & Automation Featured

lucidchart-performance-tuning

Optimize Lucidchart API integration performance with caching, batch shape operations, and pagination strategies. Use when diagram exports are slow, shape updates hit rate limits, or document list queries time out. Trigger with "lucidchart performance tuning".

2,266 Updated today
jeremylongshore
AI & Automation Featured

documenso-sdk-patterns

Apply production-ready Documenso SDK patterns for TypeScript and Python. Use when implementing Documenso integrations, refactoring SDK usage, or establishing team coding standards for Documenso. Trigger with phrases like "documenso SDK patterns", "documenso best practices", "documenso code patterns", "idiomatic documenso".

2,266 Updated today
jeremylongshore
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-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