AI Open Source Radar — August 27, 2026

Selection rule: the primary signal is the gain over the last 24 hours, not cumulative stars. Repos with large totals but flattening momentum are excluded, as are repos whose daily gain fell versus the previous day. Data from Trendshift daily and weekly lists plus individual repository pages, as of August 27, 2026 KST.


bilawalsidhu/gods-eye-view — +3,000 ⭐ today (2 days running)

About 4.5k stars total · 1.1k forks · MIT · 1 contributor · github.com/bilawalsidhu/gods-eye-view

This is a spy-satellite simulator that runs in your browser, except the data is real. It pulls aircraft transponder feeds (ADS-B), ship AIS beacons, satellite orbital elements, seismographs, and traffic and public camera feeds, then layers all of it live onto a photorealistic 3D globe — an open-source spatial intelligence workbench. Three design principles govern it: public data only, sources always labeled, and local-first execution, with no secret datasets and no mystery scraping. A realtime AI agent is wired in, so you can ask by voice what is happening in a given area while it looks at the same map you do, annotate the 3D scene, or drop into a first-person cockpit view of a specific aircraft. Where no live feed exists, the view is explicitly marked as modeled so it is never confused with real data. Former Google Maps PM Bilawal Sidhu open-sourced V1 under MIT on August 24, and the chain reaction across his own and the developer community’s X posts pushed it to #1 for the day at +3,000 — more than double yesterday’s +1,400, with 97% of the week’s 3.1k gain landing in the last 24 hours.

Practical angle: logistics, shipping, insurance and energy risk teams can build a live dashboard of indicators like Strait of Hormuz transit volume from public data alone, and hand clients the source links along with the answer.

#GeospatialIntelligence #OSINT #3DGlobe #FlightTracking #AISVesselTracking #VoiceAgent


FlashML-org/FreeToken — +2,300 ⭐ today (4 days running)

8.3k stars total · 704 forks · Python · Apache-2.0 · 3 contributors · github.com/FlashML-org/FreeToken

FreeToken is an edge-native serving engine for running frontier-scale Mixture-of-Experts models on a personal workstation. The core idea is bandwidth-adaptive execution: it maps computation and model state dynamically across GPU VRAM, system RAM and disk to fit whatever local hardware it finds. The standout piece is elastic memory management — it reallocates VRAM between expert caches and KV memory at runtime, with no engine restart and no weight reloading. Dtype, attention backend, MoE backend, MoE cache size, KV capacity and CUDA-graph sizes all resolve automatically from the checkpoint and the GPU, so there is almost nothing to hand-tune. It supports open-weight MoE models such as DeepSeek-V4-Flash, Qwen3.6-35B-A3B and GLM-5.2 across MXFP4, NVFP4, FP8 and BF16, and exposes Anthropic- and OpenAI-compatible APIs so existing clients connect unchanged. Since the arXiv 2608.16157 paper landed, the press wave has accelerated rather than faded: +757 on Aug 23, +852 on Aug 25, +1,400 on Aug 26, and +2,300 today — four consecutive days of widening gains.

Practical angle: organizations that cannot send data outside the building can serve a large MoE model on one or two in-house GPUs while keeping API compatibility, eliminating per-token cost entirely.

#MoEServing #EdgeInference #KVCache #VRAMOffload #Quantization #OpenWeightModels


tt-a1i/archify — +954 ⭐ today (re-acceleration)

17.5k stars total · 1.3k forks · HTML · MIT · 2 contributors · github.com/tt-a1i/archify

Archify is an agent skill that turns a plain-English description of a system — or a whole repository — into a verifiable technical diagram. It installs as a skill into Claude Code, Cursor, Codex CLI, OpenCode and Raven. The output is a single self-contained HTML file with no dependencies, which you can open, theme-switch, copy to clipboard, and export at maximum resolution. What it produces:

  • Five diagram types: architecture, workflow, sequence, data-flow and lifecycle
  • Four presets, dark and light themes, built-in brand marks, and finite motion (animation that plays once and stops rather than looping)
  • Export to PNG, SVG, WebM and 1200×630 share cards
  • Architecture change review — compare two validated snapshots side by side as Before / Delta / After

It trended once back on August 9 and then went quiet, but first reached #1 on GitHub Trending overall on August 26, and that pushed it from +430 yesterday to +954 today, a 2.2x re-acceleration. It is still absent from the weekly top 25, which confirms today is the spike day rather than a tail.

Practical angle: generate design-review and client-proposal diagrams straight from the repository, and attach just the Before/After delta to an architecture decision record.

#DiagramGeneration #AgentSkill #SelfContainedHTML #ArchitectureReview #SVGExport


AgriciDaniel/claude-obsidian — +825 ⭐ today (2 days running)

13.1k stars total · 1.5k forks · Python · MIT · 2 contributors · github.com/AgriciDaniel/claude-obsidian

This one lives inside your Obsidian vault and builds a second brain that organizes itself. Drop any source into a watched folder — a link, a PDF, meeting notes, a captured web page — and Claude Code reads it, summarizes it, links it to existing notes, and files it in the right place. Everything it writes is plain Markdown, so there is no vendor lock-in: delete the tool and the notes remain exactly as they are. It is an implementation of the “LLM Wiki” pattern Andrej Karpathy described, and the goal is a single connected knowledge graph of cross-referencing notes rather than an ever-growing pile of individual files. The main use case is personal knowledge management as a Notion alternative, and because the vault is local, sensitive material never leaves the machine. After entering GitHub Trending at #3 on August 25, it doubled overnight from +415 yesterday to +825 today.

Practical angle: a consulting or research team that keeps per-client material in one vault gets meeting notes, contracts and industry reports auto-linked, which makes tracing evidence during proposal writing far easier.

#PKM #ObsidianVault #KnowledgeGraph #MarkdownFirst #SecondBrain #LocalFirst


laude-institute/headlong — +559 ⭐ today (2 days running)

830 stars total · 64 forks · Shell · Apache-2.0 · 6 contributors · github.com/laude-institute/headlong

Headlong is a minimal agent microharness built around an agent that never sleeps. Where a typical agent runs a request → work → exit cycle, headlong maintains an unbroken inner monologue and decides for itself what to do next. A message you send is not treated as a command but as one more piece of information drifting into its thought stream; the agent decides whether and when to respond. The implementation is aggressively bash-centric — the project describes itself as “of bash, by bash, for bash” — and it achieves persistent agency through recursive LLMs, where an LLM call spawns a shell that calls an LLM again, shells all the way down. The differentiator is that it needs no separate runtime or heavy framework: it is shell script, so every step of its behavior is legible to you. A Hacker News listing plus X coverage carried it from +350 yesterday to +559 today, though at only 830 cumulative stars it remains highly volatile.

Practical angle: useful as a reference implementation for parking an agent on work that has to keep running without being asked — overnight batches, standing monitoring duties.

#PersistentAgency #RecursiveLLM #BashHarness #InnerMonologue #AutonomousLoop


Today’s read

The theme today is the surface an agent operates on. God’s Eye View takes the whole planet, archify takes the system diagram, claude-obsidian takes your note vault, headlong takes its own stream of thought, and FreeToken takes the single local GPU that has to run all of it. Three of the four repos featured yesterday came back with larger gains rather than smaller ones, and FreeToken widened its daily gain for a fourth consecutive day to hold third place.

Leave a comment