用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/dvcrn/openclaw-skills-marketplace --skill shelly-invoice-generator命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | shelly-invoice-generator |
| description | Invoice Generator Pro |
Generate professional invoices in Markdown or HTML from simple inputs.
./generate-invoice.sh \
--client "Acme Corp" \
--email "billing@acme.com" \
--date "2026-02-22" \
--due "2026-03-22" \
--item "Web Development|40|150.00" \
--item "Design Review|5|120.00" \
--tax 10 \
--currency USD \
--invoice-number INV-001 \
--from "Shelly Labs" \
--format html
| Flag | Description | Default |
|---|---|---|
--client | Client name (required) | — |
--email | Client email | — |
--date | Invoice date | today |
--due | Due date | +30 days |
--item | "Description|Qty|Rate" (repeatable) | — |
--tax | Tax percentage | 0 |
--currency | Currency code | USD |
--invoice-number | Invoice ID | INV-{timestamp} |
--from | Your name/company | — |
--format | md or html | md |
--output | Output file path | stdout |
template.html — professional, print-ready# Quick markdown invoice
./generate-invoice.sh --client "Bob" --item "Consulting|10|100" --format md
# HTML invoice saved to file
./generate-invoice.sh --client "Acme" --item "Dev|40|150" --format html --output invoice.html