Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计通过

docusign-automation文档签名自动化

Agent Skill

docusign-automation 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,693

周安装

72

GitHub Stars

57,222

下载量

593
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:docusign-automation(文档签名自动化)
来源仓库:https://github.com/composiohq/awesome-claude-skills
仓库路径:skills/docusign-automation
安装命令:
npx skills add https://github.com/composiohq/awesome-claude-skills --skill docusign-automation
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/composiohq/awesome-claude-skills --skill docusign-automation

简介

通过 Composio 工具包自动化 DocuSign 电子签名流程。

  • 适用于合同生成、签署请求和完成状态跟踪。docusign-automation 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 需先连接 Rube MCP 并配置 DocuSign 授权。
  • 安装方式:通过 npx 从 GitHub 仓库添加;依赖 Rube MCP 环境。
  • 注意:法律文件操作应确保签署方身份验证与流程合规性。

SKILL.md

DocuSign Automation via Rube MCP

Automate DocuSign e-signature workflows through Composio's DocuSign toolkit via Rube MCP.

Toolkit docs: composio.dev/toolkits/docusign

Prerequisites

  • Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
  • Active DocuSign connection via RUBE_MANAGE_CONNECTIONS with toolkit docusign
  • Always call RUBE_SEARCH_TOOLS first to get current tool schemas

Setup

Get Rube MCP: Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.

  1. Verify Rube MCP is available by confirming RUBE_SEARCH_TOOLS responds
  2. Call RUBE_MANAGE_CONNECTIONS with toolkit docusign
  3. If connection is not ACTIVE, follow the returned auth link to complete DocuSign OAuth
  4. Confirm connection status shows ACTIVE before running any workflows

Core Workflows

1. Browse and Select Templates

When to use: User wants to find available document templates for sending

Tool sequence:

  1. DOCUSIGN_LIST_ALL_TEMPLATES - List all available templates [Required]
  2. DOCUSIGN_GET_TEMPLATE - Get detailed template information [Optional]

Key parameters:

  • For listing: Optional search/filter parameters
  • For details: templateId (from list results)
  • Response includes template templateId, name, description, roles, and fields

Pitfalls:

  • Template IDs are GUIDs (e.g., '12345678-abcd-1234-efgh-123456789012')
  • Templates define recipient roles with signing tabs; understand roles before creating envelopes
  • Large template libraries require pagination; check for continuation tokens
  • Template access depends on account permissions

2. Create and Send Envelopes from Templates

When to use: User wants to send documents for signature using a pre-built template

Tool sequence:

  1. DOCUSIGN_LIST_ALL_TEMPLATES - Find the template to use [Prerequisite]
  2. DOCUSIGN_GET_TEMPLATE - Review template roles and fields [Optional]
  3. DOCUSIGN_CREATE_ENVELOPE_FROM_TEMPLATE - Create the envelope [Required]
  4. DOCUSIGN_SEND_ENVELOPE - Send the envelope for signing [Required]

Key parameters:

  • For CREATE_ENVELOPE_FROM_TEMPLATE:

- templateId: Template to use - templateRoles: Array of role assignments with roleName, name, email - status: 'created' (draft) or 'sent' (send immediately) - emailSubject: Custom subject line for the signing email - emailBlurb: Custom message in the signing email

  • For SEND_ENVELOPE:

- envelopeId: Envelope ID from creation response

Pitfalls:

  • templateRoles must match the role names defined in the template exactly (case-sensitive)
  • Setting status to 'sent' during creation sends immediately; use 'created' for drafts
  • If status is 'sent' at creation, no need to call SEND_ENVELOPE separately
  • Each role requires at minimum roleName, name, and email
  • emailSubject overrides the template's default email subject

3. Monitor Envelope Status

When to use: User wants to check the status of sent envelopes or track signing progress

Tool sequence:

  1. DOCUSIGN_GET_ENVELOPE - Get envelope details and status [Required]

Key parameters:

  • envelopeId: Envelope identifier (GUID)
  • Response includes status, recipients, sentDateTime, completedDateTime

Pitfalls:

  • Envelope statuses: 'created', 'sent', 'delivered', 'signed', 'completed', 'declined', 'voided'
  • 'delivered' means the email was opened, not that the document was signed
  • 'completed' means all recipients have signed
  • Recipients array shows individual signing status per recipient
  • Envelope IDs are GUIDs; always resolve from creation or search results

4. Add Templates to Existing Envelopes

When to use: User wants to add additional documents or templates to an existing envelope

Tool sequence:

  1. DOCUSIGN_GET_ENVELOPE - Verify envelope exists and is in draft state [Prerequisite]
  2. DOCUSIGN_ADD_TEMPLATES_TO_DOCUMENT_IN_ENVELOPE - Add template to envelope [Required]

Key parameters:

  • envelopeId: Target envelope ID
  • documentId: Document ID within the envelope
  • templateId: Template to add

Pitfalls:

  • Envelope must be in 'created' (draft) status to add templates
  • Cannot add templates to already-sent envelopes
  • Document IDs are sequential within an envelope (starting from '1')
  • Adding a template merges its fields and roles into the existing envelope

5. Manage Envelope Lifecycle

When to use: User wants to send, void, or manage draft envelopes

Tool sequence:

  1. DOCUSIGN_GET_ENVELOPE - Check current envelope status [Prerequisite]
  2. DOCUSIGN_SEND_ENVELOPE - Send a draft envelope [Optional]

Key parameters:

  • envelopeId: Envelope to manage
  • For sending: envelope must be in 'created' status with all required recipients

Pitfalls:

  • Only 'created' (draft) envelopes can be sent
  • Sent envelopes cannot be unsent; they can only be voided
  • Voiding an envelope notifies all recipients
  • All required recipients must have valid email addresses before sending

Common Patterns

ID Resolution

Template name -> Template ID:

1. Call DOCUSIGN_LIST_ALL_TEMPLATES
2. Find template by name in results
3. Extract templateId (GUID format)

Envelope tracking:

1. Store envelopeId from CREATE_ENVELOPE_FROM_TEMPLATE response
2. Call DOCUSIGN_GET_ENVELOPE periodically to check status
3. Check recipient-level status for individual signing progress

Template Role Mapping

When creating an envelope from a template:

1. Call DOCUSIGN_GET_TEMPLATE to see defined roles
2. Map each role to actual recipients:
   {
     "roleName": "Signer 1",     // Must match template role name exactly
     "name": "John Smith",
     "email": "john@example.com"
   }
3. Include ALL required roles in templateRoles array

Envelope Status Flow

created (draft) -> sent -> delivered -> signed -> completed
                       \-> declined
                       \-> voided (by sender)

Known Pitfalls

Template Roles:

  • Role names are case-sensitive; must match template definition exactly
  • All required roles must be assigned when creating an envelope
  • Missing role assignments cause envelope creation to fail

Envelope Status:

  • 'delivered' means email opened, NOT document signed
  • 'completed' is the final successful state (all parties signed)
  • Status transitions are one-way; cannot revert to previous states

GUIDs:

  • All DocuSign IDs (templates, envelopes) are GUID format
  • Always resolve names to GUIDs via list/search endpoints
  • Do not hardcode GUIDs; they are unique per account

Rate Limits:

  • DocuSign API has per-account rate limits
  • Bulk envelope creation should be throttled
  • Polling envelope status should use reasonable intervals (30-60 seconds)

Response Parsing:

  • Response data may be nested under data key
  • Recipient information is nested within envelope response
  • Date fields use ISO 8601 format
  • Parse defensively with fallbacks for optional fields

Quick Reference

TaskTool SlugKey Params
List templatesDOCUSIGN_LIST_ALL_TEMPLATES(optional filters)
Get templateDOCUSIGN_GET_TEMPLATEtemplateId
Create envelopeDOCUSIGN_CREATE_ENVELOPE_FROM_TEMPLATEtemplateId, templateRoles, status
Send envelopeDOCUSIGN_SEND_ENVELOPEenvelopeId
Get envelope statusDOCUSIGN_GET_ENVELOPEenvelopeId
Add template to envelopeDOCUSIGN_ADD_TEMPLATES_TO_DOCUMENT_IN_ENVELOPEenvelopeId, documentId, templateId

*Powered by Composio*

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.04%
按下载量换算220

Claude

29.33%
按下载量换算174

Cursor

19.54%
按下载量换算116

Gemini CLI

8.39%
按下载量换算50

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills