GitHub spent the week leaning on Amazon's cloud to absorb agentic-development traffic, Business Insider reported June 16, after a run of AI-driven outages. As agents run at machine speed, this week's trending repos sit one layer down, in the security scanners, usage ledgers, memory graphs, gateways, and caches that keep them governable.

01

SkillSpector

NVIDIA's scanner inspects an AI agent skill before you install it, running 11 static analyzers, AST checks for exec, eval, and subprocess calls, and OSV.dev CVE lookups across 64 patterns in 16 categories, then an optional LLM pass filters false positives. It accepts a folder, a SKILL.md, a URL, or a zip, and emits SARIF for CI.

⭐ 7,570 Python Apache-2.0 Jun 16, 2026
Difficulty 2/5
Best fit: Platform and security teams that let engineers install third-party agent skills from public marketplaces and want a check before that code runs with real credentials.
Watch out: A clean scan is a floor, not a clearance; static analysis misses obfuscated, encrypted, or non-English payloads and anything that only turns hostile at runtime.
View on GitHub →
02

agentsview

This Go tool auto-discovers coding-agent sessions from Claude Code, Codex, Cursor, Gemini CLI, and more than 20 other agents, syncs them into a local SQLite database, and serves a 127.0.0.1 web UI with full-text search and per-day token-cost summaries. Session data stays on your machine, and telemetry is off by default.

⭐ 2,801 Go MIT Jun 18, 2026
Difficulty 2/5
Best fit: Engineering leads running several coding agents who want one local view of what each did and what it cost, without shipping session logs to a vendor.
Watch out: Coverage depends on the log files each agent leaves on disk, so agents in containers or with non-standard paths show up only partially, and the Postgres sync option adds its own credentials to manage.
View on GitHub →
03

codebase-memory-mcp

This MCP server parses a repository with tree-sitter across 158 languages into a persistent knowledge graph of calls, imports, and inheritance, so an agent queries structure instead of grepping file by file. The maintainers clock an average repo in milliseconds and log one five-query trace at about 3,400 tokens against roughly 412,000 for file-by-file search.

⭐ 5,728 C MIT Jun 13, 2026
Difficulty 3/5
Best fit: Teams whose coding agents burn tokens re-reading large repos and want a single static binary that auto-wires into Claude Code, Codex, Cursor, and Aider.
Watch out: Cypher access is read-only and tree-sitter gives syntax, not semantics, so the deeper type resolution covers only nine languages, and building from source needs a C compiler.
View on GitHub →
04

agentgateway

A Linux Foundation project written mostly in Rust, agentgateway routes traffic between agents and the models, tools, and other agents they call: an OpenAI-compatible LLM gateway with budgets and failover, an MCP gateway over stdio, HTTP, or SSE, and an agent-to-agent layer. It adds JWT and OAuth auth, CEL-based RBAC, rate limits, and content filtering, standalone or on Kubernetes.

⭐ 3,341 Rust Apache-2.0 Jun 17, 2026
Difficulty 4/5
Best fit: Platform teams putting auth, budgets, and policy in front of many agents and MCP servers at once, especially where a Kubernetes Gateway API already fits the stack.
Watch out: A central proxy is also a central point of failure and another network hop, and the full RBAC, mesh, and policy story assumes Kubernetes rather than a single app.
View on GitHub →
05

LMCache

LMCache treats an LLM's KV cache as a reusable asset instead of throwaway state, offloading it across GPU, CPU RAM, SSD, and remote stores like Redis or S3, and reusing prefixes (and non-prefixes, via CacheBlend) to cut time-to-first-token on long-context and RAG workloads. It plugs into vLLM and runs inside NVIDIA Dynamo.

⭐ 9,287 Python Apache-2.0 Jun 18, 2026
Difficulty 5/5
Best fit: Teams self-hosting vLLM for long-context or multi-turn agent traffic, where repeated prefill is the bottleneck and a shared cache tier pays for itself.
Watch out: The payoff depends on your serving stack, GPUs (CUDA or ROCm), and a storage backend, so this is an infrastructure commitment rather than a pip-install win, and the README ships no headline benchmark numbers.
View on GitHub →
⭐ Repo of the Week

SkillSpector

Two of this week's biggest climbers were skill bundles: addyosmani/agent-skills passed 62,000 stars and phuryn/pm-skills passed 19,000, both collections of ready-made instructions that coding agents load and run. SkillSpector scans those bundles before they execute. Its README reports that 26 percent of the skills it studied carried vulnerabilities and 5 percent showed likely malicious intent, a problem because a skill's code runs with the agent's own credentials and file access.

The way to test it is as a CI gate. Point skillspector scan at the next skill or marketplace a team wants to adopt, then wire its SARIF output into the pipeline so a failing scan blocks the merge, and turn on the optional LLM pass only after reviewing the raw static findings. A useful outcome is a short, reviewed allowlist of skills that cleared the scan before installation rather than after an incident. The scanner reads source statically, so obfuscated, encrypted, or non-English payloads still need a human reviewer.

View SkillSpector on GitHub →

Frequently Asked Questions

How were these projects selected?

Current GitHub metadata, recent activity, README clarity, practical setup path, and relevance to builders working with AI systems.

Are stars enough?

No. Stars measure attention. Push dates, license, issues, docs, and whether the project solves a specific workflow decide usefulness.

What does the difficulty score mean?

It estimates how hard the project is to test or adapt, not how impressive the underlying engineering is.

Which repo should readers try first?

agentsview installs in one command and runs locally, so it is the easiest test. SkillSpector is the more strategic experiment for teams adopting third-party agent skills.

What should teams check before production use?

License, data retention, credential access, update speed, maintainer responsiveness, and whether the repo has a realistic rollback path.

AI-generated summary, reviewed by an editor. More on our AI guidelines.

How to Build AI Agents: Complete Tutorial with Code Examples
Learn to build AI agents that actually do things—not just chat. This step-by-step tutorial covers the 4 core components, provides working code examples, and shows how to deploy production-ready agents that can use tools and complete complex tasks.
Anthropic Adds Auto Dream to Claude Code for Memory Cleanup
Anthropic began rolling out Auto Dream, a background sub-agent that consolidates Claude Code's memory files between sessions. The four-phase cycle fixes duplicates, stale dates, and contradictions that degraded auto-memory quality after 20+ sessions. The system prompt is already public on GitHub.
Google A2A: New Protocol Lets AI Agents Work Together
Google just launched a protocol that turns isolated AI agents into teams of digital workers. The Agent2Agent (A2A) standard arrives with backing from SAP, PayPal, MongoDB, and 50 other tech leaders.
Tools & Workflows

San Francisco

Editor-in-Chief and founder of Implicator.ai. Former ARD correspondent and senior broadcast journalist with 10+ years covering tech. Writes daily briefings on policy and market developments. Based in San Francisco. E-mail: editor@implicator.ai