>- Use this skill whenever the user wants values written INTO an existing PDF form that lives in the connected SharePoint knowledge source — filling out, completing, populating, or submitting a fillable PDF (application, intake sheet, contract, government form) from data they supply, a spreadsheet row, or the conversation. Triggers include "fill out the job application form", "complete the intake form for [person]", "populate our standard NDA template", and "make this ready to send / non-editable" (flatten). The source form should be found via knowledge search; only ask the user to upload it if knowledge search turns up nothing plausible. different task), and do NOT use it on scanned/image-only PDFs that have no real fillable fields — those need OCR or manual overlay instead, which this skill explicitly detects and reports rather than silently failing.
npx skills add https://github.com/microsoft/cat-agent-skills --skill acroform-writer
Fill an existing PDF's real AcroForm fields with supplied data, and
optionally lock the result read-only so it's ready to send or file without
further edits. The goal is to write into the document's actual form fields —
never to paste text over a rendered page image, which drifts out of
alignment the moment a layout differs even slightly from what you assumed.
The blank fillable form (e.g. a job application, intake sheet, or contract
template) lives in the connected SharePoint knowledge source, not as a user
upload. Let the user refer to it naturally — by form name, topic, or
purpose ("the job application form", "our standard NDA template") — and use
those cues to search knowledge for the best-matching PDF. If exactly one
document is a clear match, proceed with it; only ask a brief clarifying
question when the match is genuinely ambiguous (multiple similarly-named
forms, or no clear candidate).
needs to return enough to *find* the right file — form fields and their
full structure can be split or omitted across retrieval chunks. Once the
right document is identified, fetch the complete PDF into the sandbox (the
SharePoint knowledge source handles this — let it pull the full file down)
before doing anything else. Never attempt to reconstruct or fill a form
from a partial/chunked view of it.
attached spreadsheet row, or a connector record — collect them into a flat
{field_name: value} JSON object. Do not guess field names at this stage;
that happens against the PDF's real fields in the next step.
python scripts/fill_form.py list <downloaded_form.pdf>
This prints every real form field (name, type, current value, and — for
checkboxes/radios/dropdowns — the valid states or options). Use this output
to map the data you collected in step 3 onto the PDF's actual field names.
If this reports no fields found (exit code 1), stop — the PDF has no
real AcroForm (commonly a scanned or flattened document already). Tell the
user this form isn't fillable this way and don't attempt to fake it by
drawing text over the page.
states valuesreported in step 4 (typically /Yes and /Off), not true/false.
options valuesverbatim.
not force it into the closest-sounding one — leave it out and flag it to
the user rather than guessing.
python scripts/fill_form.py fill <downloaded_form.pdf> <data.json> <output.pdf> [--flatten]
Add --flatten whenever the output is meant to be a finished, submission-
ready document (the common case) so the fields are marked read-only and
most viewers treat it as no longer editable. This is a best-effort lock,
not true flattening — the AcroForm and field definitions still exist in
the file, and a viewer that ignores the read-only flag could still edit
them. Leave --flatten off if the user explicitly wants to keep the
fields freely editable for further changes later.
fields_filled andany unmatched_fields — data keys that didn't correspond to a real field.
Always surface unmatched fields to the user by name; never fill silently
and claim full completion if something was dropped.
relevant, where it was sourced from in knowledge), how many fields were
filled, whether it was flattened, and any fields left blank or unmatched.
Do not paste the filled values back into the chat as a table — the file is
the deliverable.
first. Only fall back to asking the user directly for the file if knowledge
search turns up nothing plausible at all.
work from the complete downloaded PDF (step 2).
real form fields — detect that case (step 4) and say so plainly instead.
say so.
anything other than that field's own reported states/options.
--flatten is about locking the PDF read-only, not about changing any ofthe entered values — never alter data during that step.
Precise and matter-of-fact. State plainly what was filled, what wasn't, and
why — this skill is often used for documents with real consequences
(applications, contracts), so avoid overstating completeness.
Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. When Claude needs to work with professional documents (.docx files) for: (1) Creating new documents, (2) Modifying or editing content, (3) Working with tracked changes, (4) Adding comments, or any other document tasks
Comprehensive PDF manipulation toolkit for extracting text and tables, creating new PDFs, merging/splitting documents, and handling forms. When Claude needs to fill in a PDF form or programmatically process, generate, or analyze PDF documents at scale.
Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts, (4) Adding comments or speaker notes, or any other presentation tasks
Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.
Use this skill whenever the user wants to do anything with PDF files. This includes reading or extracting text/tables from PDFs, combining or merging multiple PDFs into one, splitting PDFs apart, rotating pages, adding watermarks, creating new PDFs, filling PDF forms, encrypting/decrypting PDFs, extracting images, and OCR on scanned PDFs to make them searchable. If the user mentions a .pdf file or asks to produce one, use this skill.
Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files). Triggers include: any mention of 'Word doc', 'word document', '.docx', or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when extracting or reorganizing content from .docx files, inserting or replacing images in documents, performing find-and-replace in Word files, working with tracked changes or comments, or converting content into a polished Word document. If the user asks for a 'report', 'memo', 'letter', 'template', or similar deliverable as a Word or .docx file, use this skill. Do NOT use for PDFs, spreadsheets, Google Docs, or general coding tasks unrelated to document generation.
Use this skill any time a .pptx file is involved in any way — as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from any .pptx file (even if the extracted content will be used elsewhere, like in an email or summary); editing, modifying, or updating existing presentations; combining or splitting slide files; working with templates, layouts, speaker notes, or comments. Trigger whenever the user mentions \"deck,\" \"slides,\" \"presentation,\" or references a .pptx filename, regardless of what they plan to do with the content afterward. If a .pptx file needs to be opened, created, or touched, use this skill.
Create and edit Obsidian Flavored Markdown with wikilinks, embeds, callouts, properties, and other Obsidian-specific syntax. Use when working with .md files in Obsidian, or when the user mentions wikilinks, callouts, frontmatter, tags, embeds, or Obsidian notes.
Take microsoft/acroform-writer from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.