Token导航 LogoToken导航TokenDH.com
开发external-serviceclawhub未标认证来源可访问clear审计提醒

toolweb-invoicy工具网发票

Agent Skill

toolweb-invoicy 用于处理音频、语音、转写和声音素材相关任务,适合在 OpenClaw 中需要整理音频流程、转写内容或生成配音素材时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,399

周安装

102

GitHub Stars

公开资料未说明

下载量

840
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install toolweb-invoicy

简介

支持GST/IGST的专业发票生成和发送服务。

  • 适用于企业财务管理和客户账单处理。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • 提供模板设计、税务计算和邮件发送功能。
  • 需配置企业税号和银行账户信息。toolweb-invoicy 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 涉及财务数据时应确保传输和存储安全。

SKILL.md

name
Invoice Generator
description
Generate, download, and email professional invoices with GST/IGST support and flexible payment terms.

Overview

Invoice Generator is a comprehensive invoice management API that enables businesses to create, customize, and distribute professional invoices programmatically. Built for e-commerce platforms, accounting systems, and billing automation, it supports multi-currency transactions, Indian GST/IGST compliance, and direct email distribution to customers.

The tool provides complete invoice lifecycle management—from generation with line-item details, tax calculations, and payment terms, to secure download and automated email delivery. It integrates seamlessly with SMTP servers for direct email transmission and maintains invoice records for later retrieval.

Ideal users include SaaS billing platforms, freelance management systems, accounting software providers, and e-commerce businesses requiring automated invoice workflows with professional formatting and compliance support.

Usage

Generate an invoice for a consulting service with GST:

{
  "company": {
    "name": "TechCorp Solutions",
    "address": "123 Business Park",
    "city": "Bangalore",
    "state": "Karnataka",
    "pincode": "560001",
    "phone": "+91-80-XXXX-XXXX",
    "email": "billing@techcorp.com",
    "gstin": "18AABCT1234H1Z0",
    "pan": "AAACT1234H",
    "logo_url": "https://example.com/logo.png"
  },
  "customer": {
    "name": "Acme Corporation",
    "address": "456 Client Street",
    "city": "Mumbai",
    "state": "Maharashtra",
    "pincode": "400001",
    "phone": "+91-22-XXXX-XXXX",
    "email": "accounts@acme.com",
    "gstin": "27AABCT5678H1Z1"
  },
  "items": [
    {
      "description": "Consulting Services - Q1 2024",
      "quantity": 1,
      "rate": 50000,
      "tax_percent": 18
    },
    {
      "description": "Development Hours (120 hrs @ 500/hr)",
      "quantity": 120,
      "rate": 500,
      "tax_percent": 18
    }
  ],
  "invoice_number": "INV-2024-001",
  "invoice_date": "2024-01-15",
  "due_date": "2024-02-15",
  "payment_terms": "Net 30",
  "notes": "Thank you for your business. Payment via bank transfer preferred.",
  "bank_name": "HDFC Bank",
  "account_number": "1234567890123456",
  "ifsc_code": "HDFC0000123",
  "upi_id": "techcorp@hdfc",
  "is_igst": false
}

Sample Response:

{
  "invoice_id": "inv_7f8a9b2c1e5d3k4m",
  "status": "generated",
  "subtotal": 110000,
  "tax_amount": 19800,
  "total_amount": 129800,
  "created_at": "2024-01-15T10:30:45Z",
  "message": "Invoice generated successfully"
}

Endpoints

GET /

Root endpoint – Returns API information and health status.

ParameterTypeRequiredDescription
No parameters

Response: JSON object with service metadata.


GET /status

Status check – Returns current API health and operational status.

ParameterTypeRequiredDescription
No parameters

Response: JSON object with status information and service uptime.


POST /generate

Generate Invoice – Creates a new invoice from company, customer, and line item details.

Request Body:

FieldTypeRequiredDescription
companyCompanyDetailsYesCompany/seller information including name, address, tax IDs, contact details, and optional logo URL
customerCustomerDetailsYesCustomer/buyer information including name, address, tax IDs, and contact details
itemsLineItem[]YesArray of line items with description, quantity, rate, and optional tax percentage
invoice_numberstringNoCustom invoice number (auto-generated if omitted)
invoice_datestringNoInvoice issuance date in YYYY-MM-DD format
due_datestringNoPayment due date in YYYY-MM-DD format
payment_termsstringNoPayment terms description (default: "Due on Receipt")
notesstringNoAdditional notes or payment instructions
bank_namestringNoBank name for payment details
account_numberstringNoBank account number
ifsc_codestringNoIFSC code for Indian bank transfers
upi_idstringNoUPI ID for digital payments
is_igstbooleanNoSet to true for IGST (Integrated GST), false for SGST+CGST (default: false)

Response: JSON object containing:

  • invoice_id: Unique identifier for retrieving/downloading the invoice
  • status: Generation status ("generated")
  • subtotal: Total amount before tax
  • tax_amount: Calculated tax amount
  • total_amount: Final invoice total
  • created_at: Timestamp of invoice creation

GET /download/{invoice_id}

Download Invoice – Retrieves and downloads a previously generated invoice as PDF.

ParameterTypeRequiredDescription
invoice_idstringYesUnique identifier of the invoice to download (path parameter)

Response: PDF file download or JSON error with appropriate HTTP status.


POST /send-email

Send Email – Sends a generated invoice to a specified email address via SMTP.

Request Body:

FieldTypeRequiredDescription
invoice_idstringYesUnique identifier of the invoice to email
to_emailstringYesRecipient email address (must be valid email format)
to_namestringNoRecipient's display name (default: empty)
from_emailstringYesSender email address (must be valid email format)
from_namestringNoSender's display name (default: empty)
subjectstringNoEmail subject line (default: empty)
messagestringNoEmail body/message text (default: empty)
smtp_hoststringNoSMTP server hostname (default: "localhost")
smtp_portintegerNoSMTP server port number (default: 587)
smtp_userstringNoSMTP authentication username (default: empty)
smtp_passstringNoSMTP authentication password (default: empty)
use_tlsbooleanNoEnable TLS encryption (default: true)

Response: JSON object containing:

  • status: Email delivery status ("sent", "pending", or "failed")
  • message: Status message with delivery details
  • timestamp: Email send 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/invoicy
  • API Docs: https://api.toolweb.in:8165/docs

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

80.17%
按下载量换算673

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills