TurboDocx Quickstart Skill

Stop reading docs to bootstrap an SDK. Run one command, type one prompt, and your AI agent installs TurboDocx, configures it, and writes working integration code in your stack — Node, Python, Go, PHP, or Java.

terminal
$npx skills add TurboDocx/quickstart

The CLI lets you pick which skills to install for the agent you use.

Bring your own agent

The Quickstart skill follows the open Agent Skill spec, so it works with every major coding agent — not just one vendor.

CLI

What the installer does

npx skills add is the open-source CLI from vercel-labs/skills. It clones the skill repository, lets you pick which skills to install with a keyboard prompt, and writes them to the location your agent expects (.claude/skills/, .cursor/skills/, .github/skills/, etc.).

From there, your agent treats the skill like any other tool. Type /turbodocx-sdk or just describe what you want — the model will invoke it automatically.

skills add
$ npx skills add TurboDocx/quickstart
┌ skills
Source: TurboDocx/quickstart.git
Repository cloned
Found 2 skills
Select skills to install
turbodocx-sdk
turbodocx-html-to-docx
└ Done. Skills installed.

Prerequisites

  • Node.js 18+ (only required to run the installer — the skill itself targets your project's language)
  • An AI coding agent that supports Agent Skills (Claude Code, Cursor, GitHub Copilot, OpenCode, Codex CLI, or Gemini CLI)
  • For the SDK skill: a free TurboDocx account at app.turbodocx.com

What you get

Two skills, one install. Pick one or both during install — your agent will surface them as /turbodocx-sdk and /turbodocx-html-to-docx.

API Integration
/turbodocx-sdk

E-signatures & partner provisioning, in your language

Detects whether your project is TypeScript, Python, Go, PHP, or Java. Installs the right SDK, wires up your API key, and writes a working call to TurboSign or TurboPartner — ready to run.

  • Detects language from package.json, pyproject.toml, go.mod, composer.json, or pom.xml
  • Picks TurboSign, TurboPartner, or both based on what you ask for
  • Writes a runnable sample with your real keys loaded from .env
  • Walks you through getting an API key if you do not have one yet
Open Source
/turbodocx-html-to-docx

HTML → Word documents in any Node.js project

Installs @turbodocx/html-to-docx (MIT licensed, production-tested across thousands of projects). Detects Express, Next.js, Fastify, NestJS, or plain Node, then drops in a working route that returns a .docx response.

170stars
180K+/ month
  • Zero dependencies on Puppeteer, Chrome, or LibreOffice
  • Defaults to a server-side route — falls back to the browser bundle if needed
  • Generates a helper module that matches your existing code style
  • Adds an example route you can hit immediately

Try it in plain English

After install, type any of these into your agent. It will pick the right skill and wire everything up.

Add TurboSign e-signatures to my Express app

turbodocx-sdk

Set up a /docx endpoint that converts HTML to a Word document

turbodocx-html-to-docx

Provision a new partner organization with 5 seats

turbodocx-sdk

Add a /signatures/:id/download endpoint that returns the signed PDF

turbodocx-sdk

How it works

Each skill follows the same phased flow. Predictable, auditable, no magic.

01

Detect

The skill scans your project for manifest files and lockfiles. It infers your language, framework, package manager, and module system before touching a single file.

02

Ask

For the SDK skill, it asks whether you want TurboSign, TurboPartner, or both. For html-to-docx, it confirms server-side vs. browser. Pure declarative — no Stack Overflow archaeology.

03

Install

Runs the right install command for your package manager (npm / pnpm / yarn / bun / pip / poetry / go get / composer / maven / gradle).

04

Generate

Writes an integration module and a runnable example. Reads your API key from an environment variable — never hardcoded.

05

Verify

Prints the exact command to run, the expected output, and the docs link for the next thing you will want to do.

FAQ

Everything else worth knowing before you install.

What is the TurboDocx Quickstart Skill?
The TurboDocx Quickstart Skill is a portable Agent Skill (agentskills.io spec) that teaches your AI coding agent how to install and integrate TurboDocx into your project. The skill detects your language and framework, installs the right SDK, and generates working integration code in one prompt.
Which AI coding agents does the TurboDocx Quickstart support?
Claude Code, GitHub Copilot, Cursor, OpenCode, OpenAI Codex CLI, and Gemini CLI. Any agent that supports the Agent Skill specification can install and invoke it.
How do I install the TurboDocx Quickstart skill?
Run `npx skills add TurboDocx/quickstart` from any project directory. The CLI lets you pick which skills to install (turbodocx-sdk, turbodocx-html-to-docx, or both) and writes them to the right place for your agent.
What is the difference between turbodocx-sdk and turbodocx-html-to-docx?
turbodocx-sdk installs the TurboDocx API SDK for e-signatures and partner provisioning across TS, Python, Go, PHP, and Java. turbodocx-html-to-docx installs the open-source @turbodocx/html-to-docx package to convert HTML to Word documents in Node.js or the browser.
Is the Quickstart skill free and open source?
Yes. The skill is MIT licensed and the source lives at github.com/TurboDocx/quickstart. The TurboDocx API has a free tier with 5 signatures and 5 document generations per month.
Do I need to give the skill an API key?
The skill asks the agent to read your API key from an environment variable and never embeds it in source. If you do not have an API key yet, the skill prompts you to sign up at app.turbodocx.com and paste the key into your .env file.

One prompt away from shipping.

Open your editor, run the install, and tell your agent what you want to build.