{"id":50907241,"url":"https://github.com/yo61/claude-plugin-reportlab-pdf","last_synced_at":"2026-06-16T06:30:30.950Z","repository":{"id":358743177,"uuid":"1242414714","full_name":"yo61/claude-plugin-reportlab-pdf","owner":"yo61","description":"Claude Code plugin: ReportLab-based PDF generation. Programmatic Platypus PDFs (CVs, invoices, reports) and a markdown-to-PDF renderer (mistune + Platypus).","archived":false,"fork":false,"pushed_at":"2026-05-18T21:23:44.000Z","size":32,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-18T23:48:38.901Z","etag":null,"topics":["claude-code","claude-code-plugin","markdown","pdf-generation","reportlab"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/yo61.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-18T12:05:32.000Z","updated_at":"2026-05-18T21:23:36.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/yo61/claude-plugin-reportlab-pdf","commit_stats":null,"previous_names":["yo61/claude-plugin-reportlab-pdf"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/yo61/claude-plugin-reportlab-pdf","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yo61%2Fclaude-plugin-reportlab-pdf","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yo61%2Fclaude-plugin-reportlab-pdf/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yo61%2Fclaude-plugin-reportlab-pdf/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yo61%2Fclaude-plugin-reportlab-pdf/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yo61","download_url":"https://codeload.github.com/yo61/claude-plugin-reportlab-pdf/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yo61%2Fclaude-plugin-reportlab-pdf/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34393304,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-16T02:00:06.860Z","response_time":126,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["claude-code","claude-code-plugin","markdown","pdf-generation","reportlab"],"created_at":"2026-06-16T06:30:30.289Z","updated_at":"2026-06-16T06:30:30.946Z","avatar_url":"https://github.com/yo61.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# reportlab-pdf\n\nA Claude Code plugin for generating PDFs with Python's\n[ReportLab](https://www.reportlab.com/) library and its\n[Platypus](https://docs.reportlab.com/reportlab/userguide/ch5_platypus/)\nlayout engine. The plugin contains two skills:\n\n| Skill | Purpose |\n| ----- | ------- |\n| `reportlab-pdf` | Programmatic PDF generation — Claude writes ReportLab code directly to lay out a CV, invoice, report, or letter from structured data. |\n| `md-to-pdf` | Markdown → PDF — Claude copies a self-contained renderer (mistune + Platypus) into your project and converts a `.md` file to a styled PDF. |\n\n## When each skill triggers\n\n- `md-to-pdf` triggers on **markdown input or markdown intent** —\n  `.md` files, pasted markdown, phrases like \"convert markdown to PDF\" or\n  \"render this README as a PDF\".\n- `reportlab-pdf` triggers on **programmatic PDF generation** — phrases\n  like \"build a PDF CV\", \"generate a PDF invoice from this data\",\n  \"make a PDF report from this JSON\".\n\n## Scope\n\nThis plugin covers **creating** PDFs from structured content (markdown or\ndata). It does **not** cover reading, merging, splitting, or form-filling\nexisting PDFs; for those, use Claude Code's built-in `pdf` skill.\n\n## Installation\n\nFrom the [`yo61/claude-skills`](https://github.com/yo61/claude-skills)\nmarketplace:\n\n```text\n/plugin marketplace add yo61/claude-skills\n/plugin install reportlab-pdf@yo61-skills\n```\n\nReportLab and (for `md-to-pdf`) mistune are installed per the user's\nPython tooling. Following the project's standards, prefer `uv`:\n\n```bash\nuv add reportlab mistune          # in a uv project\nuv pip install reportlab mistune  # ad-hoc / no project\n```\n\nFor one-shot markdown conversions, you can skip installation entirely —\nthe bundled `md_to_pdf.py` carries\n[PEP 723](https://peps.python.org/pep-0723/) inline metadata and runs\nunder `uv run --no-project`.\n\n## What's in the plugin\n\n```\nreportlab-pdf/\n├── .claude-plugin/\n│   └── plugin.json\n├── README.md\n└── skills/\n    ├── reportlab-pdf/\n    │   └── SKILL.md\n    └── md-to-pdf/\n        ├── SKILL.md\n        └── scripts/\n            └── md_to_pdf.py\n```\n\n## License\n\n[MIT](../../LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyo61%2Fclaude-plugin-reportlab-pdf","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyo61%2Fclaude-plugin-reportlab-pdf","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyo61%2Fclaude-plugin-reportlab-pdf/lists"}