Token导航 LogoToken导航TokenDH.com
运维external-serviceclawhub未标认证来源可访问clear审计通过

toolweb-certificaty工具网证书

Agent Skill

toolweb-certificaty 用于补充运维相关能力,适合在 OpenClaw 中需要让 Agent 承接运维相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,065

周安装

129

GitHub Stars

公开资料未说明

下载量

1,073
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:toolweb-certificaty(工具网证书)
来源仓库:https://github.com/krishnakumarmahadevan-cmd/toolweb-certificaty
安装命令:
openclaw skills install toolweb-certificaty
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install toolweb-certificaty

简介

toolweb-certificaty 用于生成、管理和下载 SSL/TLS 证书,支持多域名与令牌验证。

  • 适合在 OpenClaw 中自动化证书生命周期管理,保障服务通信安全。
  • 通过 clawhub 安装后,Agent 可调用后端服务完成签发、续期和吊销操作。
  • 操作证书需严格控制权限,防止私钥泄露或中间人攻击风险。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
Certificaty
description
Generate, manage, and download SSL/TLS certificates with token-based verification and multi-domain support.

Overview

Certificaty is a certificate management API that streamlines the provisioning and lifecycle management of SSL/TLS certificates for web domains. Built for DevOps teams, security engineers, and automation platforms, it provides a secure, token-based workflow for generating certificates, verifying domain ownership, and downloading certificate files.

The API supports single and multi-domain certificate types, integrates with email-based verification flows, and maintains an audit trail of all certificate operations. It is ideal for organizations managing multiple domains, automated infrastructure deployments, and enterprises requiring compliance-ready certificate management.

Key capabilities include token generation for certificate orders, domain verification, certificate generation with configurable types, and direct file downloads for deployment across infrastructure.

Usage

Generate a Token for Certificate Order

{
  "email": "admin@example.com",
  "domain": "example.com",
  "cert_type": "single"
}

Response:

{
  "status": "success",
  "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
  "expires_in": 3600,
  "message": "Token generated successfully for domain verification"
}

Generate a Certificate

{
  "domain": "example.com",
  "order_id": "ORD-20240115-001",
  "cert_type": "single"
}

Response:

{
  "status": "success",
  "certificate_id": "CERT-20240115-001",
  "domain": "example.com",
  "issued_at": "2024-01-15T10:30:00Z",
  "expires_at": "2025-01-15T10:30:00Z",
  "download_url": "/download/example.com/certificate.crt",
  "message": "Certificate generated successfully"
}

Endpoints

GET /

Summary: Root

Description: Returns API metadata and service information.

Parameters: None

Response: JSON object with API details.


GET /status

Summary: Status

Description: Returns the operational status of the Certificaty service.

Parameters: None

Response: JSON object indicating service health and availability.


GET /certificates

Summary: Certificates

Description: Retrieves a list of all certificates managed by the service.

Parameters: None

Response: JSON array of certificate objects with metadata.


POST /generate-token

Summary: Generate Token

Description: Creates a verification token for initiating a certificate order. Required before certificate generation.

Parameters:

NameTypeRequiredDescription
emailstring (email)Email address for certificate order notifications and verification
domainstringSingle domain for certificate (use for single-domain certificates)
domainsarray of stringsMultiple domains for certificate (use for multi-domain or wildcard certificates)
cert_typestringCertificate type: single (default), multi, or wildcard

Request Body:

{
  "email": "admin@example.com",
  "domain": "example.com",
  "cert_type": "single"
}

Response (200):

{
  "token": "string",
  "expires_in": "integer",
  "status": "success"
}

Response (422): Validation error with field-level details.


POST /generate-certificate

Summary: Generate Certificate

Description: Generates an SSL/TLS certificate for a verified domain using a valid order ID.

Parameters:

NameTypeRequiredDescription
domainstringDomain name for which to generate the certificate
order_idstringUnique order identifier returned from token generation or order system
cert_typestringCertificate type: single (default), multi, or wildcard

Request Body:

{
  "domain": "example.com",
  "order_id": "ORD-20240115-001",
  "cert_type": "single"
}

Response (200):

{
  "certificate_id": "string",
  "domain": "string",
  "issued_at": "string (ISO 8601)",
  "expires_at": "string (ISO 8601)",
  "status": "success"
}

Response (422): Validation error with field-level details.


GET /download/{domain}/{filename}

Summary: Download Certificate

Description: Downloads a generated certificate file in PEM, CRT, or KEY format.

Parameters:

NameTypeRequiredDescription
domainstringDomain name associated with the certificate
filenamestringName of the file to download (e.g., certificate.crt, private.key)

Response (200): Binary file download (certificate or key file).

Response (422): Validation error with field-level details.


Pricing

PlanCalls/DayCalls/MonthPrice
Free550Free
Developer20500$39/mo
Professional2005,000$99/mo
Enterprise100,0001,000,000$299/mo

About

ToolWeb.in - 200+ security APIs, CISSP & CISM, platforms: Pay-per-run, API Gateway, MCP Server, OpenClaw, RapidAPI, YouTube.

References

  • Kong Route: https://api.toolweb.in/tools/certificaty
  • API Docs: https://api.toolweb.in:8164/docs

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

71.62%
按下载量换算768

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills