Top 10 GitHub Repos — 2026-08-17
This week's trending set is dominated by the Agent Skills push: Anthropic and Google both shipped public skills repos, and community "skills as engineering practice" packs keep multiplying.
- Click the button to download the
-bookmarks.htmlfile. - Chrome / Edge / Brave: Bookmarks → Import bookmarks and settings → Favorites or bookmarks HTML file → pick the downloaded file.
- Firefox: Bookmarks → Manage Bookmarks → Import and Backup → Import Bookmarks from HTML.
- Safari: File → Import From → Bookmarks HTML File.
Top 10 GitHub Repos — 2026-08-17
As of: 2026-08-17 Focus: AI tools, automations, agents, integrations, MCP, CLIs, and developer tooling. Snapshot: Current trending picks at the moment of generation — not a historical recap.
Overview
This week's trending set is dominated by the Agent Skills push: Anthropic and Google both shipped public skills repos, and community "skills as engineering practice" packs keep multiplying. Around that, the infrastructure layer is thickening — self-improving coding agents, team-level agent memory, provider-neutral LLM routing, and control surfaces for managing fleets of local agent harnesses. The through-line: agents are getting more durable, more governed, and more reusable.
1. anthropics/skills
- Repo: https://github.com/anthropics/skills
- Category: AI Agents
- Status: New
Anthropic's public implementation of Agent Skills for Claude — folders of instructions, scripts, and resources that Claude loads dynamically to improve performance on specialized, repeatable tasks. This is the reference implementation behind the agentskills.io standard, so it's the baseline other skill packs and tools are being measured against.
Why it's on the list: The canonical skills repo every agent builder will copy, extend, or target for compatibility.
2. google/skills
- Repo: https://github.com/google/skills
- Category: AI Agents
- Status: New
Agent Skills for Google products and technologies, including Google Cloud, installable via npx skills add google/skills with per-skill selection. It's under active development, but its existence confirms the skills format is going multi-vendor rather than staying Anthropic-specific.
Why it's on the list: Signals that Agent Skills is becoming a cross-ecosystem standard, not a single-vendor format.
3. PrimeIntellect-ai/prime-agent
- Repo: https://github.com/PrimeIntellect-ai/prime-agent
- Category: AI Agents
- Status: New
An open-source coding and research agent built around the Recursive Language Model (RLM) abstraction, which treats context as variables ("prompt-as-a-variable") to handle long-running autonomous tasks. Pairs with PRIME-RL and pi-mono for self-improvement loops, making it one of the more research-forward coding agents trending right now.
Why it's on the list: A genuinely different architecture for long-horizon autonomy instead of another thin wrapper on a chat model.
4. addyosmani/agent-skills
- Repo: https://github.com/addyosmani/agent-skills
- Category: AI Agents
- Status: Trending
Production-grade engineering skills for AI coding agents that encode the workflows, quality gates, and best practices senior engineers use — organized around DEFINE → PLAN → BUILD → VERIFY → REVIEW → SHIP phases. Practical, opinionated skill packs meant to make agents follow consistent process across every phase of development.
Why it's on the list: Brings real software-engineering discipline to agent workflows, not just prompt tricks.
5. NVIDIA-NeMo/Switchyard
- Repo: https://github.com/NVIDIA-NeMo/Switchyard
- Category: Integrations
- Status: Trending
A Rust proxy and library for LLM traffic that routes requests across providers while preserving native OpenAI and Anthropic API compatibility. It also translates between the two API formats, records operational metrics, and supports benchmarking plus cost/performance optimization — useful as a drop-in layer for apps that want provider flexibility without rewiring their SDK calls.
Why it's on the list: Solves the practical "which model/provider should this call hit" problem with a fast, observability-aware proxy.
6. paperclipai/paperclip
- Repo: https://github.com/paperclipai/paperclip
- Category: AI Agents
- Status: New
An open-source Node.js server and React UI for orchestrating a team of AI agents running business workflows — pitched as "if OpenClaw is an employee, Paperclip is the company." It's aimed at managing fleets of agents in one place rather than driving a single agent session.
Why it's on the list: Early open-source take on the management layer that teams will need once multiple agents are doing real work.
7. BoundaryML/baml
- Repo: https://github.com/BoundaryML/baml
- Category: AI Tools
- Status: Trending
A TypeScript-like programming language for agents where types persist at runtime and there's no any or unsafe casting — every feature is built to make agents make fewer mistakes. It compiles faster than Go and targets the messy boundary between structured program logic and LLM output.
Why it's on the list: Typed, compile-time guarantees for agent I/O is a strong answer to the "unreliable JSON from the model" problem.
8. elizaOS/eliza
- Repo: https://github.com/elizaOS/eliza
- Category: AI Agents
- Status: Popular & active
An open-source TypeScript framework and product stack for autonomous AI agents — the monorepo includes the core runtime, the Eliza app, CLI, cloud services, native bridges, and first-party plugins. It's positioning itself as a bootable agentic operating system rather than a single-purpose agent.
Why it's on the list: One of the most complete, actively developed agent frameworks, and it keeps showing up in trending for a reason.
9. TencentCloud/TencentDB-Agent-Memory
- Repo: https://github.com/TencentCloud/TencentDB-Agent-Memory
- Category: AI Agents
- Status: New
A team-level memory hub for AI agents that converts conversations, docs, and code into four reusable memory assets: Chat Memory, Skill, LLM-Wiki, and Code-Graph. The assets are governed, shared, and equipped across agents and frameworks — tackling shared context rather than per-agent isolated memory.
Why it's on the list: Shared, governed memory is the missing piece for multi-agent teams, and this is a concrete implementation.
10. pingdotgg/t3code
- Repo: https://github.com/pingdotgg/t3code
- Category: CLI
- Status: New**
An "agent harness control surface" that lets you control the agents on your machine — Claude Code, Codex, Cursor, Grok Build, and OpenCode — from a mobile app, web app, or Electron desktop app, using your own existing subscriptions. It's a remote control for local agent harnesses rather than another agent itself.
Why it's on the list: As engineers run more harnesses in parallel, a unified control surface is a genuinely useful layer.
Honorable Mentions
- firecrawl/firecrawl — The web context API for agents: search, scrape, and convert pages into clean Markdown or structured data at scale.
- browserbase/stagehand — SDK for browser agents with self-healing actions, on top of familiar Playwright-style APIs in TS, Python, and Go.
- anomalyco/opencode — Open-source, terminal-first AI coding agent with broad model support and a one-line install.
- corsairdev/corsair — Unified integration layer for agents: connect once, get every integration, without the agent ever seeing credentials.
- superradcompany/microsandbox — Fast, local-first microVM runtime for running untrusted agent workloads, user code, and CI jobs in hardware isolation.
Sources
- anthropics/skills — https://github.com/anthropics/skills
- google/skills — https://github.com/google/skills
- PrimeIntellect-ai/prime-agent — https://github.com/PrimeIntellect-ai/prime-agent
- addyosmani/agent-skills — https://github.com/addyosmani/agent-skills
- NVIDIA-NeMo/Switchyard — https://github.com/NVIDIA-NeMo/Switchyard
- paperclipai/paperclip — https://github.com/paperclipai/paperclip
- BoundaryML/baml — https://github.com/BoundaryML/baml
- elizaOS/eliza — https://github.com/elizaOS/eliza
- TencentCloud/TencentDB-Agent-Memory — https://github.com/TencentCloud/TencentDB-Agent-Memory
- pingdotgg/t3code — https://github.com/pingdotgg/t3code
- firecrawl/firecrawl — https://github.com/firecrawl/firecrawl
- browserbase/stagehand — https://github.com/browserbase/stagehand
- anomalyco/opencode — https://github.com/anomalyco/opencode
- corsairdev/corsair — https://github.com/corsairdev/corsair
- superradcompany/microsandbox — https://github.com/superradcompany/microsandbox
More from Bookmarks