AI-powered Pinboard bookmark manager with cloud-first storage and optional local database
smartpin installs the CLI tool pinit, which intelligently analyzes web pages and automatically saves bookmarks directly to your Pinboard.in account. By default, bookmarks are stored in the cloud via Pinboard's API for instant access anywhere. Optionally, you can maintain a local SQLite database for offline access and advanced bookmark management using the pinboard-tools library. Just provide a URL, and AI will extract the title, generate a concise description, and suggest relevant tags - no manual data entry required! π€β¨
- π€ Automatic metadata extraction - AI analyzes pages to extract title, description, and relevant tags
- π― Smart tagging - AI suggests contextually appropriate tags for better organization
- π Flexible AI models - Supports Claude, OpenAI, Gemini, and other LLM providers
- βοΈ Cloud-first storage - Bookmarks saved directly to Pinboard.in for instant access anywhere
- ποΈ Optional local database - Offline access and advanced bookmark management via pinboard-tools
- π Bidirectional sync - Keep local database and Pinboard.in perfectly synchronized
- π Reliable content fetching - Local HTTP client with BeautifulSoup for robust page parsing
- π» Rich terminal UI - Beautiful output with progress indicators and formatted results
- π§ͺ Dry-run mode - Preview extractions and sync operations without making changes
- π JSON output - Machine-readable format for scripting and automation
- π Privacy controls - Mark bookmarks as private or "to read" as needed
- π·οΈ Advanced tag management - Tag similarity detection and consolidation (via pinboard-tools)
# Clone the repository
git clone https://github.com/kevinmcmahon/smartpin.git
cd smartpin
# Install with uv (recommended)
uv pip install -e .
# Or install all dependencies
uv sync1. Get your Pinboard API token:
Visit https://pinboard.in/settings/password to find your API token.
2. Set up environment variables:
# Required: Pinboard authentication
export PINBOARD_API_TOKEN=your_username:your_token
# Required: AI provider API key (choose one based on your model)
export ANTHROPIC_API_KEY=your_key # For Claude models
# OR
export OPENAI_API_KEY=your_key # For GPT models
# OR see LLM docs for other providers3. Optional: Create a .env file for persistent configuration:
# Create in project directory as .env or at ~/.pinit/config
PINBOARD_API_TOKEN=your_username:your_token
# Choose your AI provider (set the appropriate key)
ANTHROPIC_API_KEY=your_anthropic_api_key # For Claude models
# OPENAI_API_KEY=your_openai_api_key # For GPT models
# Optional: specify model (defaults to claude-opus-4.5)
PINIT_MODEL=gpt-5 # or claude-opus-4.5, gpt-4.1, etc.# Add a bookmark with AI analysis (saves directly to Pinboard.in)
pinit add https://example.com
# Preview extraction without saving
pinit add https://example.com --dry-run
# Add private bookmark marked as "to read"
pinit add https://example.com --private --toread
# Sync all bookmarks between local database and Pinboard (optional)
pinit sync
# Get JSON output for scripting
pinit add https://example.com --jsonpinit add https://example.com/ai-software-developmentOutput:
ββ Extracted Bookmark ββββββββββββββββββββββββββββββββββ
β Title: How to Build Better Software with AI β
β URL: https://example.com/ai-software-development β
β Description: A comprehensive guide exploring how β
β artificial intelligence can enhance software β
β development workflows and code quality. β
β Tags: ai, software-development, programming, guide β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β Bookmark saved to Pinboard.in successfully!# Perform full bidirectional sync
pinit sync
# Preview sync operations without making changes
pinit sync --dry-run
# Check sync status and local database location
pinit config# Use a different AI model
pinit add https://example.com --model gpt-5
# Or use gpt-4.1-nano for faster/cheaper processing
pinit add https://example.com --model gpt-4.1-nano
# Check your configuration and database location
pinit config
# JSON output for automation
pinit add https://example.com --json | jq '.tags'Configuration is loaded in this priority order (highest to lowest):
- System environment variables
- Local
.envfile (current directory) - User configuration
~/.pinit/config
The application can optionally maintain a local SQLite database at ~/.pinit/bookmarks.db when using the pinit sync command. This local database:
- Provides offline access to your bookmarks
- Enables bidirectional sync with Pinboard.in
- Supports advanced features like tag similarity detection and consolidation
- Automatically initializes when you first run
pinit sync - Works seamlessly with the pinboard-tools ecosystem
Note: The pinit add command saves bookmarks directly to Pinboard.in and does not use the local database. Only the pinit sync command creates and maintains the local database.
The application uses the LLM library for flexible AI model integration:
- Default model:
claude-opus-4.5(can be changed viaPINIT_MODEL) - Supported providers: Anthropic Claude, OpenAI GPT, Google Gemini, and many others
- Easy model switching: Change models without code modifications
- Required API keys depend on your chosen provider:
ANTHROPIC_API_KEYfor Claude modelsOPENAI_API_KEYfor GPT modelsGEMINI_API_KEYfor Google Gemini- See LLM documentation for other providers
| Provider | Popular Models | Environment Variable |
|---|---|---|
| OpenAI | gpt-5, gpt-4.5-preview, o4-mini, o3, gpt-4.1 | OPENAI_API_KEY |
| Anthropic | claude-opus-4.5, claude-sonnet-4.5, claude-opus-4.1, claude-haiku-4.5 | ANTHROPIC_API_KEY |
| gemini-3-pro-preview, gemini-2.5-pro, gemini-2.5-flash, gemini-2.5-flash-lite | GEMINI_API_KEY | |
| Others | Various | See LLM docs |
Choose the model that best fits your needs:
- Speed: gpt-4.1-nano, claude-haiku-4.5, gemini-2.5-flash-lite
- Quality: gpt-5, claude-opus-4.5, gemini-3-pro-preview
- Cost: gpt-4.1-nano, claude-haiku-4.5, gemini-2.5-flash-lite
# Install development dependencies
make dev
# Run all quality checks
make check
# Individual commands
make lint # Run Ruff linting
make typecheck # Run MyPy type checking
make format # Auto-format code
make clean # Remove cache filessmartpin installs the CLI tool pinit, which follows modern Python best practices with:
- Type hints throughout the codebase
- Comprehensive error handling with user-friendly messages
- Clean separation of concerns between CLI, AI processing, and API interactions
- Rich terminal formatting for beautiful output
- Configurable AI models via the LLM library abstraction
PinboardBookmarkExtractor- Interfaces with AI models to analyze web pagespinboard_client- Wrapper functions for Pinboard API operations and sync managementcli- Click-based command interface with Rich formatting- Local SQLite database - Managed via pinboard-tools for advanced bookmark operations
- Bidirectional sync - Keeps local and remote bookmarks synchronized
- Jinja2 templates - Customizable prompts for AI extraction
- CLI Framework:
click- Command-line interface creation - Terminal UI:
rich- Beautiful terminal formatting - AI Integration:
llm- Universal LLM library for multiple providers - Bookmark Management:
pinboard-tools- Local database and sync capabilities - API Client:
pinboard- Official Pinboard API client for direct operations - Configuration:
python-dotenv- Environment variable management - Templating:
jinja2- Prompt template rendering
- pinboard-tools: Local SQLite database, bidirectional sync, advanced bookmark management
- llm: Support for Claude, OpenAI, Gemini, and other AI providers
- rich: Beautiful terminal output with progress indicators and formatting
Contributions are welcome! Please:
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Run quality checks (
make check) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.
- Built with the excellent LLM library by Simon Willison
- Database and sync capabilities powered by pinboard-tools
- Terminal UI enhanced by Rich
- Pinboard API by Pinboard