# Shelly Invoice Generator

> Invoice Generator

- Skill: `johnalbertini14-glitch/shelly-invoice-generator` (Agent Skill, multi-file: 5 files)
- Install (CLI): `npx skillmds@latest add johnalbertini14-glitch/shelly-invoice-generator`
- Raw SKILL.md: https://api.skillmd.com/api/skills/johnalbertini14-glitch/shelly-invoice-generator/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Finance & Business
- Author: johnalbertini14-glitch (https://skillmd.com/u/johnalbertini14-glitch)
- Updated: 2026-09-21
- Page: https://skillmd.com/skills/johnalbertini14-glitch/shelly-invoice-generator

---

# Invoice Generator

Generate professional invoices in Markdown or HTML from simple inputs.

## Usage

```bash
./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
```

### Parameters

| 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 |

### Output

- **Markdown**: Clean table-based invoice
- **HTML**: Uses `template.html` — professional, print-ready

### Examples

```bash
# 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
```

