+ some more skills

This commit is contained in:
m3tm3re
2026-01-19 19:37:38 +01:00
parent 924b3476f9
commit b39e61440b
37 changed files with 6363 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
import sys
from pypdf import PdfReader
# Script for the Coding Agent to run to determine whether a PDF has fillable form fields. See forms.md.
reader = PdfReader(sys.argv[1])
if (reader.get_fields()):
print("This PDF has fillable form fields")
else:
print("This PDF does not have fillable form fields; you will need to visually determine where to enter data")