Fill any PDF locally and place each value precisely in a visual editor. Use when the user wants to fill out a PDF form, enter data into a PDF, complete a tax/in
复制下面这句话,粘贴给 Claude Code、Codex、Cursor 等 AI 编程工具,它会读取安装说明并在你确认后完成安装。
请阅读 https://ai.atlankj.com/install/asset/gh-pdf-fill-studio-d8bb6e204724 ,按照其中的说明把「pdf-fill-studio」安装到你(当前 AI 工具)中。执行前先告诉我将运行的命令和写入的位置,等我确认。
查看 AI 将读取的安装说明正在读取 GitHub 原文…
内容来自 GitHub 原始文件,由原作者维护。在 GitHub 查看
Fill a PDF locally, place the values precisely, then export. Flat PDFs use a browser editor; AcroForm PDFs fill natively; the signature is always left blank for the user to sign.
The user gives you a PDF to fill (form, claim, tax/bank/insurance document).
pip install pdf-fill-studio (provides the pdf-fill-studio command).
From source instead: python3 -m venv .venv && .venv/bin/pip install -e ., then use
.venv/bin/pdf-fill-studio.
(Replace form.pdf and profile.json with the user's actual file paths.)
pdf-fill-studio form.pdf -o out/form_filled.pdf. It detects the form type.pdf-fill-studio form.pdf -o out/form_filled.pdf --profile profile.json.
Matched fields fill automatically; it prints "Needs manual input: [...]" for the rest. Ask the
user for each listed field, add them to the profile, re-run, then render to verify.out/. The user signs it themselves.Render and look: python -m pdf_fill_studio.render_page out/form_filled.pdf out/preview.
Check each value sits on its line / inside its cell, not too low or spilling outside. Apply
minimal coordinate corrections and re-bake if needed.