sqlite

Tag

Cards List
#sqlite

Extralite 3.0.0 Released

Lobsters Hottest · 2026-07-03 Cached

Extralite 3.0.0, a fast Ruby SQLite wrapper, introduces object graph transforms and modern defaults for database interaction.

0 favorites 0 likes
#sqlite

Show HN: ctx – Search the coding agent history already on your machine

Hacker News Top · 2026-07-02 Cached

ctx is an open-source CLI tool that indexes coding agent sessions locally into SQLite, enabling fast search of past discussions, decisions, and failed attempts to save tokens and improve agent performance.

0 favorites 0 likes
#sqlite

@huihoo: In this discussion about SQLite, you can also dive deeper into SQLite. WeChat's mobile database framework WCDB built on SQLite and SQLCipher https://github.com/Tencent/wcdb DB Browser for…

X AI KOLs Timeline · 2026-07-02 Cached

Introduces WeChat's mobile database framework WCDB built on SQLite and SQLCipher, and recommends related learning resources.

0 favorites 0 likes
#sqlite

Hunting a 16-year-old SQLite WAL bug with TLA+

Hacker News Top · 2026-06-30 Cached

Canonical's dqlite team used TLA+ to model and understand a 16-year-old SQLite bug in WAL checkpointing that can cause database corruption, then verified whether dqlite is affected.

0 favorites 0 likes
#sqlite

Show HN: PMB – local memory for coding agents that shows if it is used

Hacker News Top · 2026-06-29 Cached

PMB is a local-first memory system for AI coding agents that stores decisions, lessons, and project facts in a SQLite file on your disk. It integrates with Claude Code, Cursor, Codex, and Zed via MCP, providing fast recall without cloud dependencies.

0 favorites 0 likes
#sqlite

@itsharmanjot: FOUR AI CLIs ARE NOW TALKING TO EACH OTHER THROUGH A SINGLE SQLITE FILE. Claude Code. Gemini CLI. Codex CLI. OpenCode. …

X AI KOLs Timeline · 2026-06-29 Cached

Squad is an open-source Rust tool that lets four major AI CLIs (Claude Code, Gemini CLI, Codex CLI, OpenCode) collaborate on the same codebase through a single SQLite file, with no daemon or server required.

0 favorites 0 likes
#sqlite

@NFTCPS: Multiple AI agents working together? Finally someone pulled it off with the most down-to-earth approach. squad, a command-line tool written in Rust, lets Claude Code, Gemini CLI, Codex, and OpenCode — these CLI agents — sit at the same table and collaborate.…

X AI KOLs Timeline · 2026-06-29 Cached

squad is a command-line tool written in Rust that enables collaboration among multiple AI CLI agents (such as Claude Code, Gemini CLI, etc.) via shell commands and an SQLite database, without requiring a background daemon.

0 favorites 0 likes
#sqlite

How to corrupt an SQLite database file

Hacker News Top · 2026-06-26 Cached

This article from SQLite's official documentation explains the various ways an SQLite database can become corrupted, such as file overwrites by rogue processes, misuse of file descriptors, and unsafe backup procedures, along with mitigation strategies.

0 favorites 0 likes
#sqlite

SQLite improving performance with pre-sort

Hacker News Top · 2026-06-26 Cached

This article demonstrates that pre-sorting random data before inserting into SQLite can improve insert performance by 2-3x, by leveraging the B+ Tree's ordered nature and reducing page splits.

0 favorites 0 likes
#sqlite

@QingQ77: A desktop application based on Tauri 2 + React + Rust + SQLite that automatically converts long videos or audio into vertical short videos and uses AI to evaluate the viral potential of clips. https://github.com/JayWebtech/autoshorts……

X AI KOLs Timeline · 2026-06-25 Cached

AutoShorts is an open-source desktop application based on Tauri 2 + React + Rust + SQLite that can automatically convert long videos or audio into vertical short videos, and uses AI (supporting DeepSeek, Claude, or local Ollama) to evaluate the viral potential of clips. It supports multiple platforms.

0 favorites 0 likes
#sqlite

simonw/browser-compat-db

Simon Willison's Blog · 2026-06-24 Cached

Simon Willison created a tool to convert Mozilla's browser compatibility data into a downloadable SQLite database, hosted with open CORS headers for easy exploration via Datasette Lite.

0 favorites 0 likes
#sqlite

I'm building an ambient memory agent that watches my screen all day, and its memory lives in SQLite instead of the model. Come tell me where it breaks.

Reddit r/AI_Agents · 2026-06-23

The author describes building an ambient memory agent that runs locally on a Mac, watching the screen and optionally audio, OCRs/transcribes everything into structured Markdown in an Obsidian vault, with SQLite as the source of truth. They invite feedback on design choices like using SQLite over vector/graph DB, cost, and durability of such systems.

0 favorites 0 likes
#sqlite

sqlite-utils 4.0rc1 adds migrations and nested transactions

Simon Willison's Blog · 2026-06-21 Cached

sqlite-utils 4.0rc1 is a release candidate that adds built-in database migrations (ported from sqlite-migrate) and nested transactions via db.atomic(), along with minor backwards-incompatible changes.

0 favorites 0 likes
#sqlite

Mapping SQLite result columns back to their source `table.column`

Simon Willison's Blog · 2026-06-13 Cached

This research explores methods to determine the source table and column for each result column in arbitrary SQLite queries, using SQLite's internal column metadata API accessed via Python's apsw library or a ctypes bridge, with applications for tools like Datasette.

0 favorites 0 likes
#sqlite

Sharing for inspiration: Grep for agentic search was a game changer for us.

Reddit r/AI_Agents · 2026-06-12

Describes improving agentic memory search by incorporating grep-based exact matching alongside vector embeddings, inspired by a paper; achieved significant recall gains in their memory layer.

0 favorites 0 likes
#sqlite

Show HN: Lightweight Task queue on Erlang/OTP, SQLite-backed, no overengineering

Hacker News Top · 2026-06-10 Cached

EZRA is a lightweight, persistent task queue built on Erlang/OTP with SQLite storage. It exposes a Redis-compatible interface, allowing any Redis client to push and pop tasks without needing a Redis server.

0 favorites 0 likes
#sqlite

@VincentLogic: This open-source project cuts Claude Code's costs by 25%. It doesn't build new models or a new IDE. It just draws a "code map" for the AI coding agent. Traditional approach: the model reads the entire repo → token explosion. Its approach: first parse the code with Tree-si…

X AI KOLs Timeline · 2026-06-09 Cached

An open-source project uses Tree-sitter to parse code into a graph structure and store it in local SQLite, providing a code map for AI coding agents, thereby reducing token consumption and costs. On average, it saves 57% tokens and reduces costs by 25%. Supports tools like Claude Code, Cursor, aider, etc.

0 favorites 0 likes
#sqlite

Lore: The MCP that lets your AI agents share session history. Any chat, any agent, anytime.

Reddit r/openclaw · 2026-06-07

Lore is an open-source tool that uses the Model Context Protocol (MCP) to share session history between AI agents, storing all data locally in SQLite. It enables agents to access each other's past sessions without external dependencies.

0 favorites 0 likes
#sqlite

I made it so any agent can agent can use any context form another agent. Claude learns from codex, visa versa.

Reddit r/AI_Agents · 2026-06-07

Lore is a local tool that indexes AI agent sessions into a SQLite database and serves them over MCP, allowing different agents (e.g., Claude and Codex) to share and retrieve each other's context across sessions.

0 favorites 0 likes
#sqlite

DIY Kobo annotation backup

Lobsters Hottest · 2026-06-07 Cached

A guide to backing up annotations from Kobo e-reader for borrowed books using a script that combines sqlite and ImageMagick.

0 favorites 0 likes
← Previous
Next →
← Back to home

Submit Feedback