Render complex content as shareable web pages for visual collaboration outside the chat.
When ideas get complex — PRs, architecture diagrams, documents — text threads break down. Pagedrop renders them as pages you can see, annotate, and iterate on.
- Agent writes self-contained HTML
- Uploads to GitHub Gist
- Serves via pagedrop.ai (CloudFront CDN)
- User annotates with inline comments
- Feedback exports as structured markdown
SKILL.md— Agent skill documentationannotate.js— Client-side annotation system (include in your HTML)
Include at the end of your HTML body:
<script src="https://pagedrop.ai/g/jalehman/3c031225cb70b73fe080f60f1b174cce"></script># Create HTML with annotation support
cat > /tmp/preview.html << 'EOF'
<!DOCTYPE html>
<html>
<head><title>My Doc</title></head>
<body>
<h1>Content here</h1>
<script src="https://pagedrop.ai/g/jalehman/3c031225cb70b73fe080f60f1b174cce"></script>
</body>
</html>
EOF
# Upload and get preview URL (secret gist, not listed on profile)
gh gist create /tmp/preview.html
# Gist: https://gist.github.com/USER/GIST_ID
# Pagedrop: https://pagedrop.ai/g/USER/GIST_IDPagedrop.ai is hosted on AWS (Martian Engineering):
- CloudFront CDN with edge functions
- Proxies GitHub Gist raw content
- Sets
Content-Type: text/htmlautomatically - 5-minute cache TTL
Your content stays in your GitHub Gist — pagedrop just serves it.
MIT