Today's GitHub trending page clusters around a shared theme: AI tooling is reaching into domains — codebase navigation, video production, database infrastructure — where it previously played a peripheral role. First-class agent integrations are being built in from the start rather than bolted on after the fact.
codebase-memory-mcp: A Persistent Knowledge Graph for Code
DeusData/codebase-memory-mcp picked up 1,271 stars today on top of its 9.7k total. Instead of having a coding agent read files one by one, this MCP server builds a persistent knowledge graph of the entire codebase — 158 languages, indexed in milliseconds for average repos and about 3 minutes for the Linux kernel's 75,000 files. The result is sub-millisecond queries via 14 MCP tools covering call tracing, dead code detection, and graph queries. It auto-configures with 11 coding agents including Claude Code, Cursor, and Zed, ships as a single static binary with zero runtime dependencies, and claims a 99% reduction in exploration-related token usage compared to file-by-file approaches.
github.com/DeusData/codebase-memory-mcp
OpenMontage: Twelve Pipelines for Agentic Video Production
calesthio/OpenMontage earned 677 new stars with a bold claim: the world's first open-source agentic video production system. It orchestrates 12 specialized pipelines across 52 tools covering video generation, voice synthesis, music, and post-production, letting an AI assistant read YAML manifests to make creative and technical decisions at each production stage. Pre-render validation gates and per-project spending caps tackle the real pain of runaway GPU costs on agentic workflows. The system draws on free archives (Archive.org, NASA, Wikimedia Commons) to assemble footage corpora and produces actual edited video rather than the slideshow-style output typical of simpler wrappers.
github.com/calesthio/OpenMontage
Palmier Pro: An AI-Native Video Editor for macOS 26
palmier-io/palmier-pro attracted 902 stars with a different angle on the same trend: a Swift-native macOS video editor with AI woven in from the start, not added as a plugin. Generative video and image models (Seedance, Kling) run directly inside the timeline, and an MCP server lets Claude or Cursor assist with editing programmatically. The core editor is GPLv3 open-source; AI processing requires a subscription. The project targets macOS 26 (Tahoe) on Apple Silicon only, making it a forward-looking bet on Apple's next OS generation rather than something deployable today.
github.com/palmier-io/palmier-pro
Turso: SQLite, Rewritten in Rust
tursodatabase/turso gained 801 stars as it continues building momentum around a complete Rust rewrite of SQLite that maintains full SQL dialect and file format compatibility while adding async I/O via io_uring, multi-version concurrency control for better write throughput, change data capture, and vector and full-text search. Unlike libSQL, which forks the SQLite C codebase, Turso is a ground-up Rust implementation — a higher-risk approach that pays off in native async support and easier extensibility. An included MCP server lets AI agents query Turso databases directly without an adapter layer, fitting the broader pattern of infrastructure gaining AI-native interfaces on its own terms.