Preset
Background
Text
Font
Size
Width
Sunday, March 1, 2026

The Git Times

No Narrative.. Just builders building

“Premature optimization is the root of all evil.” — Donald Knuth

Claude Context Mode Compresses Tool Outputs to Salvage AI Context Windows

MCP server slashes large data dumps from Playwright snapshots and GitHub issues, freeing up to 98% of bloated context in Claude Code sessions.

mksglu/claude-context-mode 915 stars JavaScript Latest: v0.8.1

In the high-stakes world of AI-assisted coding, context windows are a precious resource. Claude Code's MCP protocol—now the de facto standard for tool integration—excels at injecting external capabilities, but it chokes on the return trip. Raw outputs from tools flood the 200K token window: a Playwright snapshot at 56 KB, 20 GitHub issues at 59 KB, or an access log at 45 KB. After 30 minutes, 40% of context evaporates.

Enter mksglu/claude-context-mode, a JavaScript-based MCP server with 915 stars. Created February 23, 2026, and last pushed March 1, it intercepts tool outputs before they hit Claude's context. Inspired by Cloudflare's Code Mode—which crushes tool definitions from millions to ~1,000 tokens—this project tackles the outbound problem. A 315 KB payload shrinks to 5.4 KB: 98% reduction.

Installation is straightforward for Claude Code users:

/plugin marketplace add mksglu/claude-context-mode
/plugin install context-mode@claude-context-mode

Restart Claude Code. This bundles the MCP server, a PreToolUse hook for automatic routing, and slash commands:

  • /context-mode:stats: Per-tool breakdown of tokens saved, consumption, and ratios for the session.
  • /context-mode:doctor: Diagnostics on runtimes, hooks, FTS5, plugin registration, npm, and marketplace versions (now counts 11 languages, up from 10).
  • /context-mode:upgrade: Fetches GitHub updates, rebuilds, migrates cache, and repairs hooks.

For MCP-only setups sans hooks:

claude mcp add context-mode -- npx -y context-mode

Local dev runs via claude --plugin-dir ./path/to/context-mode.

The v0.8.1 release addresses key rough edges: skips console.clear() in non-TTY environments to prevent wiping Bash tool outputs during /upgrade and /doctor; fixes language count in diagnostics.

With 81+ tools often consuming 143K tokens (72%) upfront, this plugin matters for sustained sessions. Builders chaining gh issue list, test logs, or docs fetches gain breathing room without manual truncation. Its recency—active into March 2026—and focused fixes signal maturity amid Claude's ecosystem boom. For teams scaling AI agents, it's a pragmatic fix to the "other half of the context problem."

(Word count: 378)

Builder's Take Test in a non-production Claude Code session first—run `/context-mode:stats` after heavy tool use to verify savings. Expect sandbox routing overhead; monitor via `/doctor` for FTS5 or npm issues. If avoiding hooks, manual MCP integration suits minimal setups but skips diagnostics.

Also Trending

Agent Orchestrator Spawns Parallel AI Coding Agents

GitHub tool creates isolated worktrees for autonomous CI fixes, reviews and PRs

ComposioHQ/agent-orchestrator · 2.8k stars · TypeScript

OpenClaw Use Cases Repo Hits 37 Verified Scenarios

Curated list details agent setups for automation, DevOps, and productivity workflows

AlexAnys/awesome-openclaw-usecases-zh · 370 stars · Unknown

GitHub Tool Decrypts WeChat 4.0 Databases from Memory

Python script scans process memory for keys, unlocks SQLCipher files and enables message monitoring

ylytdeng/wechat-decrypt · 869 stars · Python

fast-agent Framework Builds MCP AI Agents

Python CLI tool enables defining, prompting and testing multimodal workflows with end-to-end MCP support.

evalstate/fast-agent · 3.7k stars · Python

Quick Hits

contextplus Context+ turns massive codebases into 99% accurate, searchable feature graphs via AST parsing and clustering, revolutionizing large-scale engineering now. 909
safepilot SafePilot empowers AI assistants to execute real tasks securely in Rust, unlocking safe automation amid AI hype. 376
screenpipe Screenpipe records your computer's every action into a private, searchable AI for instant automation, surging with 17k stars. 17k
registry MCP Registry catalogs community servers for standardized AI context protocols, powering the exploding MCP ecosystem. 6.5k
llm_engineering LLM Engineering repo's Jupyter notebooks master large language model building, timed perfectly for the AI skills boom. 5.1k
kana-dojo Kana Dojo delivers minimalist, Duolingo-inspired Japanese kana training in Next.js, welcoming newbie contributors today. 1.7k
skills-best-practices Skills Best Practices crafts and LLM-validates lean agent skills, optimizing context for pro AI agents now. 921
homebrew-cask Homebrew Cask CLI manages macOS binary apps effortlessly, essential as dev workflows scale on Apple Silicon. 21.9k

Supabase Nears 100,000 Stars with Postgres-Powered Firebase Alternative

Open source platform bundles database, auth, realtime APIs, and AI vectors for web and mobile builders.

supabase/supabase 98.3k stars TypeScript Latest: v1.26.02

Supabase, the flagship repository from supabase/supabase, has amassed 98,344 GitHub stars since its 2019 launch. Written primarily in TypeScript, it positions itself as the Postgres development platform, replicating Firebase's developer experience through enterprise-grade open source tools.

At its core, Supabase provides a dedicated Postgres database with extensions like PostGIS for geospatial data and pgvector for vector embeddings. Builders get auto-generated APIs via PostgREST for RESTful access and GraphQL support. Realtime subscriptions leverage an Elixir server polling Postgres replication over WebSockets, enabling live updates on inserts, updates, and deletes.

Authentication handles OAuth2 flows, while storage manages files. Edge Functions and database functions extend serverless capabilities. For AI workflows, it includes a vectors and embeddings toolkit. The platform supports both hosted deployment—sign up at supabase.com—and self-hosting for local development.

Supabase's architecture favors existing MIT/Apache-licensed tools, building new ones only when needed. Postgres anchors everything, drawing on 30+ years of reliability. Unlike Firebase's proprietary stack, this setup ensures data sovereignty and avoids vendor lock-in.

Recent activity underscores its momentum. The latest release, v1.26.02 (pushed March 2026), follows key updates:

  • Supabase PrivateLink: Routes AWS traffic via VPC Lattice, eliminating public internet exposure for secure database connections. Details.
  • Postgres Best Practices for AI Agents: 30 rules across eight categories to guide tools like Claude, Cursor, and GitHub Copilot in generating correct SQL.
  • Ethereum Querying: SQL wrapper for real-time blockchain data via Infura FDW. Docs.
  • Claude Connector: Official integration lets builders manage Supabase projects conversationally.

With topics spanning ai, realtime, vectors, and nextjs examples, Supabase targets full-stack apps. Community channels include a forum for best practices, GitHub issues for bugs, Discord for sharing, and email for infra issues. Documentation lives at supabase.com/docs.

This evolution matters for builders ditching Firebase: Supabase delivers comparable speed with Postgres's robustness, now enhanced for AI and enterprise security.

(Word count: 378)

Builder's Take Start with the hosted dashboard for quick prototyping, but evaluate self-hosting costs for production scale. Test realtime and vector features early, as they shine in AI/mobile apps but demand Postgres tuning. Watch the repo releases for updates, given the rapid pace—v1.26.02 just dropped.

Also Trending

Microsoft Releases MCP Curriculum for Beginners

Open-source repo offers cross-language examples for building AI workflows with Model Context Protocol

microsoft/mcp-for-beginners · 14.5k stars · Jupyter Notebook

OpenCV Hits 86k Stars with 4.13.0 Release

C++ library advances computer vision, image processing, and deep learning tools for developers.

opencv/opencv · 86.4k stars · C++

Quick Hits

Deep-Live-Cam Real-time face swapping and one-click video deepfakes from a single image rack up 80k stars amid AI video hype. 79.7k
gemini-fullstack-langgraph-quickstart Quickstart for building fullstack agents with hot Gemini 2.5 and LangGraph surges to 18k stars. 17.9k
data-engineering-zoomcamp Free 9-week data engineering course on production pipelines gears up for January 2026 cohort with 39k stars. 38.8k
OpenBB Open-source financial data platform empowers analysts, quants, and AI agents with 62k stars booming. 62.4k
keras User-friendly Keras deep learning library hits 64k stars as accessible AI tools dominate. 63.9k

Kornia Advances PyTorch Toolkit for Differentiable Geometric Vision

Library packs 500-plus GPU ops for image processing, augmentations, and emerging end-to-end vision models

kornia/kornia 11.1k stars Python Latest: v0.8.2

Developers building spatial AI applications have a reliable workhorse in Kornia, a Python library layered on PyTorch. Launched in 2018, it now boasts 11,097 GitHub stars and continuous updates, with the latest push in March 2026 and release v0.8.2. Kornia delivers differentiable primitives for geometric computer vision, enabling seamless integration into deep learning pipelines via auto-differentiation, batch processing, and GPU acceleration.

At its core, Kornia offers differentiable image processing operators. These span filters like Gaussian, Sobel, and median; transformations including affine, homography, and perspective; enhancements such as histogram equalization and CLAHE; and edge detectors like Canny and Laplacian. Over 500 operations in total make it a one-stop shop for low-level vision tasks that backpropagate gradients directly.

Advanced augmentations stand out for training robust models. Builders can chain operations via AugmentationSequential, PatchSequential, or VideoSequential. Policies like AutoAugment, RandAugment, and TrivialAugment automate complexity, boosting data efficiency in computer vision workflows.

The library also bundles pre-trained AI models for production tasks:

  • Face detection with YuNet
  • Feature matching via LoFTR and LightGlue
  • Descriptors including DISK, DeDoDe, and SOLD2
  • Segmentation with SAM
  • Classification using MobileViT and VisionTransformer

This matters because Kornia bridges classical vision algorithms with modern deep learning. Unlike rigid OpenCV bindings, its PyTorch-native design lets gradients flow through entire pipelines—crucial for tasks in robotics, image synthesis, and spatial AI.

Noteworthy now: Kornia is pivoting to end-to-end vision models, integrating Vision Language Models (VLMs) and Vision Language Agents (VLAs). Recent v0.8.2 release notes highlight maintenance rigor: dependency bumps (e.g., pytest to 8.3.5), documentation enhancements with SEO meta descriptions and docstrings, a Discord migration for community, and fixes like SOLD2Detector link corrections. Pre-commit CI ensures code quality across multiple PRs. These signal sustained momentum amid the shift, equipping builders for multimodal vision without library fragmentation.

For PyTorch users, Kornia reduces boilerplate, accelerates prototyping, and scales to enterprise-grade spatial reasoning.

(Word count: 362)

Builder's Take Ensure PyTorch 2.0+ compatibility before integrating; start with official tutorials and examples for quick pipelines. Test augmentations on your dataset early, as GPU memory scales with batch sizes. Monitor the Discord shift for community support, replacing older channels.

Also Trending

Drake Advances Robotics Modeling to Version 1.50.0

C++ toolkit from RobotLocomotion enables model-based design and verification since 2014

RobotLocomotion/drake · 3.9k stars · C++

RobotGo Reaches 10k Stars in Go Automation

Cross-platform library controls mouse, keyboard and screens for RPA and testing

go-vgo/robotgo · 10.6k stars · Go

Quick Hits

ogre OGRE powers high-performance 3D rendering with C++, Python, C#, Java bindings, fueling VR/AR games amid exploding immersive tech demand. 4.5k
rtabmap RTAB-Map delivers real-time SLAM library and app for robotics mapping, booming for autonomous drones and robots now. 3.6k
gtsam GTSAM enables factor graph-based smoothing and mapping in C++ for robotics vision, revolutionizing precise navigation in self-driving era. 3.3k
mavros MAVROS gateways MAVLink drone protocol to ROS with GCS proxy, essential for UAV devs in surging drone autonomy wave. 1.1k
chrono Chrono simulates multiphysics multibody dynamics in high-speed C++, ideal for robotics and vehicle prototyping today. 2.7k

GitHub Repo Automates CVE PoC Harvesting for Pentesting Teams

trickest/cve aggregates thousands of vulnerabilities with proofs-of-concept from GitHub, HackerOne, and CVE references

trickest/cve 7.6k stars HTML

Developers and security builders now have a single, automated source for the latest CVEs paired with public proofs-of-concept (PoCs). The trickest/cve repository, launched in January 2022 and last updated in March 2026, has amassed 7,573 stars. It systematically collects CVE details from the official cvelist, then hunts for exploitable PoCs across the web.

The workflow splits CVEs by year into markdown files, such as those for 2022's high-profile bugs like CVE-2022-0001, CVE-2022-25297, CVE-2022-1388, and CVE-2022-25451. For each, it employs two PoC discovery methods:

  • Reference scanning: Pulls CVE references and uses ffuf with a regex pattern (?i)[^a-z0-9]+(poc|proof of concept|proof[-_]of[-_]concept)[^a-z0-9]+ to flag likely PoC links. It also integrates HackerOne reports via AllVideoPocsFromHackerOne.
  • GitHub search: Queries repositories mentioning the CVE ID using find-gh-poc.

Results merge automatically without overwriting manual commits, filtered by a blacklist.txt to cut false positives. Shields.io generates version-specific badges for affected software. An atom feed enables product-specific monitoring, and a template script builds searchable HTML tables.

This matters for builders because it centralizes scattered PoCs, saving hours of manual GitHub trawling or NVD browsing. Red teams and pentesters can "watch" the repo for real-time notifications on new exploits. Product owners scan for vulnerabilities in their stack—search by software name or version to reveal all public PoCs.

What sets it apart now? Amid rising supply-chain attacks, its automation ensures freshness: daily pulls from cvelist and GitHub keep it ahead of fragmented CVE trackers. With topics spanning cve-poc, exploit, pentesting, and red-team, it's tailored for infosec workflows. Nearly all content generates via Trickest's pipeline, refined for accuracy, though users should verify PoCs independently.

The full history lives in year-sorted directories; hottest CVEs highlight front-page risks. For teams building secure software, this repo signals where attackers strike first.

(Word count: 348)

Builder's Take Verify all PoCs in a safe, isolated environment before testing, as automation may include unvetted code. Watch the repo or subscribe to its atom feed for your dependencies to stay proactive on patches. Use the HTML summarizer script for quick, searchable indexes tailored to your stack.

Also Trending

HackTricks Repo Compiles Pentesting Tricks from CTFs

GitHub project with 10,946 stars documents techniques from real apps and research papers.

HackTricks-wiki/hacktricks · 10.9k stars · CSS

BBOT Scans Recursively for Recon and Pentesting

Python tool automates subdomain enumeration, web crawling and email gathering via APIs and brute-force

blacklanternsecurity/bbot · 9.5k stars · Python

Quick Hits

