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

invoiceinvoice 前端

Agent Skill

用于辅助音频、音乐、语音转写、语音合成或声音素材处理。它适合让 Agent 生成配乐说明、整理音频流程、调用语音工具或处理播客和视频配音素材。使用时需要确认输入音频来源、输出格式、时长和模型限制;涉及人声克隆、版权音乐或公开发布时,应先核对授权和合规边界。

总安装

523

周安装

22

GitHub Stars

1

下载量

183
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/skinnyandbald/fish-skills --skill invoice

简介

invoice 用于辅助音频、音乐、语音转写或声音素材处理,适合在 Codex、Claude、Cursor、Gemini CLI 中生成配乐说明。

  • 适用于需要整理音频流程或处理播客和视频配音素材的场景。
  • 支持音频处理和语音合成功能。
  • 安装命令:npx skills add https://github.com/skinnyandbald/fish-skills --skill invoice。
  • 涉及人声克隆或版权音乐时,应先核对授权和合规边界。

SKILL.md

/invoice <client> [description] [amount] [options]

Examples

# Full inline — generates immediately
/invoice validcodes "AI Training Pack" 7500 --net 15

# Just client — prompts for line items and terms
/invoice validcodes

# With notes
/invoice validcodes "Sprint Phase 1" 40000 --net 1 --notes "50% upfront per SOW"

# Hourly — interactive mode for multiple line items
/invoice acme --hourly

# Custom quantity
/invoice validcodes "Advisory Call" 300 --quantity 4 --net 15

Arguments

ArgRequiredDefaultDescription
clientYesClient slug or alias (matched against client YAML files)
descriptionNopromptedLine item description
amountNopromptedTotal amount in USD
--net NNoclient default or 15Payment terms (NET-N days)
--quantity NNo1Line item quantity
--notes "..."NononeNotes to display below the total
--hourlyNofalseInteractive mode for multiple line items with rates

Paths

The skill needs these directories configured for your environment:

PathPurposeExample
Clients dirYAML files with billing info02_Areas/consulting/templates/invoicing/clients/
Output dirWhere generated PDFs are saved02_Areas/consulting/invoices/
Logo overrideOptional custom logo02_Areas/consulting/templates/invoicing/logo.png

The generator script, HTML template, and default logo are bundled with this skill.

Client YAML Schema

Create one YAML file per client in your clients directory:

# clients/acme.yaml
name: "Acme Corporation"
aliases: [acme, acme-corp]
default_net: 30
FieldRequiredDescription
nameYesFull legal name for invoice
aliasesNoAlternative names for matching (case-insensitive)
default_netNoDefault payment terms for this client (fallback: 15)

Payee Info

The HTML template has a hardcoded "Pay to" address. Edit invoice-template.html in the skill directory to change your billing address.

Dependencies

The generator requires Python packages installed via uv:

uv run --with weasyprint --with pyyaml --with jinja2 python3 generate-invoice.py <config.yaml>
  1. Read the first argument as the client identifier
  2. Glob all YAML files in the clients directory
  3. For each file, check:

- Filename (without .yaml) matches the arg (case-insensitive) - The aliases array contains the arg (case-insensitive)

  1. If no match found, list available clients and ask the user to choose
  2. Load the matched client's billing info

Step 2: Collect Invoice Details

For any fields not provided as arguments, prompt the user:

  1. Description — What is the line item? (e.g., "AI Training Pack", "Sprint Phase 1")
  2. Amount — Total amount in USD
  3. NET terms — Use --net arg, or client's default_net, or fall back to 15
  4. Quantity — Default 1 unless specified
  5. Notes — Optional, use --notes arg or ask if user wants to add any

For --hourly mode, interactively collect multiple line items:

  • Prompt for each: description, hours, rate
  • Calculate amount as hours × rate
  • Keep asking "Add another line item?" until done

Step 3: Determine Invoice ID

  1. Scan the output directory for existing PDF files matching invoice-#*.pdf
  2. Extract the highest invoice number N
  3. Use N+1 as the new invoice ID
  4. If no existing invoices, start at 1

Step 4: Generate Invoice

  1. Compute invoice date (today) and due date (today + NET days)
  2. Format dates as MM/DD/YYYY
  3. Create a client slug from the YAML filename (used in PDF filename)
  4. Write a temporary YAML config file combining client info + line items
  5. Determine the skill directory (where generate-invoice.py lives)
  6. Check for a logo override in the clients directory's parent — if it exists, use --logo flag; otherwise use the bundled default
  7. Run the generator:
uv run --with weasyprint --with pyyaml --with jinja2 python3 \
  <skill-dir>/generate-invoice.py <temp-config.yaml> \
  --output-dir <output-dir> \
  [--logo <custom-logo>]
  1. Delete the temporary YAML config

Step 5: Review and Commit

  1. Open/display the generated PDF for the user to review
  2. Report: invoice number, client, amount, due date, file path
  3. Ask: "Does this look right? Commit?"
  4. If approved, stage and commit with message: feat: Generate <client> invoice #N ($X,XXX)
  5. If changes needed, go back and adjust

<reference_files>

  • generate-invoice.py — PDF generator script (bundled with this skill)
  • invoice-template.html — Jinja2 HTML template (bundled with this skill)
  • logo.png — Default logo (bundled with this skill)
  • INVOICE-TEMPLATE-SPEC.md — Full design spec for the template layout </reference_files>

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.85%
按下载量换算60

Claude

30.35%
按下载量换算56

Cursor

20.35%
按下载量换算37

Gemini CLI

9.29%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills