Import papers from local PDF files into the library. Supports single file and directory imports.
Import papers from local PDF files into the library.
This skill allows you to:
# List local files
python -m skills.knowledge.local_files list
# Import single file
python -m skills.knowledge.local_files import /path/to/paper.pdf
# Import all from directory
python -m skills.knowledge.local_files import-dir /path/to/papers
Import a single PDF file into the library.
List all PDF files in the local articles directory.
Import all PDF files from a directory.
Default location: local_articles/ in the project root.
from skills.local_files import import_pdf, list_local_files
# List available files
files = list_local_files()
# Import a specific PDF
result = import_pdf("/path/to/paper.pdf")
# Import with custom title
result = import_pdf("/path/to/paper.pdf", title="My Paper Title", authors=["Author Name"])