Token导航 LogoToken导航TokenDH.com
前端设计只读github未标认证来源可访问许可证需确认审计通过

invoiceinvoice 前端

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

233

周安装

10

GitHub Stars

4

下载量

82
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/arlenagreer/claude_configuration_docs --skill invoice

简介

用于生成专业 HTML 发票,支持客户信息与工时记录管理。

  • 自动递增发票编号,整合订阅计费与历史记录查询功能。
  • 适用于自由职业者或服务提供商的开票流程自动化。invoice 属于前端设计类 Skill,可作为该场景下的辅助能力补充。
  • 安装方式:通过 npx skills add 命令从指定 GitHub 仓库添加。
  • 使用前应核对客户数据源准确性,防止开票信息错误。

SKILL.md

Invoice Generation Skill

Overview

Generate professional HTML invoices using pre-configured templates for hourly and subscription billing. Track client information, automatically increment invoice numbers, and maintain invoice history across all clients.

When to Use This Skill

Use this skill when:

  • Creating a new invoice for an existing client by name
  • Adding a new client to the invoice system
  • Viewing client information or invoice history
  • Generating invoices with work log entries (hourly) or subscription billing

Core Capabilities

1. Generate Invoice for Existing Client

When the user requests an invoice for a client by name:

  1. Load client data from clients.json to retrieve:

- Client details and billing information - Invoice type (hourly or subscription) - Last invoice number for auto-increment

  1. For hourly invoices:

- Request work log entries from the user (they will paste as text) - Parse work log format: Date - Project - Hours - Description - For Versa Computing, parse: Date - Project - Hours - Description with separate Project and Description columns - Calculate total hours and amount (hours × hourly_rate)

  1. For subscription invoices:

- No work log needed - Use subscription_name and subscription_amount from client data

  1. Increment invoice number:

- New number = last_invoice_number + 1 - Format: {invoice_prefix}-2025-{new_number:03d}

  1. Calculate dates:

- Invoice date: Use current date (check system date in environment) - Due date: Invoice date + payment_terms_days

  1. Load appropriate template:

- Hourly: assets/hourly-invoice-template.html - Subscription: assets/subscription-invoice-template.html

  1. Replace placeholders with client data:

- {{INVOICE_NUMBER}}, {{INVOICE_DATE}}, {{DUE_DATE}} - {{CLIENT_NAME}}, {{CLIENT_ATTENTION}}, {{CLIENT_ADDRESS_LINE1}}, {{CLIENT_CITY_STATE_ZIP}} - {{PAYMENT_TERMS}} (e.g., "30" for Net 30) - {{PROJECT_REFERENCE}} or {{PO_NUMBER}} as applicable - For hourly: {{TOTAL_HOURS}}, {{HOURLY_RATE}}, {{SUBTOTAL}}, {{TOTAL_AMOUNT}} - For subscription: {{SUBSCRIPTION_NAME}}, {{BILLING_MONTH}}, {{AMOUNT}} - Work log entries (populate table rows in HTML)

  1. Special handling for Versa Computing:

- Use 4-column work log table: DATE | PROJECT | DESCRIPTION | HOURS - Separate project name from description in work log entries - Project names go in the PROJECT column, descriptions in DESCRIPTION column

  1. Save invoice:

- Filename format: Invoice-{invoice_number}-{short_name}-{month}-2025.html - Location: User's Desktop (/Users/arlenagreer/Desktop/)

  1. Update clients.json:

- Set last_invoice_number to new number - Set last_invoice_date to invoice date - Save changes to maintain accurate history

2. Add New Client

To add a new client to the system:

  1. Request necessary information:

- Company name and contact details (attention, address) - Invoice type (hourly or subscription) - Invoice number prefix (3-letter abbreviation) - Billing rate (for hourly) or subscription amount - Payment terms in days - Special requirements (e.g., project column, PO number)

  1. Add new client object to clients.json following the existing structure
  2. Confirm client has been added successfully

3. View Client Information

To view or list clients:

  • Read clients.json and display client details
  • Show invoice history (last invoice number and date)
  • List all tracked clients

Client Database Structure

Client information is stored in clients.json in the skill folder. Each client entry includes:

