Logo
Explore Help
Register Sign In
wanwu/deer-flow
1
0
Fork 0
You've already forked deer-flow
mirror of https://gitee.com/wanwujie/deer-flow synced 2026-04-14 02:34:46 +08:00
Code Issues Packages Projects Releases Wiki Activity
Files
085dff8d29ca2fc4bbfcaa7b76eca81b0d8f089c
deer-flow/skills/public/pdf-processing/scripts/check_fillable_fields.py

13 lines
362 B
Python
Raw Normal View History

feat: add skills system for specialized agent workflows (#6) Implement a skills framework that enables specialized workflows for specific tasks (e.g., PDF processing, web page generation). Skills are discovered from the skills/ directory and automatically mounted in sandboxes with path mapping support. - Add SkillsConfig for configuring skills path and container mount point - Implement dynamic skill loading from SKILL.md files with YAML frontmatter - Add path mapping in LocalSandbox to translate container paths to local paths - Mount skills directory in AIO Docker sandbox containers - Update lead agent prompt to dynamically inject available skills - Add setup documentation and expand config.example.yaml Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-16 14:44:51 +08:00
import sys
from pypdf import PdfReader
# Script for Claude 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")
Reference in New Issue Copy Permalink
Powered by Gitea Version: 25.4.3 Page: 64ms Template: 0ms
English
Bahasa Indonesia Deutsch English Español Français Gaeilge Italiano Latviešu Magyar nyelv Nederlands Polski Português de Portugal Português do Brasil Suomi Svenska Türkçe Čeština Ελληνικά Български Русский Українська فارسی മലയാളം 日本語 简体中文 繁體中文(台灣) 繁體中文(香港) 한국어
Licenses API