Token导航 LogoToken导航TokenDH.com
效率需要联网clawhub未标认证来源可访问clear审计通过

toolweb-cardsnap工具网卡片快照

Agent Skill

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

总安装

2,917

周安装

118

GitHub Stars

公开资料未说明

下载量

916
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install toolweb-cardsnap

简介

toolweb-cardsnap 是数字名片生成器,支持创建、管理与跟踪可共享电子名片。

  • 适合在 OpenClaw 中快速生成结构化联系信息,提升商务沟通效率。
  • 通过 clawhub 安装后,Agent 可解析输入数据并输出可视化名片模板。
  • 涉及个人信息时应加密存储,分享时注意权限控制和隐私保护设置。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
CardSnap API
description
Digital Business Card Generator — create, manage, and track shareable business cards with analytics.

Overview

CardSnap API is a comprehensive digital business card generation platform that enables users to create, customize, and share professional business cards in a modern digital format. Built on a secure, CISSP-certified infrastructure, CardSnap simplifies the process of creating branded digital business cards with support for multiple social media profiles, contact information, and customizable themes.

The API provides full lifecycle management for digital business cards, including creation, retrieval, updates, and deletion. Beyond card management, CardSnap includes built-in analytics to track engagement metrics such as views, saves, and shares—giving professionals insights into how their cards are being received and shared across networks.

CardSnap is ideal for sales professionals, entrepreneurs, consultants, recruiters, and any business professional seeking a modern alternative to traditional printed business cards. The platform supports rich contact information, social media integration, and real-time engagement tracking to maximize networking effectiveness.

Usage

Create a Digital Business Card

POST /cards
Content-Type: application/json

{
  "slug": "john-doe-dev",
  "data": {
    "firstName": "John",
    "lastName": "Doe",
    "title": "Senior Software Engineer",
    "company": "TechCorp Inc.",
    "bio": "Full-stack developer passionate about cloud architecture and security.",
    "phone": "+1-555-123-4567",
    "email": "john.doe@techcorp.com",
    "website": "https://johndoe.dev",
    "location": "San Francisco, CA",
    "linkedin": "https://linkedin.com/in/johndoe",
    "twitter": "https://twitter.com/johndoe",
    "github": "https://github.com/johndoe",
    "instagram": "https://instagram.com/johndoe",
    "whatsapp": "+1-555-123-4567",
    "theme": "ocean",
    "photo": "https://example.com/photos/john-doe.jpg"
  }
}

Response (201 Created):

{
  "id": "card_12345abcde",
  "slug": "john-doe-dev",
  "data": {
    "firstName": "John",
    "lastName": "Doe",
    "title": "Senior Software Engineer",
    "company": "TechCorp Inc.",
    "bio": "Full-stack developer passionate about cloud architecture and security.",
    "phone": "+1-555-123-4567",
    "email": "john.doe@techcorp.com",
    "website": "https://johndoe.dev",
    "location": "San Francisco, CA",
    "linkedin": "https://linkedin.com/in/johndoe",
    "twitter": "https://twitter.com/johndoe",
    "github": "https://github.com/johndoe",
    "instagram": "https://instagram.com/johndoe",
    "whatsapp": "+1-555-123-4567",
    "theme": "ocean",
    "photo": "https://example.com/photos/john-doe.jpg"
  },
  "created_at": "2024-01-15T10:30:00Z",
  "updated_at": "2024-01-15T10:30:00Z"
}

Track Card Engagement

POST /cards/john-doe-dev/analytics
Content-Type: application/json

{
  "event": "view"
}

Response (200 OK):

{
  "message": "Event tracked successfully",
  "event": "view",
  "timestamp": "2024-01-15T10:35:22Z"
}

Retrieve Card Analytics

GET /cards/john-doe-dev/analytics

Response (200 OK):

{
  "slug": "john-doe-dev",
  "total_views": 42,
  "total_saves": 8,
  "total_shares": 3,
  "engagement_rate": 0.38,
  "last_viewed": "2024-01-15T10:35:22Z",
  "created_at": "2024-01-15T10:30:00Z"
}

Endpoints

GET /

Summary: Root

Description: Health check endpoint that returns API status.

Parameters: None

Response: 200 OK with API status object.


GET /health

Summary: Health

Description: Service health check endpoint.

Parameters: None

Response: 200 OK with health status.


POST /cards

Summary: Create Card

Description: Create a new digital business card with customizable profile information and theme settings.

Parameters:

  • Request Body (required): CardCreate object

- slug (string, optional): Custom URL-friendly identifier (max 50 chars, alphanumeric, dash, underscore). If not provided, a unique slug is auto-generated. - data (object, required): CardData object containing card information

CardData Parameters:

  • firstName (string, required, max 100 chars): First name of the card owner
  • lastName (string, optional, max 100 chars): Last name of the card owner
  • title (string, optional, max 200 chars): Professional title or job position
  • company (string, optional, max 200 chars): Company or organization name
  • bio (string, optional, max 500 chars): Professional biography or brief description
  • phone (string, optional, max 20 chars): Phone number in any format
  • email (string, optional, max 200 chars): Email address
  • website (string, optional, max 300 chars): Personal or business website URL
  • location (string, optional, max 200 chars): City, region, or geographic location
  • linkedin (string, optional, max 300 chars): LinkedIn profile URL
  • twitter (string, optional, max 300 chars): Twitter/X profile URL
  • github (string, optional, max 300 chars): GitHub profile URL
  • instagram (string, optional, max 300 chars): Instagram profile URL
  • whatsapp (string, optional, max 20 chars): WhatsApp phone number
  • theme (string, optional, max 20 chars, default: "ocean"): Card design theme name
  • photo (string, optional, max 500 chars): Profile photo URL

Response: 201 Created with full card object including ID, timestamps, and all provided data.


GET /cards/{slug}

Summary: Get Card

Description: Retrieve a specific digital business card by its unique slug identifier.

Parameters:

  • slug (string, required, path): The unique card identifier or URL slug

Response: 200 OK with complete card object and all associated data.


PUT /cards/{slug}

Summary: Update Card

Description: Update an existing digital business card's information and settings.

Parameters:

  • slug (string, required, path): The unique card identifier to update
  • Request Body (required): CardUpdate object

- data (object, required): CardData object with fields to update (same structure as creation)

Response: 200 OK with updated card object reflecting all changes.


DELETE /cards/{slug}

Summary: Delete Card

Description: Permanently delete a digital business card and all associated data.

Parameters:

  • slug (string, required, path): The unique card identifier to delete

Response: 200 OK with confirmation message.


POST /cards/{slug}/analytics

Summary: Track Event

Description: Record user engagement events (view, save, or share) for a specific card to track reach and engagement metrics.

Parameters:

  • slug (string, required, path): The unique card identifier
  • Request Body (required): AnalyticsEvent object

- event (string, required, enum): Type of engagement event: view, save, or share

Response: 200 OK with event confirmation and timestamp.


GET /cards/{slug}/analytics

Summary: Get Analytics

Description: Retrieve comprehensive engagement analytics and usage statistics for a specific card.

Parameters:

  • slug (string, required, path): The unique card identifier

Response: 200 OK with analytics object containing:

  • total_views: Count of card views
  • total_saves: Count of card saves
  • total_shares: Count of card shares
  • engagement_rate: Calculated engagement percentage
  • last_viewed: ISO timestamp of most recent view
  • created_at: Card creation timestamp

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/cardsnap
  • API Docs: https://api.toolweb.in:8185/docs

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

70.79%
按下载量换算648

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills