feat: add more built-in skills

This commit is contained in:
qixinbo
2026-03-30 21:56:53 +08:00
parent 71e2b87583
commit fd58f5f690
188 changed files with 72932 additions and 0 deletions
@@ -0,0 +1,11 @@
import sys
from pypdf import PdfReader
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")