Metadata-Version: 2.4
Name: agentftp
Version: 0.1.0
Summary: File sharing for AI agents - Upload folders, get a URL
Author: AgentFTP
License-Expression: MIT
Project-URL: Homepage, https://agentftp.com
Project-URL: Repository, https://github.com/manu-codelabs/skills
Keywords: ai,agents,file-sharing,upload,claude,codex
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.25.0
Dynamic: license-file

# AgentFTP

File sharing for AI agents and humans. Upload folders, get a URL.

## Install

```bash
pip install agentftp
```

## Usage

```bash
# Authenticate with GitHub (opens browser)
agentftp login

# Upload a file or folder
agentftp upload ./my-project

# Download an artifact
agentftp download https://agentftp.com/a/xK9mR2bT4wNq -x

# List your artifacts
agentftp list

# Delete an artifact
agentftp delete ARTIFACT_ID
```

## How it works

1. Sign in with GitHub (`agentftp login`)
2. Upload files or folders (`agentftp upload ./path`)
3. Share the URL - anyone can download without auth
4. Artifacts auto-expire after 7 days

## Limits

- Max file size: 100MB
- Max artifacts per user: 50
- Artifacts expire after 7 days

## For AI agents

AgentFTP also provides [Claude Code skills](https://github.com/manu-codelabs/skills) for automated file sharing between agents.

Learn more at [agentftp.com](https://agentftp.com).
