Skip to content

Commit bc37f1c

Browse files
committed
docs: rewrite agent-pdf README with usage details, privacy, and limits
1 parent f3b3ecc commit bc37f1c

File tree

1 file changed

+31
-4
lines changed

1 file changed

+31
-4
lines changed

agents/README.md

Lines changed: 31 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# agent-pdf
22

3-
Let AI agents edit and fill PDFs through [SimplePDF](https://simplepdf.com).
3+
Give any AI agent the ability to edit and fill PDFs. No API key, no server-side processing, free.
4+
5+
Powered by [SimplePDF](https://simplepdf.com). [Source code](https://github.com/SimplePDF/simplepdf-embed/tree/main/agents).
46

57
## Add the [edit-pdf SKILL](https://agents.simplepdf.com/SKILL.md)
68

@@ -26,7 +28,7 @@ curl "https://agents.simplepdf.com?url=https://example.com/form.pdf"
2628
curl -X POST https://agents.simplepdf.com -F file=@document.pdf
2729
```
2830

29-
Returns:
31+
Returns a ready-to-use editor link:
3032

3133
```json
3234
{
@@ -36,6 +38,31 @@ Returns:
3638
}
3739
```
3840

39-
## Source code
41+
The user opens the `url`, edits the PDF in-browser, and downloads the result. All client-side.
42+
43+
## Connect your SimplePDF account
44+
45+
Free to use as-is. Connect a [SimplePDF](https://simplepdf.com) account to add branding, webhooks, and storage:
46+
47+
```bash
48+
curl "https://agents.simplepdf.com?url=https://example.com/form.pdf&companyIdentifier=acme"
49+
```
50+
51+
With a `companyIdentifier`, you get:
52+
53+
- **Custom branding**: match the editor to your product ([guide](https://simplepdf.com/help/how-to/customize-the-pdf-editor-and-add-branding))
54+
- **Email & webhook notifications**: receive submissions in your backend ([guide](https://simplepdf.com/help/how-to/configure-webhooks-pdf-form-submissions))
55+
- **Bring Your Own Storage**: route PDFs to your S3 or Azure bucket ([guide](https://simplepdf.com/help/how-to/use-your-own-s3-bucket-storage-for-pdf-form-submissions))
56+
57+
## Privacy
58+
59+
- **URL input**: passed directly to the browser editor, never downloaded or stored by this service
60+
- **File upload**: stored for up to 24 hours, then automatically deleted
61+
- **Editing**: entirely client-side, edited documents never touch SimplePDF servers
62+
63+
## Limits
4064

41-
[github.com/SimplePDF/simplepdf-embed/tree/main/agents](https://github.com/SimplePDF/simplepdf-embed/tree/main/agents)
65+
- Max PDF size: 50 MB (file uploads)
66+
- Uploaded files expire after 24 hours
67+
- Rate limit: 30 req/min per IP
68+
- URLs must start with `https://`

0 commit comments

Comments
 (0)