By jatuma
Fill PDF forms automatically using stored personal and family information.
Claude Code plugin for filling PDF forms with stored personal/family data. Designed for Czech school forms but works with any PDF.
Clone this repo and add it as a local plugin in Claude Code:
git clone https://github.com/<your-username>/form-filler-plugin.git
Then add the cloned directory as a local plugin in Claude Code Settings → Plugins → Add local plugin.
Claude Code will detect .claude-plugin/plugin.json and register the pdf-form-filler skill automatically.
Drop a PDF and say "fill this for my son" or "fill with my info". Claude asks for missing data once and remembers it.
Stored at ~/.config/pdf-form-filler/personal_data.json by default. To use a synced location (Dropbox, OneDrive, iCloud, etc.), set the PDF_FORM_FILLER_DATA environment variable — add it to your shell profile and Claude Code will pick it up automatically:
export PDF_FORM_FILLER_DATA="$HOME/Dropbox/personal_data.json"
Manage data with (replace $PLUGIN_ROOT with the path to this directory):
python "$PLUGIN_ROOT/skills/pdf-form-filler/scripts/manage_data.py" show # view all
python "$PLUGIN_ROOT/skills/pdf-form-filler/scripts/manage_data.py" show --member child_1 # view one member
python "$PLUGIN_ROOT/skills/pdf-form-filler/scripts/manage_data.py" add-member --id child_2 --role child
python "$PLUGIN_ROOT/skills/pdf-form-filler/scripts/manage_data.py" batch-update --member child_1 --updates '{"first_name":"Jan"}'
form-filler-plugin/
├── .claude-plugin/
│ └── plugin.json # Plugin manifest
├── skills/
│ └── pdf-form-filler/
│ ├── SKILL.md # Skill instructions
│ ├── scripts/
│ │ └── manage_data.py # Data management CLI
│ └── references/
│ └── personal_data_template.json
└── README.md
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
npx claudepluginhub jatuma/form-filler-plugin --plugin pdf-form-fillerAnthropic's production PDF skill — extract text and tables, fill forms and generate PDFs. Essential for financial statements, contracts and scanned invoices.
Заполнение Word шаблонов (договоры, формы) по данным из контекста
View, annotate, and sign PDFs in a live interactive viewer. Mark up contracts, fill forms with visual feedback, stamp approvals, and place signatures — then download the annotated copy.
Professional document processing suite: 3 comprehensive skills for Word (.docx), Excel (.xlsx), and PDF files - create, edit, analyse, and process documents with advanced features like tracked changes, forms, tables, OCR, and formulas
Official OpenAI skills for PDF, Word, PowerPoint, and Excel document processing.
Use when tasks involve reading, creating, or reviewing PDF files where rendering and layout matter; prefer visual checks by rendering pages (Poppler) and use Python tools such as `reportlab`, `pdfplumber`, and `pypdf` for generation and extraction. Originally from OpenAI's curated skills catalog.