Required fields (all clients):

  • name: Full client name
  • short_name: Abbreviated name for filenames
  • invoice_prefix: 3-letter invoice number prefix
  • invoice_type: "hourly" or "subscription"
  • company_name: Company name for invoice
  • attention: Contact attention line
  • address_line1: Street address
  • city_state_zip: City, state, and ZIP
  • last_invoice_number: Last invoice number sent (integer)
  • last_invoice_date: Date of last invoice (YYYY-MM-DD)
  • payment_terms_days: Payment terms in days (e.g., 30 for Net 30)

Hourly invoice fields:

  • hourly_rate: Billing rate per hour
  • project_reference: Default project name
  • requires_project_column: (optional) true if work log needs separate project column

Subscription invoice fields:

  • subscription_name: Name of subscription service
  • subscription_amount: Monthly subscription amount

Current Clients

  • American Laboratory Trading (INV prefix, hourly billing)
  • Empirico (EMP prefix, subscription billing)
  • Versa Computing (VER prefix, hourly billing with project column)

Invoice Templates

Hourly Invoice Template

Located at: assets/hourly-invoice-template.html

Features:

  • Two-page layout: invoice summary (page 1) and detailed work log (page 2)
  • Standard work log table: DATE | HOURS | DESCRIPTION
  • For clients requiring project column: DATE | PROJECT | DESCRIPTION | HOURS
  • Professional styling with Inter font and blue color scheme (#2563eb)
  • Print-optimized CSS

Placeholders to replace:

  • {{INVOICE_NUMBER}}, {{INVOICE_DATE}}, {{DUE_DATE}}
  • {{CLIENT_NAME}}, {{CLIENT_ATTENTION}}, {{CLIENT_ADDRESS_LINE1}}, {{CLIENT_CITY_STATE_ZIP}}
  • {{PAYMENT_TERMS}}, {{PROJECT_REFERENCE}}, {{PO_NUMBER}}
  • {{TOTAL_HOURS}}, {{HOURLY_RATE}}, {{SUBTOTAL}}, {{TOTAL_AMOUNT}}
  • Work log table rows (HTML tbody content)

Subscription Invoice Template

Located at: assets/subscription-invoice-template.html

Features:

  • Single-page layout
  • Simplified line items table: Description and Amount only
  • Same professional styling as hourly template

Placeholders to replace:

  • {{INVOICE_NUMBER}}, {{INVOICE_DATE}}, {{DUE_DATE}}
  • {{CLIENT_NAME}}, {{CLIENT_ATTENTION}}, {{CLIENT_ADDRESS_LINE1}}, {{CLIENT_CITY_STATE_ZIP}}
  • {{PAYMENT_TERMS}}, {{SUBSCRIPTION_NAME}}, {{PO_NUMBER}}
  • {{BILLING_MONTH}}, {{AMOUNT}}

Workflow Example

User: "Generate an invoice for Versa Computing"

Process:

  1. Read clients.json and locate Versa Computing client data
  2. Determine invoice type: hourly (requires work log)
  3. Prompt: "Please provide the work log entries for this invoice"
  4. User pastes work log text
  5. Parse entries, extracting: date, project, description, hours
  6. Calculate totals: sum hours × hourly_rate
  7. Increment invoice number: VER-2025-011 → VER-2025-012
  8. Calculate dates: invoice_date (today), due_date (today + 30 days)
  9. Load assets/hourly-invoice-template.html
  10. For Versa, use 4-column work log table format
  11. Replace all placeholders with client data and formatted work log entries
  12. Save to: /Users/arlenagreer/Desktop/Invoice-VER-2025-012-VersaComputing-Nov-2025.html
  13. Update clients.json: set last_invoice_number to 12, last_invoice_date to today
  14. Confirm: "Invoice VER-2025-012 generated and saved to Desktop. Ready for review."

Important Notes

  • Date handling: Always check the system date in <env> context (Today's date)
  • Work log parsing: Accept pasted text format, parse carefully to extract all components
  • Decimal hours: Use decimal format (0.5, 1.0, 2.5) not time format
  • Invoice numbering: Always auto-increment based on last_invoice_number
  • File location: Save all invoices to /Users/arlenagreer/Desktop/
  • No email sending: Skill only generates HTML files; user reviews and sends manually
  • Database updates: Always update clients.json after successful invoice generation
  • Template format: For Versa, modify table structure to include PROJECT column between DATE and DESCRIPTION

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.39%
按下载量换算29

Claude

28.16%
按下载量换算23

Cursor

18.33%
按下载量换算15

Gemini CLI

8.21%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills