← 返回 Skills 市场
hith3sh

BoldSign

作者 Jay · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
31
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install boldsign
功能描述
BoldSign e-signature platform API integration with managed OAuth. Send documents for signature, manage documents, create embedded signing links, and track do...
使用说明 (SKILL.md)

BoldSign

BoldSign

BoldSign is an e-signature platform for sending, signing, and managing electronic documents. This integration lets you send documents for signature, track document status, manage brands and custom fields, and create embedded signing experiences through ClawLink's hosted OAuth flow.

Setup in 3 Steps

Step 1: Install Step 2: Pair Account Step 3: Connect BoldSign
Install Pair App-specific connection GIF coming soon
Run the install command in OpenClaw Sign in and approve the device Open the dashboard and connect BoldSign

How It Works

┌─────────────────┐     ┌──────────────┐     ┌──────────────────┐
│   OpenClaw      │────>│   ClawLink   │────>│  BoldSign API    │
│   (User Chat)   │     │   (OAuth)    │     │                  │
└─────────────────┘     └──────────────┘     └──────────────────┘

Install

openclaw plugins install clawhub:clawlink-plugin
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart

Quick Start

  1. List your documents -- boldsign_document_list
  2. Send a document for signature -- boldsign_document_send
  3. Check API credits -- boldsign_plan_get_api_credits_count

Authentication

ClawLink handles OAuth automatically. When you connect BoldSign through the dashboard, ClawLink obtains and refreshes tokens on your behalf. No API keys needed.

Connect at: https://claw-link.dev/dashboard?add=boldsign

Connection Management

Security & Permissions

Read operations (listing documents, brands, credits) are safe. Write operations (sending documents, creating custom fields) require confirmation. Destructive operations (removing document authentication) are marked high-impact and require explicit approval.

Tool Reference

Document Operations

Tool Description Mode
boldsign_document_list List documents in My Documents with filters Read
boldsign_document_behalf_list List documents sent on behalf of users Read
boldsign_document_team_list List team documents with optional filters Read
boldsign_document_send Send a document for eSignature Write
boldsign_document_edit_beta Edit a draft or sent document (beta) Write
boldsign_document_extend_expiry Extend a document's expiry date Write
boldsign_document_remove_authentication Remove signer authentication from a document Write

Brand Operations

Tool Description Mode
boldsign_brand_get Get brand details by brand ID Read
boldsign_brand_list List all brands in the account Read

Custom Field Operations

Tool Description Mode
boldsign_custom_field_create Create a brand-scoped custom field Write
boldsign_custom_field_edit Edit an existing custom field Write

Embedded Signing Operations

Tool Description Mode
boldsign_embedded_request_create_link Create an embedded request link for in-app signing Write

File Operations

Tool Description Mode
boldsign_file_upload Upload a file for use in other BoldSign actions Write

Plan & Billing Operations

Tool Description Mode
boldsign_plan_get_api_credits_count Get remaining API credits count Read

Code Examples

List documents

{
  "tool": "boldsign_document_list",
  "args": { "page": 1, "pageSize": 20 }
}

Send a document for signature

{
  "tool": "boldsign_document_send",
  "args": {
    "title": "Service Agreement",
    "signers": [{ "name": "John Doe", "emailAddress": "[email protected]" }],
    "files": [{ "fileUrl": "https://example.com/contract.pdf" }]
  }
}

Create embedded signing link

{
  "tool": "boldsign_embedded_request_create_link",
  "args": {
    "title": "NDA",
    "signers": [{ "name": "Jane Smith", "emailAddress": "[email protected]" }]
  }
}

Discovery Workflow

  1. Call clawlink_list_integrations to confirm boldsign is connected.
  2. Call clawlink_list_tools --integration boldsign to see the live catalog.
  3. Use boldsign_document_list to find existing documents.
  4. Use boldsign_brand_list to see available brand configurations.

Execution Workflow

Read path:  User asks "Show my documents"         -> boldsign_document_list
Write path: User asks "Send contract for signing"  -> Confirm -> boldsign_document_send

Notes

  • Documents can only be edited while in draft status or before finalization.
  • The boldsign_file_upload tool is a helper that returns a key used by other tools (like brand logo upload).
  • Embedded request links are useful for integrating signing directly into your application.
  • API credit consumption depends on your BoldSign plan.

Error Handling

Status / Error Meaning
Tool not found BoldSign integration not connected
Missing connection Authenticate via https://claw-link.dev/dashboard?add=boldsign
403 Forbidden Insufficient permissions or expired credits
Document not found Invalid document ID or document does not belong to your account

Troubleshooting

Tools Not Visible

Run clawlink_list_tools --integration boldsign to confirm the connection is active.

Document Send Fails

Ensure the file URL is publicly accessible. Check that signer email addresses are valid.

Resources


Powered by ClawLink -- an integration hub for OpenClaw

ClawLink Logo

安全使用建议
Install this only if you intend to connect your BoldSign account through ClawLink. Review the BoldSign permissions during OAuth, and be careful with write actions such as sending documents, uploading files, editing documents, creating fields, or removing signer authentication.
能力标签
requires-walletrequires-oauth-tokenrequires-sensitive-credentials
能力评估
Purpose & Capability
The stated purpose is to send, manage, and track BoldSign documents; the listed tools match that purpose, including document listing, sending, embedded signing links, custom fields, file upload, brands, and API credits.
Instruction Scope
Runtime instructions are scoped to user-directed BoldSign actions and explicitly distinguish read operations from write and high-impact operations requiring confirmation or explicit approval.
Install Mechanism
Installation requires installing and allow-listing the ClawLink plugin, then connecting BoldSign through ClawLink's hosted OAuth dashboard; this is disclosed and aligned with the integration purpose.
Credentials
The skill consists only of a markdown instruction file with no executable scripts or hidden local file access; network/API use is expected for BoldSign and ClawLink integration.
Persistence & Privilege
OAuth tokens are handled and refreshed by ClawLink on the user's behalf, which is expected for the integration but means users are trusting ClawLink with ongoing BoldSign access.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install boldsign
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /boldsign 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
BoldSign skill 1.0.0 initial release - Integrates BoldSign e-signature platform with managed OAuth via ClawLink - Send documents for signature, create embedded signing links, and manage document status - Support for document listing, custom field management, and brand operations - Includes tools for file upload and checking remaining API credits - Secure, user-friendly connection and confirmation workflows for sensitive actions
元数据
Slug boldsign
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

BoldSign 是什么?

BoldSign e-signature platform API integration with managed OAuth. Send documents for signature, manage documents, create embedded signing links, and track do... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 31 次。

如何安装 BoldSign?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install boldsign」即可一键安装,无需额外配置。

BoldSign 是免费的吗?

是的,BoldSign 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

BoldSign 支持哪些平台?

BoldSign 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 BoldSign?

由 Jay(@hith3sh)开发并维护,当前版本 v1.0.0。

💬 留言讨论