← 返回 Skills 市场
Docusign
作者
aiwithabidi
· GitHub ↗
· v1.0.0
330
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install docusign
功能描述
DocuSign e-signatures — manage envelopes, templates, recipients, and signing via REST API
使用说明 (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
安全使用建议
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.
功能分析
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.
能力评估
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.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install docusign - 安装完成后,直接呼叫该 Skill 的名称或使用
/docusign触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
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.
元数据
常见问题
Docusign 是什么?
DocuSign e-signatures — manage envelopes, templates, recipients, and signing via REST API. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 330 次。
如何安装 Docusign?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install docusign」即可一键安装,无需额外配置。
Docusign 是免费的吗?
是的,Docusign 完全免费(开源免费),可自由下载、安装和使用。
Docusign 支持哪些平台?
Docusign 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Docusign?
由 aiwithabidi(@aiwithabidi)开发并维护,当前版本 v1.0.0。
推荐 Skills