{
  "markdown": "# Business Card Generator\n\nA Claude Code plugin that generates professional, print-ready business card PDFs with 300 DPI, CMYK colors, proper bleed, trim marks, and safe zones — ready to send to any print shop.\n\n## Features\n\n- **Print-ready output**: 300 DPI, CMYK colors, proper bleed, trim marks\n- **Three styles**: Classic, Modern, Minimal\n- **Safe zone enforcement**: All text stays within the printable area\n- **CMYK color bars**: Included for print shop verification\n- **Optional logo**: Place a company logo on the card\n\n## Installation\n\n### As a Claude Code Plugin\n\n```bash\n/plugin install business-card-generator\n```\n\nOr load manually during development:\n\n```bash\nclaude --plugin-dir ./business-card-generator\n```\n\n### Prerequisites\n\nThe plugin requires Python 3.7+ with ReportLab and Pillow:\n\n```bash\npip install reportlab pillow\n```\n\n## Usage\n\n### With Claude (Natural Language)\n\nJust tell Claude what you need:\n\n> \"Generate a business card for Jane Smith, Senior Engineer at Acme Corp, jane@acme.com, (555) 123-4567\"\n\n> \"Make me a minimal style business card with my name and email\"\n\n> \"Create business cards — use the modern style\"\n\n### With the Slash Command\n\n```\n/business-card-generator:business-card\n```\n\nClaude will ask for your details and generate the card.\n\n### Direct Command Line\n\n```bash\npython scripts/card_generator.py \\\n  --name \"Jane Smith\" \\\n  --title \"Senior Software Engineer\" \\\n  --company \"Acme Corp\" \\\n  --phone \"(555) 123-4567\" \\\n  --email \"jane@acme.com\" \\\n  --website \"www.acme.com\" \\\n  --style classic\n```\n\n### Options\n\n| Flag        | Required | Description                          |\n|-------------|----------|--------------------------------------|\n| `--name`    | Yes      | Full name                            |\n| `--title`   | No       | Job title                            |\n| `--company` | No       | Company name                         |\n| `--phone`   | No       | Phone number                         |\n| `--email`   | No       | Email address                        |\n| `--website` | No       | Website URL                          |\n| `--logo`    | No       | Path to logo image (PNG/JPG)         |\n| `--output`  | No       | Custom output file path              |\n| `--style`   | No       | `classic`, `modern`, or `minimal`    |\n\n### Styles\n\n- **classic** — White background, blue accent, divider line between name and contact info\n- **modern** — Light gray background, blue accent bar on the left edge\n- **minimal** — White background, grayscale palette, clean lines\n\n## Print Specifications\n\n| Property         | Value                              |\n|------------------|------------------------------------|\n| Final card size  | 3.5\" x 2\" (88.9mm x 50.8mm)      |\n| With bleed       | 3.75\" x 2.25\" (95.25mm x 57.15mm)|\n| Bleed            | 0.125\" (3.175mm) all sides        |\n| Safe zone        | 3.25\" x 1.75\" (content area)      |\n| Resolution       | 300 DPI                            |\n| Color mode       | CMYK                               |\n| Trim marks       | Yes, at all four corners           |\n| Color bars       | CMYK verification bars included    |\n\n## Output\n\nGenerated PDFs are saved to `output/` with timestamped filenames:\n\n```\noutput/card_Jane_Smith_20260211_143022.pdf\n```\n\n## Testing\n\nGenerate a test card to verify everything works:\n\n```bash\npython scripts/card_generator.py --name \"Test User\" --title \"QA Engineer\" --email \"test@example.com\"\n```\n\nOpen the resulting PDF and verify:\n1. Crop marks visible at all four corners\n2. CMYK color bars below the card\n3. Text is within the safe zone (not touching trim edges)\n4. Background extends to document edges (bleed area)\n\n## License\n\nMIT\n",
  "bytes": 3669,
  "sha": "74982cb49f7414c409fc62318a18f9a6cb77e61c97e172c96a39c372282a7105",
  "repo_slug": "revathikbose/business-card-generator",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/plg_revathikbose_business_card_generator_bus_574a1d1f/readme"
}