matomo Matomo delivers a privacy-first open-source Google Analytics alternative, surging with 21K stars amid ethical data control demands. 21.3k
personal-security-checklist This 300+ tip checklist fortifies personal digital security and privacy, freshly updated for 2026 threats with 20K stars. 20.8k
yakit Yakit packs an all-in-one cyber security platform for streamlined threat hunting, gaining traction with 7K stars. 7.1k
opencti OpenCTI enables open-source cyber threat intelligence sharing and analysis, vital now with 9K stars in escalating attacks. 8.9k
Reverse-Engineering This free reverse engineering tutorial covers x86, ARM, AVR, and hot RISC-V, drawing 13K stars for builders. 13.3k

Memos Tops 57K Stars as Privacy-First Notes Tool Matures

Self-hosted knowledge base built in Go and React offers lightweight alternative to cloud note services amid rising data sovereignty demands.

usememos/memos 57.4k stars Go Latest: v0.26.2

Developers seeking control over their notes have a robust option in memos, the open-source, self-hosted service from usememos/memos. Launched in December 2021, it has amassed 57,374 GitHub stars and remains actively maintained, with the latest push on March 1, 2026, and release v0.26.2 addressing key stability issues.

At its core, memos functions as a privacy-first knowledge base for personal notes, team wikis, and memos-style microblogging. Data stores as plain text Markdown, ensuring portability without vendor lock-in. Built as a single Go binary paired with a React frontend, it boasts a low memory footprint and starts in seconds—ideal for resource-constrained environments.

Key technical strengths include:

  • Deployment simplicity: A one-line Docker command (docker run -d --name memos -p 5230:5230 -v ~/.memos:/var/opt/memos neosmemo/memos:stable) gets it running on http://localhost:5230. Supports SQLite (default), MySQL, and PostgreSQL; Docker Compose, Kubernetes Helm charts, and pre-built binaries for Linux/macOS/Windows are available.
  • APIs for integration: Full REST and gRPC endpoints enable embedding into workflows.
  • Minimalist UI: Dark mode, mobile-responsive, with Markdown editing and task lists.

The v0.26.2 release underscores its production readiness. Fixes tackle authentication persistence across tabs via localStorage, spurious logouts on token expiry, and SSRF vulnerabilities in webhook dispatchers. UI refinements include calendar navigation improvements, task list scoping, attachment handling, and compound tag support with ampersands. Backend tweaks ensure delete operations only trigger post-actions on success, while eliminating redundant fetches in editors.

This maturation matters now as builders push back against proprietary tools like Notion or Evernote, which impose tracking, ads, or subscriptions. Memos delivers zero telemetry, self-hosting on your infrastructure, and FOSS extensibility—tagged for Docker, Go, Markdown, self-hosted setups, and SQLite. With topics spanning note-taking to social-network primitives, it suits solo devs to teams building custom knowledge systems.

Contributions remain open: bug reports, PRs, and docs updates are encouraged, reflecting a healthy community.

(Word count: 348)

Builder's Take Test the Docker quickstart first to verify compatibility with your stack; opt for PostgreSQL in production for better scalability over SQLite. Review REST/gRPC APIs early if integrating with CI/CD or other tools, and monitor auth fixes in v0.26.2 for multi-tab reliability.

Also Trending

PocketBase Offers Realtime Go Backend in One File

SQLite database, admin dashboard, and REST API serve 56,000-star project since 2022

pocketbase/pocketbase · 56.5k stars · Go

Electron Releases v40.6.1 with Platform Bug Fixes

Framework powers cross-platform desktop apps using JavaScript on Node.js and Chromium base.

electron/electron · 120.3k stars · C++

Quick Hits

swift Swift powers safe, expressive coding for Apple platforms, booming with 70K stars as developers demand modern systems languages. 69.8k
godot Godot builds free multi-platform 2D/3D games effortlessly, exploding to 107K stars amid indie dev and Unity shifts. 107.2k
rust Rust crafts crash-proof, performant software for all, leading with 111K stars in the safe systems era. 110.8k
sway Sway writes reliable Rust-style smart contracts for Fuel blockchain, surging to 62K stars in efficient Web3 dev. 61.9k
protobuf Protobuf serializes data ultra-efficiently for global scale, a 71K-star staple as APIs evolve rapidly. 70.8k

