Agent Skills for TurboDocx integration — TurboSign, Deliverable, and HTML-to-DOCX
An Agent Skills plugin with two skills:
/turbodocx-sdk— Install the TurboDocx SDK and generate working integration code for TurboSign (digital signatures) and Deliverable (template-based document generation) in one command. Also supports TurboPartner (partner-portal provisioning) for TurboDocx reseller/integrator accounts. Supports JS/TS, Python, Go, PHP, Java, and Ruby./turbodocx-html-to-docx— Set up@turbodocx/html-to-docxto convert HTML to Word documents in Node.js/TypeScript projects.
Works with any tool that supports the Agent Skills standard: Claude Code, GitHub Copilot, Cursor, OpenCode, OpenAI Codex CLI, Gemini CLI, and others.
Auto-detects your installed agents and drops the skills into the right config directory. Works anywhere the Agent Skills standard is supported.
# Install both skills at once
npx skills add TurboDocx/quickstart
# Or install one at a time
npx skills add TurboDocx/quickstart --skill turbodocx-sdk
npx skills add TurboDocx/quickstart --skill turbodocx-html-to-docx
# Install globally (user-level, available in every project)
npx skills add TurboDocx/quickstart -gAvailable skills:
| Skill | What it does |
|---|---|
turbodocx-sdk |
Installs the TurboDocx SDK and generates working TurboSign + Deliverable integration code in JS/TS, Python, Go, PHP, Java, or Ruby. TurboPartner is also available via explicit shortcut for partner-portal use cases. |
turbodocx-html-to-docx |
Sets up @turbodocx/html-to-docx to convert HTML strings to Word documents in Node.js/TypeScript projects. |
claude plugin add TurboDocx/quickstartmkdir -p .claude/skills
cp -r skills/turbodocx-sdk .claude/skills/mkdir -p .agents/skills
cp -r skills/turbodocx-sdk .agents/skills/mkdir -p .claude/skills .agents/skills
cp -r skills/turbodocx-sdk .claude/skills/
ln -s ../../.claude/skills/turbodocx-sdk .agents/skills/turbodocx-sdk# Claude Code + Copilot
cp -r skills/turbodocx-sdk ~/.claude/skills/
# Codex CLI + Gemini CLI
cp -r skills/turbodocx-sdk ~/.agents/skills//turbodocx-sdk
The skill will:
- Detect your project language from manifest files
- Ask what you need — TurboSign (signatures), Deliverable (document generation), or both
- Install the SDK package
- Add environment variables to
.envand.env.example - Analyze your codebase structure and generate integration code that matches your patterns
- Provide a working example with inline comments
Skip the product selection prompt:
/turbodocx-sdk turbosign # TurboSign only
/turbodocx-sdk deliverable # Deliverable only
/turbodocx-sdk turbosign+deliverable # Generate-then-sign workflow
/turbodocx-sdk turbopartner # TurboPartner (partner-portal use case; requires partner credentials)
- Client configuration with env var loading
sendSignature(),getStatus(),download()— send, track, retrieve signed PDFs- Conditional (IF/THEN) fields — a controlling
checkboxplus dependent fields that show or unlock only when it is ticked (via optional fieldmetadata) - Optional:
void(),resend(),getAuditTrail()— cancellation, reminders, tamper-evident audit log - Route handlers wired into your existing app
- Client configuration with env var loading
generateDeliverable()— render a template with variable substitutiongetDeliverableDetails(),downloadPDF(),downloadSourceFile()— read and download generated documents- When combined with TurboSign: generate-then-sign workflow (the new deliverable ID is handed directly to
sendSignature()— no download/re-upload)
- Partner client configuration
- Organizations, users, API keys, entitlements, and audit logs
- Per-tenant TurboSign display preferences (signature outline, verification hash, locked-fields background)
- Designed for TurboDocx reseller/integrator accounts (uses a separate partner API key)
Get your API credentials at app.turbodocx.com.
|
Documentation |
Discord |
GitHub Issues |
MIT License — see LICENSE for details.

