← Back to Skills Marketplace
aiwithabidi

Docusign

by aiwithabidi · GitHub ↗ · v1.0.0
cross-platform ⚠ suspicious
330
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install docusign
Description
DocuSign e-signatures — manage envelopes, templates, recipients, and signing via REST API
README (SKILL.md)

✍️ DocuSign

DocuSign e-signatures — manage envelopes, templates, recipients, and signing via REST API

Requirements

Variable Required Description
DOCUSIGN_ACCESS_TOKEN OAuth access token
DOCUSIGN_ACCOUNT_ID Account ID
DOCUSIGN_BASE_URL Base URL (default: demo)

Quick Start

# List envelopes
python3 {{baseDir}}/scripts/docusign.py envelopes --from_date \x3Cvalue> --status \x3Cvalue>

# Get envelope
python3 {{baseDir}}/scripts/docusign.py envelope-get id \x3Cvalue>

# Create envelope
python3 {{baseDir}}/scripts/docusign.py envelope-create --subject \x3Cvalue> --templateId \x3Cvalue> --status \x3Cvalue>

# Void envelope
python3 {{baseDir}}/scripts/docusign.py envelope-void id \x3Cvalue> --voidedReason \x3Cvalue>

# List recipients
python3 {{baseDir}}/scripts/docusign.py recipients id \x3Cvalue>

# List documents
python3 {{baseDir}}/scripts/docusign.py documents id \x3Cvalue>

# List templates
python3 {{baseDir}}/scripts/docusign.py templates --search_text \x3Cvalue>

# Get template
python3 {{baseDir}}/scripts/docusign.py template-get id \x3Cvalue>

All Commands

Command Description
envelopes List envelopes
envelope-get Get envelope
envelope-create Create envelope
envelope-void Void envelope
recipients List recipients
documents List documents
templates List templates
template-get Get template
audit-events Get audit events
folders List folders
users List users

Output Format

All commands output JSON by default. Add --human for readable formatted output.

python3 {{baseDir}}/scripts/docusign.py \x3Ccommand> --human

Script Reference

Script Description
{{baseDir}}/scripts/docusign.py Main CLI — all commands in one tool

Credits

Built by M. Abidi | agxntsix.ai YouTube | GitHub Part of the AgxntSix Skill Suite for OpenClaw agents.

📅 Need help setting up OpenClaw for your business? Book a free consultation

Usage Guidance
This skill appears to be a straightforward DocuSign CLI, but there are a few surprises you should consider before installing: - Inconsistency: SKILL.md requires DOCUSIGN_BASE_URL, but the script hardcodes the demo API base and never uses that env var. Expectation and implementation don't match — confirm which base URL you should supply and why the variable is declared. - Hidden file read: If DOCUSIGN_ACCESS_TOKEN or DOCUSIGN_ACCOUNT_ID are not set in the environment, the script will try to read them from a .env file in a workspace directory (WORKSPACE or ~/.openclaw/workspace/.env). That behavior is undocumented in the README and could expose other secrets stored in your workspace .env file. - Arbitrary URL support: The code will accept full http(s) paths (if path starts with "http") when making requests. While necessary for flexibility, this could be misused if accidental inputs are provided — validate inputs if you plan automated use. Recommendations: - Inspect the script yourself or run it in an isolated environment. Ensure your .env workspace files do not contain unrelated secrets, or remove/secure them if you will run this skill. - If you need to use a non-demo DocuSign base URL, contact the skill author or patch the script to respect DOCUSIGN_BASE_URL (or update SKILL.md to match the implementation). - Prefer setting DOCUSIGN_ACCESS_TOKEN and DOCUSIGN_ACCOUNT_ID explicitly in the environment rather than relying on .env fallback. Given these mismatches and the undocumented workspace .env read behavior, proceed only after you confirm the intended base URL behavior and secure any workspace .env files.
Capability Analysis
Type: OpenClaw Skill Name: docusign Version: 1.0.0 The skill is a straightforward CLI wrapper for the DocuSign API, using only Python's standard library. It retrieves required API credentials (access token, account ID) from environment variables or a `.env` file located in the OpenClaw workspace (`~/.openclaw/workspace`). While reading from a `.env` file is a non-standard way to get environment variables, it's confined to an expected OpenClaw path and for its own required configuration, not arbitrary sensitive files. The script hardcodes the API base URL to `demo.docusign.net`, which is a functional bug given `DOCUSIGN_BASE_URL` is listed as a requirement in `SKILL.md`, but this is not a security vulnerability. There is no evidence of data exfiltration, malicious execution, persistence, prompt injection, or obfuscation.
Capability Assessment
Purpose & Capability
The skill's stated purpose (DocuSign REST API) matches the included CLI implementation, and DOCUSIGN_ACCESS_TOKEN / DOCUSIGN_ACCOUNT_ID are reasonable. However SKILL.md declares DOCUSIGN_BASE_URL as required, while the code hardcodes the demo API base (API_BASE) and never reads DOCUSIGN_BASE_URL — this is an incoherence between declared requirements and actual code.
Instruction Scope
SKILL.md describes only DocuSign operations and running scripts/docusign.py. The implementation is focused on API calls, which is expected, but the runtime code will also attempt to read a .env file from a WORKSPACE path (or ~/.openclaw/workspace/.env) if the environment variables are not set. That file-read behavior is not documented in SKILL.md and can pull secrets from a user's workspace without explicit mention.
Install Mechanism
No install spec or third-party downloads; the skill is delivered as a small Python script (stdlib-only). This is low risk from an install-provenance perspective.
Credentials
The primary credential (DOCUSIGN_ACCESS_TOKEN) and DOCUSIGN_ACCOUNT_ID are appropriate for the task. But SKILL.md lists DOCUSIGN_BASE_URL (unused by the code), which is inconsistent. The script also falls back to reading a .env file from WORKSPACE or a default workspace path to obtain missing env vars — that access to a local workspace file is not declared and could expose unrelated secrets in that .env file.
Persistence & Privilege
The skill does not request always:true, does not modify other skills or system configuration, and contains no install-time persistence steps. It runs as a one-off CLI script when invoked.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install docusign
  3. After installation, invoke the skill by name or use /docusign
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
- Initial release of the DocuSign skill. - Manage envelopes, templates, documents, and recipients via the DocuSign REST API. - Includes CLI commands for listing, retrieving, creating, voiding envelopes, and more. - Requires Python 3.10+ with no external dependencies. - All commands output JSON, with an optional human-readable format. - Credentials required: DOCUSIGN_ACCESS_TOKEN, DOCUSIGN_ACCOUNT_ID, DOCUSIGN_BASE_URL.
Metadata
Slug docusign
Version 1.0.0
License
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Docusign?

DocuSign e-signatures — manage envelopes, templates, recipients, and signing via REST API. It is an AI Agent Skill for Claude Code / OpenClaw, with 330 downloads so far.

How do I install Docusign?

Run "/install docusign" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Docusign free?

Yes, Docusign is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Docusign support?

Docusign is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Docusign?

It is built and maintained by aiwithabidi (@aiwithabidi); the current version is v1.0.0.

💬 Comments