Set up SQLite schema and basic data access.
- feeds table (url, title, last_fetched)
- articles table (feed_id, url, title, content, published_at, embedding BLOB)
- topics table (name, centroid embedding)
- article_topics junction table
- FTS5 virtual table for full-text search
- Basic CRUD operations