Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions PROJECT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
name: pdf-tool
status: aktiv
goal: Agent-freundliche CLI zum Prüfen, Erzeugen und Bearbeiten von PDF-Dateien — kleine komponierbare Befehle, JSON-Ausgabe, vorhersagbare Exit-Codes
next_step: keiner — stabiles Werkzeug, wird nur bei Bedarf angefasst. Kein offener Schritt ist hier die richtige Antwort, kein Versäumnis
updated: 2026-07-26
team: [Evren]
check: make check
---

Öffentliche Python-CLI unter [github.com/evrenverse/pdf-tool](https://github.com/evrenverse/pdf-tool), v0.1.0.
Teil derselben Werkzeugfamilie wie `xlsx-tool` und `docx-tool`: agent-native
Kommandozeilenwerkzeuge für Dokumentformate, jeweils mit portabler Agent Skill.

| Datei | Zweck |
| --- | --- |
| [`README.md`](README.md) | Einstieg, Befehle, Beispiele |
| [`AGENTS.md`](AGENTS.md) | verbindliche Regeln für Agents |
| [`CHANGELOG.md`](CHANGELOG.md) | Release-Historie |
| `Makefile` | `make check` = ruff format --check, ruff check, typecheck |

`TODO.md` und `LEDGER.md` gibt es noch nicht — sie entstehen beim ersten Eintrag,
nicht auf Vorrat.
11 changes: 7 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,17 @@ classifiers = [
"Topic :: Office/Business",
]
dependencies = [
"typer>=0.27.0",
"typer>=0.27.1",
"pdfplumber>=0.11.10",
"pypdf>=6.14.2",
"reportlab>=5.0.0",
"pypdfform>=5.5.2",
"pyhanko[image-support]>=0.35.2",
"pyhanko[image-support]>=0.36.2",
"pillow>=12.3.0",
"pdf2image>=1.17.0",
# Not imported directly — a security floor. pdfminer-six, pyhanko and
# pypdfform all pull it in, and 49.0.0 carries PYSEC-2026-3552.
"cryptography>=50.0.0",
]

[project.urls]
Expand Down Expand Up @@ -99,10 +102,10 @@ warn_unused_ignores = true
[dependency-groups]
dev = [
"build>=1.4",
"hypothesis>=6,<7",
"hypothesis>=6.165.2,<7",
"mypy>=2.3,<3",
"pip-audit>=2.10",
"pytest>=9.0",
"pytest-cov>=7.1",
"ruff>=0.15",
"ruff>=0.16.2",
]
Loading