LegalOSS155.3ktracked
Agent Skills & Plugins · E-Signature & Workflow

TurboDocx QuickstartMaintained

TurboDocx/quickstart

Claude Code plugin: TurboDocx SDK quickstart for TurboSign & TurboPartner (JS, Python, Go, PHP, Java)

TurboDocx

TurboDocx Skills

Agent Skills for TurboDocx integration — TurboSign, Deliverable, and HTML-to-DOCX

GitHub Stars Discord X License: MIT Agent Skills skills.sh

DocumentationSDK ReferenceDiscordBlog


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-docx to 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.


Supported Languages

Language Package Frameworks
JavaScript/TypeScript @turbodocx/sdk Express, Next.js, Fastify, NestJS, etc.
Python turbodocx-sdk FastAPI, Flask, Django
Go github.com/turbodocx/sdk Gin, Echo, Fiber, net/http
PHP turbodocx/sdk Laravel, Symfony
Java com.turbodocx:turbodocx-sdk Spring Boot, Micronaut, Quarkus
Ruby turbodocx-sdk Rails, Sinatra, Rack

Install

npx skills add (Claude Code, Copilot, Cursor, OpenCode, Codex CLI, Gemini CLI)

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 -g

Available 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 Code (plugin)

claude plugin add TurboDocx/quickstart

Claude Code / GitHub Copilot (project-level)

mkdir -p .claude/skills
cp -r skills/turbodocx-sdk .claude/skills/

Cursor / OpenAI Codex CLI / Gemini CLI (project-level)

mkdir -p .agents/skills
cp -r skills/turbodocx-sdk .agents/skills/

All tools (symlink both directories)

mkdir -p .claude/skills .agents/skills
cp -r skills/turbodocx-sdk .claude/skills/
ln -s ../../.claude/skills/turbodocx-sdk .agents/skills/turbodocx-sdk

User-level (available in all your projects)

# Claude Code + Copilot
cp -r skills/turbodocx-sdk ~/.claude/skills/

# Codex CLI + Gemini CLI
cp -r skills/turbodocx-sdk ~/.agents/skills/

Usage

/turbodocx-sdk

The skill will:

  1. Detect your project language from manifest files
  2. Ask what you need — TurboSign (signatures), Deliverable (document generation), or both
  3. Install the SDK package
  4. Add environment variables to .env and .env.example
  5. Analyze your codebase structure and generate integration code that matches your patterns
  6. Provide a working example with inline comments

Shortcuts

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)

What It Generates

TurboSign Integration

  • Client configuration with env var loading
  • sendSignature(), getStatus(), download() — send, track, retrieve signed PDFs
  • Conditional (IF/THEN) fields — a controlling checkbox plus dependent fields that show or unlock only when it is ticked (via optional field metadata)
  • Optional: void(), resend(), getAuditTrail() — cancellation, reminders, tamper-evident audit log
  • Route handlers wired into your existing app

Deliverable Integration

  • Client configuration with env var loading
  • generateDeliverable() — render a template with variable substitution
  • getDeliverableDetails(), 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)

TurboPartner Integration (opt-in via /turbodocx-sdk turbopartner)

  • 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)

🌐 Explore the TurboDocx Ecosystem

Package Links Description
TurboDocx SDKs GitHub Official multi-language SDKs for JS, Python, Go, PHP, Java
@turbodocx/html-to-docx npm GitHub Convert HTML to DOCX with the fastest JavaScript library
n8n-nodes-turbodocx npm GitHub n8n community node for TurboDocx API & TurboSign
TurboDocx Writer AppSource Official Microsoft Word add-in for document automation

Prerequisites

Get your API credentials at app.turbodocx.com.


Support


Documentation

Discord

GitHub Issues

License

MIT License — see LICENSE for details.


WebsiteDocumentationDiscordTwitter/X

Built with ❤️ by the TurboDocx team

TurboDocx