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.
Instructions
- Find the source PDF via knowledge search — do not ask the user to upload it.
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).
- Pull the FULL document, not retrieved chunks. A knowledge search only
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.
- Collect the values to fill. These come from the conversation, an
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.
- Always list fields first. Run:
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.
- Match data to fields carefully.
- Checkboxes/radio buttons must be set to one of the exact
states values
reported in step 4 (typically /Yes and /Off), not true/false.
- Dropdown/choice fields must use one of the reported
options values
verbatim.
- If a value you were given doesn't obviously map to any listed field, do
not force it into the closest-sounding one — leave it out and flag it to
the user rather than guessing.
- Fill (and lock read-only, if the result should be final):
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.
- Check the JSON result the script prints. It reports
fields_filled and
any 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.
- Hand back the file with a short, honest recap: which form (and, if
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.
Guardrails
- Never ask the user to upload the blank form — find it via knowledge search
first. Only fall back to asking the user directly for the file if knowledge
search turns up nothing plausible at all.
- Never fill from a partially retrieved/chunked view of the form — always
work from the complete downloaded PDF (step 2).
- Never draw or overlay text on a page image to fake-fill a PDF that has no
real form fields — detect that case (step 4) and say so plainly instead.
- Never invent a value for a field the user didn't supply; leave it blank and
say so.
- Never force a supplied value into a checkbox/radio/dropdown field using
anything other than that field's own reported states/options.
- Don't silently drop unmatched data — always report it.
--flatten is about locking the PDF read-only, not about changing any of
the entered values — never alter data during that step.
Tone
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.
Run this — do not improvise
This capability's deterministic implementation is a RAPP single-file agent, linked beside this file as acroform_writer_agent.py and embedded as the fenced Python below (sha256 575665366a0181a5…; a byte-exact copy is also vaulted in the capsule comment at the end of this file). On a host with sandbox execution, run the linked file directly — if it is missing, write the fence contents verbatim to acroform_writer_agent.py first:
python3 acroform_writer_agent.py '{"key": "value"}' # arguments as one JSON object
echo '{"key": "value"}' | python3 acroform_writer_agent.py # or on stdin
python3 acroform_writer_agent.py --tool # emit the JSON tool contract
Treat stdout as a tool result. If it reports missing or unresolved inputs, stop and collect them. If it returns steps, execute those steps in order exactly as returned; if it returns instructions, follow them with the supplied inputs. Otherwise use the result verbatim. Do not invent behavior beyond that output. On a host without code execution, treat the Parameters schema and the code below as the exact specification and never paraphrase a step. Never edit inside the generated markers; a converter-equipped host can instead restore the original file checksum-verified with the installed rapp-agent-converter/scripts/toast.py convert SKILL.md --to agent.
"""AcroformWriter -- 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.
Generated by the rapp skill from acroform-writer. The RCI capsule at the bottom of this file carries the full original; `toast.py convert` restores it byte-exact."""
import json
import re
import sys
try:
from agents.basic_agent import BasicAgent
except ImportError: # running OUTSIDE a brainstem -- stay executable anyway.
class BasicAgent: # noqa: D101 - minimal stand-in, same contract
def __init__(self, name=None, metadata=None):
if name:
self.name = name
if metadata:
self.metadata = metadata
def perform(self, **kwargs):
return "Not implemented."
def system_context(self):
return None
def to_tool(self):
return {"type": "function", "function": {
"name": self.name,
"description": self.metadata.get("description", ""),
"parameters": self.metadata.get("parameters", {})}}
# The procedural layer, verbatim from the source capability.
INSTRUCTIONS = 'Fill an existing PDF's real AcroForm fields with supplied data, and\noptionally lock the result read-only so it's ready to send or file without\nfurther edits. The goal is to write into the document's actual form fields —\nnever to paste text over a rendered page image, which drifts out of\nalignment the moment a layout differs even slightly from what you assumed.\n\n## Instructions\n1. **Find the source PDF via knowledge search — do not ask the user to upload it.**\n The blank fillable form (e.g. a job application, intake sheet, or contract\n template) lives in the connected SharePoint knowledge source, not as a user\n upload. Let the user refer to it naturally — by form name, topic, or\n purpose ("the job application form", "our standard NDA template") — and use\n those cues to search knowledge for the best-matching PDF. If exactly one\n document is a clear match, proceed with it; only ask a brief clarifying\n question when the match is genuinely ambiguous (multiple similarly-named\n forms, or no clear candidate).\n2. **Pull the FULL document, not retrieved chunks.** A knowledge search only\n needs to return enough to *find* the right file — form fields and their\n full structure can be split or omitted across retrieval chunks. Once the\n right document is identified, fetch the complete PDF into the sandbox (the\n SharePoint knowledge source handles this — let it pull the full file down)\n before doing anything else. Never attempt to reconstruct or fill a form\n from a partial/chunked view of it.\n3. **Collect the values to fill.** These come from the conversation, an\n attached spreadsheet row, or a connector record — collect them into a flat\n `{field_name: value}` JSON object. Do not guess field names at this stage;\n that happens against the PDF's real fields in the next step.\n4. **Always list fields first.** Run:\n ```\n python scripts/fill_form.py list <downloaded_form.pdf>\n ```\n This prints every real form field (name, type, current value, and — for\n checkboxes/radios/dropdowns — the valid states or options). Use this output\n to map the data you collected in step 3 onto the PDF's actual field names.\n **If this reports no fields found (exit code 1), stop** — the PDF has no\n real AcroForm (commonly a scanned or flattened document already). Tell the\n user this form isn't fillable this way and don't attempt to fake it by\n drawing text over the page.\n5. **Match data to fields carefully.**\n - Checkboxes/radio buttons must be set to one of the exact `states` values\n reported in step 4 (typically `/Yes` and `/Off`), not `true`/`false`.\n - Dropdown/choice fields must use one of the reported `options` values\n verbatim.\n - If a value you were given doesn't obviously map to any listed field, do\n not force it into the closest-sounding one — leave it out and flag it to\n the user rather than guessing.\n6. **Fill (and lock read-only, if the result should be final):**\n ```\n python scripts/fill_form.py fill <downloaded_form.pdf> <data.json> <output.pdf> [--flatten]\n ```\n Add `--flatten` whenever the output is meant to be a finished, submission-\n ready document (the common case) so the fields are marked read-only and\n most viewers treat it as no longer editable. This is a best-effort lock,\n not true flattening — the AcroForm and field definitions still exist in\n the file, and a viewer that ignores the read-only flag could still edit\n them. Leave `--flatten` off if the user explicitly wants to keep the\n fields freely editable for further changes later.\n7. **Check the JSON result the script prints.** It reports `fields_filled` and\n any `unmatched_fields` — data keys that didn't correspond to a real field.\n Always surface unmatched fields to the user by name; never fill silently\n and claim full completion if something was dropped.\n8. **Hand back the file with a short, honest recap:** which form (and, if\n relevant, where it was sourced from in knowledge), how many fields were\n filled, whether it was flattened, and any fields left blank or unmatched.\n Do not paste the filled values back into the chat as a table — the file is\n the deliverable.\n\n## Guardrails\n- Never ask the user to upload the blank form — find it via knowledge search\n first. Only fall back to asking the user directly for the file if knowledge\n search turns up nothing plausible at all.\n- Never fill from a partially retrieved/chunked view of the form — always\n work from the complete downloaded PDF (step 2).\n- Never draw or overlay text on a page image to fake-fill a PDF that has no\n real form fields — detect that case (step 4) and say so plainly instead.\n- Never invent a value for a field the user didn't supply; leave it blank and\n say so.\n- Never force a supplied value into a checkbox/radio/dropdown field using\n anything other than that field's own reported states/options.\n- Don't silently drop unmatched data — always report it.\n- `--flatten` is about locking the PDF read-only, not about changing any of\n the entered values — never alter data during that step.\n\n## Tone\nPrecise and matter-of-fact. State plainly what was filled, what wasn't, and\nwhy — this skill is often used for documents with real consequences\n(applications, contracts), so avoid overstating completeness.'
# Ordered commands lifted verbatim from the capability's own documentation.
STEPS = []
class AcroformWriterAgent(BasicAgent):
def __init__(self):
self.name = 'AcroformWriter'
self.metadata = {
"name": "AcroformWriter",
"description": "Use this skill whenever the user wants values written INTO an existing PDF form that lives in the connected SharePoint knowledge source \u2014 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 \u2014 those need OCR or manual overlay instead, which this skill explicitly detects and reports rather than silently failing.",
"parameters": {
"type": "object",
"properties": {},
"required": []
}
}
super().__init__(name=self.name, metadata=self.metadata)
def perform(self, **kwargs): # toaster:generated-perform
return json.dumps({"status": "ok", "instructions": INSTRUCTIONS,
"inputs": kwargs,
"note": "Prose-only capability: follow INSTRUCTIONS "
"with the given inputs."}, indent=2)
if __name__ == "__main__":
# echo '{"arg": "value"}' | python3 acroform_writer_agent.py
# python3 acroform_writer_agent.py '{"arg": "value"}'
# python3 acroform_writer_agent.py --tool # emit the JSON tool contract
_a = sys.argv[1:]
if _a and _a[0] == "--tool":
print(json.dumps(AcroformWriterAgent().to_tool(), indent=2))
else:
_raw = _a[0] if _a else (sys.stdin.read().strip() or "{}")
print(AcroformWriterAgent().perform(**json.loads(_raw)))
# rci-capsule:v1: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
1---2name: acroform-writer3description: 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.4---56Fill an existing PDF's real AcroForm fields with supplied data, and7optionally lock the result read-only so it's ready to send or file without8further edits. The goal is to write into the document's actual form fields —9never to paste text over a rendered page image, which drifts out of10alignment the moment a layout differs even slightly from what you assumed.1112## Instructions131. **Find the source PDF via knowledge search — do not ask the user to upload it.**14 The blank fillable form (e.g. a job application, intake sheet, or contract15 template) lives in the connected SharePoint knowledge source, not as a user16 upload. Let the user refer to it naturally — by form name, topic, or17 purpose ("the job application form", "our standard NDA template") — and use18 those cues to search knowledge for the best-matching PDF. If exactly one19 document is a clear match, proceed with it; only ask a brief clarifying20 question when the match is genuinely ambiguous (multiple similarly-named21 forms, or no clear candidate).222. **Pull the FULL document, not retrieved chunks.** A knowledge search only23 needs to return enough to *find* the right file — form fields and their24 full structure can be split or omitted across retrieval chunks. Once the25 right document is identified, fetch the complete PDF into the sandbox (the26 SharePoint knowledge source handles this — let it pull the full file down)27 before doing anything else. Never attempt to reconstruct or fill a form28 from a partial/chunked view of it.293. **Collect the values to fill.** These come from the conversation, an30 attached spreadsheet row, or a connector record — collect them into a flat31 `{field_name: value}` JSON object. Do not guess field names at this stage;32 that happens against the PDF's real fields in the next step.334. **Always list fields first.** Run:34 ```35 python scripts/fill_form.py list <downloaded_form.pdf>36 ```37 This prints every real form field (name, type, current value, and — for38 checkboxes/radios/dropdowns — the valid states or options). Use this output39 to map the data you collected in step 3 onto the PDF's actual field names.40 **If this reports no fields found (exit code 1), stop** — the PDF has no41 real AcroForm (commonly a scanned or flattened document already). Tell the42 user this form isn't fillable this way and don't attempt to fake it by43 drawing text over the page.445. **Match data to fields carefully.**45 - Checkboxes/radio buttons must be set to one of the exact `states` values46 reported in step 4 (typically `/Yes` and `/Off`), not `true`/`false`.47 - Dropdown/choice fields must use one of the reported `options` values48 verbatim.49 - If a value you were given doesn't obviously map to any listed field, do50 not force it into the closest-sounding one — leave it out and flag it to51 the user rather than guessing.526. **Fill (and lock read-only, if the result should be final):**53 ```54 python scripts/fill_form.py fill <downloaded_form.pdf> <data.json> <output.pdf> [--flatten]55 ```56 Add `--flatten` whenever the output is meant to be a finished, submission-57 ready document (the common case) so the fields are marked read-only and58 most viewers treat it as no longer editable. This is a best-effort lock,59 not true flattening — the AcroForm and field definitions still exist in60 the file, and a viewer that ignores the read-only flag could still edit61 them. Leave `--flatten` off if the user explicitly wants to keep the62 fields freely editable for further changes later.637. **Check the JSON result the script prints.** It reports `fields_filled` and64 any `unmatched_fields` — data keys that didn't correspond to a real field.65 Always surface unmatched fields to the user by name; never fill silently66 and claim full completion if something was dropped.678. **Hand back the file with a short, honest recap:** which form (and, if68 relevant, where it was sourced from in knowledge), how many fields were69 filled, whether it was flattened, and any fields left blank or unmatched.70 Do not paste the filled values back into the chat as a table — the file is71 the deliverable.7273## Guardrails74- Never ask the user to upload the blank form — find it via knowledge search75 first. Only fall back to asking the user directly for the file if knowledge76 search turns up nothing plausible at all.77- Never fill from a partially retrieved/chunked view of the form — always78 work from the complete downloaded PDF (step 2).79- Never draw or overlay text on a page image to fake-fill a PDF that has no80 real form fields — detect that case (step 4) and say so plainly instead.81- Never invent a value for a field the user didn't supply; leave it blank and82 say so.83- Never force a supplied value into a checkbox/radio/dropdown field using84 anything other than that field's own reported states/options.85- Don't silently drop unmatched data — always report it.86- `--flatten` is about locking the PDF read-only, not about changing any of87 the entered values — never alter data during that step.8889## Tone90Precise and matter-of-fact. State plainly what was filled, what wasn't, and91why — this skill is often used for documents with real consequences92(applications, contracts), so avoid overstating completeness.9394<!-- toaster:generated:begin -->9596## Run this — do not improvise9798This capability's deterministic implementation is a RAPP single-file agent, linked beside this file as `acroform_writer_agent.py` and embedded as the fenced Python below (sha256 575665366a0181a5…; a byte-exact copy is also vaulted in the capsule comment at the end of this file). On a host with sandbox execution, run the linked file directly — if it is missing, write the fence contents verbatim to `acroform_writer_agent.py` first:99100```bash101python3 acroform_writer_agent.py '{"key": "value"}' # arguments as one JSON object102echo '{"key": "value"}' | python3 acroform_writer_agent.py # or on stdin103python3 acroform_writer_agent.py --tool # emit the JSON tool contract104```105106Treat stdout as a tool result. If it reports missing or unresolved inputs, stop and collect them. If it returns `steps`, execute those steps in order exactly as returned; if it returns `instructions`, follow them with the supplied inputs. Otherwise use the result verbatim. Do not invent behavior beyond that output. On a host without code execution, treat the Parameters schema and the code below as the exact specification and never paraphrase a step. Never edit inside the generated markers; a converter-equipped host can instead restore the original file checksum-verified with the installed `rapp-agent-converter/scripts/toast.py convert SKILL.md --to agent`.107108````python # rapp:deterministic109"""AcroformWriter -- 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.110111Generated by the rapp skill from acroform-writer. The RCI capsule at the bottom of this file carries the full original; `toast.py convert` restores it byte-exact."""112113import json114import re115import sys116117try:118 from agents.basic_agent import BasicAgent119except ImportError: # running OUTSIDE a brainstem -- stay executable anyway.120 class BasicAgent: # noqa: D101 - minimal stand-in, same contract121 def __init__(self, name=None, metadata=None):122 if name:123 self.name = name124 if metadata:125 self.metadata = metadata126127 def perform(self, **kwargs):128 return "Not implemented."129130 def system_context(self):131 return None132133 def to_tool(self):134 return {"type": "function", "function": {135 "name": self.name,136 "description": self.metadata.get("description", ""),137 "parameters": self.metadata.get("parameters", {})}}138139# The procedural layer, verbatim from the source capability.140INSTRUCTIONS = 'Fill an existing PDF's real AcroForm fields with supplied data, and\noptionally lock the result read-only so it's ready to send or file without\nfurther edits. The goal is to write into the document's actual form fields —\nnever to paste text over a rendered page image, which drifts out of\nalignment the moment a layout differs even slightly from what you assumed.\n\n## Instructions\n1. **Find the source PDF via knowledge search — do not ask the user to upload it.**\n The blank fillable form (e.g. a job application, intake sheet, or contract\n template) lives in the connected SharePoint knowledge source, not as a user\n upload. Let the user refer to it naturally — by form name, topic, or\n purpose ("the job application form", "our standard NDA template") — and use\n those cues to search knowledge for the best-matching PDF. If exactly one\n document is a clear match, proceed with it; only ask a brief clarifying\n question when the match is genuinely ambiguous (multiple similarly-named\n forms, or no clear candidate).\n2. **Pull the FULL document, not retrieved chunks.** A knowledge search only\n needs to return enough to *find* the right file — form fields and their\n full structure can be split or omitted across retrieval chunks. Once the\n right document is identified, fetch the complete PDF into the sandbox (the\n SharePoint knowledge source handles this — let it pull the full file down)\n before doing anything else. Never attempt to reconstruct or fill a form\n from a partial/chunked view of it.\n3. **Collect the values to fill.** These come from the conversation, an\n attached spreadsheet row, or a connector record — collect them into a flat\n `{field_name: value}` JSON object. Do not guess field names at this stage;\n that happens against the PDF's real fields in the next step.\n4. **Always list fields first.** Run:\n ```\n python scripts/fill_form.py list <downloaded_form.pdf>\n ```\n This prints every real form field (name, type, current value, and — for\n checkboxes/radios/dropdowns — the valid states or options). Use this output\n to map the data you collected in step 3 onto the PDF's actual field names.\n **If this reports no fields found (exit code 1), stop** — the PDF has no\n real AcroForm (commonly a scanned or flattened document already). Tell the\n user this form isn't fillable this way and don't attempt to fake it by\n drawing text over the page.\n5. **Match data to fields carefully.**\n - Checkboxes/radio buttons must be set to one of the exact `states` values\n reported in step 4 (typically `/Yes` and `/Off`), not `true`/`false`.\n - Dropdown/choice fields must use one of the reported `options` values\n verbatim.\n - If a value you were given doesn't obviously map to any listed field, do\n not force it into the closest-sounding one — leave it out and flag it to\n the user rather than guessing.\n6. **Fill (and lock read-only, if the result should be final):**\n ```\n python scripts/fill_form.py fill <downloaded_form.pdf> <data.json> <output.pdf> [--flatten]\n ```\n Add `--flatten` whenever the output is meant to be a finished, submission-\n ready document (the common case) so the fields are marked read-only and\n most viewers treat it as no longer editable. This is a best-effort lock,\n not true flattening — the AcroForm and field definitions still exist in\n the file, and a viewer that ignores the read-only flag could still edit\n them. Leave `--flatten` off if the user explicitly wants to keep the\n fields freely editable for further changes later.\n7. **Check the JSON result the script prints.** It reports `fields_filled` and\n any `unmatched_fields` — data keys that didn't correspond to a real field.\n Always surface unmatched fields to the user by name; never fill silently\n and claim full completion if something was dropped.\n8. **Hand back the file with a short, honest recap:** which form (and, if\n relevant, where it was sourced from in knowledge), how many fields were\n filled, whether it was flattened, and any fields left blank or unmatched.\n Do not paste the filled values back into the chat as a table — the file is\n the deliverable.\n\n## Guardrails\n- Never ask the user to upload the blank form — find it via knowledge search\n first. Only fall back to asking the user directly for the file if knowledge\n search turns up nothing plausible at all.\n- Never fill from a partially retrieved/chunked view of the form — always\n work from the complete downloaded PDF (step 2).\n- Never draw or overlay text on a page image to fake-fill a PDF that has no\n real form fields — detect that case (step 4) and say so plainly instead.\n- Never invent a value for a field the user didn't supply; leave it blank and\n say so.\n- Never force a supplied value into a checkbox/radio/dropdown field using\n anything other than that field's own reported states/options.\n- Don't silently drop unmatched data — always report it.\n- `--flatten` is about locking the PDF read-only, not about changing any of\n the entered values — never alter data during that step.\n\n## Tone\nPrecise and matter-of-fact. State plainly what was filled, what wasn't, and\nwhy — this skill is often used for documents with real consequences\n(applications, contracts), so avoid overstating completeness.'141142# Ordered commands lifted verbatim from the capability's own documentation.143STEPS = []144145146class AcroformWriterAgent(BasicAgent):147 def __init__(self):148 self.name = 'AcroformWriter'149 self.metadata = {150 "name": "AcroformWriter",151 "description": "Use this skill whenever the user wants values written INTO an existing PDF form that lives in the connected SharePoint knowledge source \u2014 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 \u2014 those need OCR or manual overlay instead, which this skill explicitly detects and reports rather than silently failing.",152 "parameters": {153 "type": "object",154 "properties": {},155 "required": []156 }157 }158 super().__init__(name=self.name, metadata=self.metadata)159160 def perform(self, **kwargs): # toaster:generated-perform161 return json.dumps({"status": "ok", "instructions": INSTRUCTIONS,162 "inputs": kwargs,163 "note": "Prose-only capability: follow INSTRUCTIONS "164 "with the given inputs."}, indent=2)165166if __name__ == "__main__":167 # echo '{"arg": "value"}' | python3 acroform_writer_agent.py168 # python3 acroform_writer_agent.py '{"arg": "value"}'169 # python3 acroform_writer_agent.py --tool # emit the JSON tool contract170 _a = sys.argv[1:]171 if _a and _a[0] == "--tool":172 print(json.dumps(AcroformWriterAgent().to_tool(), indent=2))173 else:174 _raw = _a[0] if _a else (sys.stdin.read().strip() or "{}")175 print(AcroformWriterAgent().perform(**json.loads(_raw)))176177# rci-capsule:v1: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178````179180<!-- toaster:generated:end -->181182<!-- rci-capsule:v1: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…(truncated)