OpenC3 COSMOS 7 Release Candidate Delivers QuestDB TSDB for Embedded Control

Ruby-based platform modernizes command-telemetry workflows for hardware testing and IoT automation with order-of-magnitude data speedups.

OpenC3/cosmos 206 stars Ruby Latest: v7.0.0-rc2

OpenC3 COSMOS is a Ruby framework for commanding and monitoring embedded systems, dubbed "targets." It handles communication over TCP/IP, UDP, serial, and other protocols, providing a full suite of tools for telemetry display, graphing, operational scripting, command sending, logging, and log playback. Developers configure interfaces to their hardware, then access a ready-to-use dashboard for system status, raw packet inspection, and connection management.

At its core, the Command and Telemetry Server oversees target connections. The Limits Monitor tracks telemetry points exceeding thresholds, logging violations even after recovery. Command Sender offers dropdown-driven interfaces for one-off packets, complete with parameter descriptions. Script Runner executes Ruby test procedures in a graphical stepper, with pause/stop controls and telemetry checks.

The project shines in automated testing of embedded devices, from spacecraft components to IoT gadgets and cell phones. With 206 GitHub stars and topics spanning automation, hardware integration, and scripting, it targets builders needing robust control loops without custom infrastructure.

Version 7.0.0-rc2, released recently, marks a pivotal upgrade. The headline addition is a QuestDB-powered time series database (TSDB), slashing data retrieval times by an order of magnitude. This eliminates reducer microservices, unlocks SQL querying via QuestDB console, and paves the way for new integrations. RC2 refines this with SCOPE-prefixed TSDB table names (requiring openc3.sh cleanup from RC1, which drops logged data), a TEMPLATE_BASE64 keyword, admin themes, and fixes for TSDB, STRUCTURE keyword, Python microservices, and XTCE support.

COSMOS also shifts from AGPL to the COSMOS Builder's License, easing commercial adaptations while preserving open contributions. Last pushed March 1, 2026, it remains actively maintained since its 2022 launch.

For developers, COSMOS matters now as v7 stabilizes high-performance telemetry at RC stage. QuestDB's efficiency addresses scaling pain points in hardware testbeds, where historical data queries often bottleneck workflows. Production users should await final release, but testers gain immediate value in prototyping command-control pipelines.

(Word count: 378)

Builder's Take Start with the standard install and configure a simple TCP interface to a test target before scaling. Note v7-rc2 requires cleanup from prior RCs, dropping data—back up first. Ruby proficiency helps for scripting; Python microservices expand options, but verify XTCE compatibility for legacy telemetry definitions.

Also Trending

ESP32-P4 Drives Wi-Fi Pixel Art Player

fabkury's p3a runs GIFs from Makapix Club and Giphy on 4-inch touchscreen frame

fabkury/p3a · 52 stars · C

Venus OS Driver Monitors Serial Batteries via D-Bus

Python tool integrates RS485, UART BMS data into Victron GX systems for SoC tracking.

mr-manuel/venus-os_dbus-serialbattery · 217 stars · Python

Quick Hits

nvim-highlite Lite Neovim colorscheme generator minimizes dev logic for instant custom themes, riding Neovim's customization wave. 247
ESPRotary Arduino/ESP library simplifies rotary encoder reads, speeding up knob controls in IoT projects. 185
Useful-Youtube-Channels Curated YouTube channels list supercharges electronics and mechanical learning for DIY builders. 344
WLED-wemos-shield Wemos D1 Mini shield enables easy WLED firmware deployment for vibrant smart LED strips. 554
espectre Wi-Fi CSI motion detection via ESPectre integrates with Home Assistant, revolutionizing contactless smart home security. 6.6k
No X Pulse data available today. Check back tomorrow!