Ranking basis: recent growth (stars gained today) first; cumulative stars are context only. Sources: Trendshift daily (2026-08-20 snapshot), cross-checked against the weekly list and individual repository pages. Five entries today — nothing was padded to hit a number.
CopilotKit/openbot — +633 ⭐ today (923 ⭐ total)
https://github.com/CopilotKit/openbot
OpenBot is an open-source coworker runtime that hands each AI agent an entire computer of its own, the way you would onboard a person. Every coworker gets its own real browser with its own login sessions, its own file space, and only the tools the user explicitly grants. The core design principle is decide-before, record-after: every action passes a permission check before it runs and lands in an audit log afterward. You watch the work happen on the coworker’s own screen, take the wheel at any point it should not act alone, and hand control back when you are done. Because a Bot is simply any endpoint speaking AG-UI — the open protocol for agent-to-user interaction — OpenBot is not tied to a framework: agents built with LangGraph, Mastra, CrewAI, Pydantic AI or Google ADK, and hand-written ones, all connect the same way. Three coworkers ship in the example package:
- General Assistant — everyday work
- Knowledge — company questions
- Risk Analyst — risk and compliance
Why it is spiking is unambiguous: 633 of its 923 total stars arrived today. It spread through Chinese-language X as “the open-source Grok Bot,” and it lands squarely on the control-and-audit problem that has dogged every computer-use agent. TypeScript, MIT licensed, still alpha, two contributors.
Practical angle: if you want to delegate repetitive back-office work that requires a logged-in browser session (invoice lookups, portal data entry) while keeping an audit trail, the permission gate is already built in, which makes compliance sign-off far easier.
Tags: #AGUI #AgentSandbox #HeadlessBrowser #PermissionGating #AuditLog #ComputerUse
s1dashu/ip-as-logo-skill — +657 ⭐ today (2.2k ⭐ total)
https://github.com/s1dashu/ip-as-logo-skill
This project compresses a current product-design trend — using an IP mascot directly as the product logo — into a single agent skill. It follows the open Agent Skills format rather than binding to one product, so it runs on Codex, Coze, Doubao, YouMind, Manus, Gemini Apps and Replit Agent alike. What makes it work is that the aesthetic is encoded as hard constraints rather than vague prompting. The skill specifies:
- 6-10 geometric shapes maximum
- Three semantic colors only — two IP base colors plus one solid background
- Must stay recognizable when scaled down to 32×32
- Bold rounded silhouette, oversized corner composition, subtle neo-skeuomorphic finish
The execution flow is fixed too: propose three product-relevant directions first, then generate six candidate images in parallel. In effect it solves “drawing a mascot with AI is easy, drawing one usable as a logo is hard” by ordering the work symbol-first, character-second. The surge is about timing — ex-ByteDance developer s1dashu open-sourced it two nights ago, hit 700 stars overnight, crossed 1,000, and added another 657 today, so the curve is still accelerating. MIT licensed, one contributor, with a free companion library at ipaslogo.com where finished logos can be downloaded.
Practical angle: for drafting brand identity for internal tools or side projects without designer capacity — and the 32×32 legibility constraint means favicons and app icons come out usable in the same pass.
Tags: #AgentSkills #MascotBranding #LogoDesign #NeoSkeuomorphism #Codex #DesignSystemAsPrompt
volcengine/OpenViking — +553 ⭐ today (30.1k ⭐ total)
https://github.com/volcengine/OpenViking
OpenViking, from the Viking team inside ByteDance’s Volcano Engine, is an open-source context database built specifically for AI agents. Instead of scattering memory, resources and skills across separate stores, it unifies all three into one virtual filesystem under the viking:// protocol. That means an agent browses its own context with ls, tree and find rather than querying a black-box vector store. Content is processed into three tiers — L0 abstract, L1 overview, L2 details — and loaded on demand at whatever depth is needed, and every retrieval leaves a trajectory you can watch and debug. On top of that sits a memory self-iteration loop: at the end of a session you can trigger memory extraction, and the system asynchronously analyzes task results and user feedback, then updates the User and Agent memory directories automatically. That is where the “gets smarter with use” self-evolution comes from. Today’s +553 is 2.3x its weekly run rate (+1.7k, about 243/day), meaning a curve that had flattened since its first trending run in March is steepening again — likely tied to context management becoming the bottleneck in local agent stacks like openclaw. Python, AGPL-3.0, 181 contributors.
Practical angle: if your internal agents keep relearning the same company policies every session, this is worth evaluating as a refactor target — merging memory, documents and skills into one filesystem instead of bolting on another RAG layer.
Tags: #AgentMemory #ContextEngineering #FilesystemAbstraction #SelfEvolvingMemory #HierarchicalRetrieval #ByteDance
vercel-labs/fx — +345 ⭐ today (1.3k ⭐ total)
https://github.com/vercel-labs/fx
Vercel Labs open-sourced fx yesterday — a coding agent it had been running as an internal tool. It is a single native binary written in Zig with no runtime to install, cold starting in 10 microseconds and doing no unnecessary I/O before it accepts input. The binary lands around 6-8 MiB and baseline memory usage stays in single-digit megabytes. Three principles drive the design:
- Fast and minimal — from system prompt design through the tool and feature set
- Model- and provider-agnostic — suitable for both local and cloud inference
- Privacy as a design constraint — no product telemetry, sessions and usage stay local, and with local inference plus auto-updates off it is fully hermetic
The interface philosophy is equally explicit: output and form factor aim closer to a Unix shell than a heavy “IDE in the terminal” TUI, with a small core extended through skills, plugins and MCP. The spike comes down to timing and positioning — it went Apache-2.0 and immediately pulled 193 points on Hacker News, hitting an empty niche for an ultra-light agent meant for research and embedding at a moment when coding agents have grown heavy. Early project, three contributors.
Practical angle: when you need a coding agent inside a CI runner or a resource-constrained container or edge environment, a single binary with no runtime dependency drives image build and cold start cost to near zero.
Tags: #ZigLang #SingleBinary #ColdStart #MCP #EmbeddableAgent #HermeticRuntime
apache/maka — +285 ⭐ today (1.5k ⭐ total)
https://github.com/apache/maka
Apache Maka (Incubating) is a local-first AI agent workspace, and its distinguishing choice is how it treats execution history. Model messages, tool calls, tool results, permission decisions and termination events are all written to an append-only log, so what the agent saw and what it decided survive as recoverable execution facts rather than ephemeral chat. Under controlled permissions it does the usual workspace things — inspect projects, execute tools, produce artifacts — but sessions, settings and run records stay on your machine by default. Model connection is your choice: cloud API, local model or a compatible gateway. Distribution is still early: the signed and notarized desktop app ships via GitHub Releases for Apple Silicon (arm64) Macs only, Windows remains an unsigned preview rather than a supported tier, and Intel Mac and Linux packages do not exist yet. Today’s +285 is 19% of its cumulative total; it first trended on July 3 at #19 for TypeScript and appears to have reignited as word of the Apache Incubator move spread. The project notes that data formats and CLI commands may still change.
Practical angle: for regulated organizations that later have to prove “why did the agent touch that file,” the append-only execution record can serve as evidence directly, with no separate audit logging to build.
Tags: #ApacheIncubator #AppendOnlyLog #LocalFirst #ExecutionProvenance #PermissionControl #DesktopAgent
Today’s exclusion notes
deepseek-ai/deepseek-harness rebounded to +4.1k today from +1.1k yesterday, but that is still about 70% below the +13.8k it posted on 08-18 when it was featured, so the streak-decay rule keeps it out. Its satellite repo deepseek-harness-desktop (+2.2k on 08-18, +912 today) is excluded for the same reason. MoneyPrinterTurbo (daily #1, +1.6k), public-apis, prettymaps and Motrix are permanently excluded as large, mature repos, and Anthropic-Cybersecurity-Skills is excluded as rank-holding. Yesterday’s three picks — cumora, ai-memory and iFixAi — all dropped out of the daily top 25 and were removed. terminal-code, terminal-browser, OpenLogi and orchard are out of scope as non-AI projects.
Leave a comment