Track and organize your Claude.ai artifacts across all devices
Platforms • Features • Installation • Development
Artifact Manager provides a unified way to save, organize, and sync Claude.ai artifacts (code, documents, diagrams) across your devices. Never lose track of that useful code snippet or document again.
| Platform | Status | Description |
|---|---|---|
| Chrome Extension | Capture artifacts directly from claude.ai | |
| Safari Extension | Native Safari support for macOS/iOS | |
| macOS App | Native SwiftUI app with SwiftData | |
| Web App | Cloudflare Worker with D1 database | |
| Mobile | React Native/Expo app |
- One-Click Save - Capture artifacts directly from Claude.ai conversations
- Cross-Platform Sync - Access your artifacts from any device
- Smart Organization - Collections, tags, and favorites
- Metadata Tracking - Claude model, conversation URL, framework, language
- Search - Find artifacts by name, type, or content
- Export - Download artifacts in their original format
Chrome/Edge/Brave:
- Download the latest release from Releases
- Go to
chrome://extensions - Enable "Developer mode"
- Click "Load unpacked" and select the
chrome-extensionfolder
Safari:
- Open
safari-extension/Artifact Manager.xcodeprojin Xcode - Build and run
- Enable the extension in Safari Preferences > Extensions
cd macos
open "Artifact Manager.xcodeproj"
# Press Cmd+R to build and runcd web
npm install
wrangler dev # Local development
wrangler deploy # Deploy to Cloudflare┌─────────────────┐ ┌──────────────────┐ ┌─────────────┐
│ Browser │ │ Web App │ │ macOS App │
│ Extension │────▶│ (Cloudflare D1) │◀────│ (SwiftData) │
└─────────────────┘ └──────────────────┘ └─────────────┘
│ │
└────────────────────────┘
Artifact Sync
- Node.js 18+
- Xcode 15+ (for macOS/Safari)
- Wrangler CLI (
npm install -g wrangler)
# Clone the repo
git clone https://github.com/Aventerica89/artifact-manager.git
cd artifact-manager
# Run tests (macOS)
cd macos && swift test
# Start web app locally
cd web && wrangler dev
# Load extension in Chrome
# Go to chrome://extensions > Load unpacked > select chrome-extension/MIT