
GitHub Trending Top 10: Context compression takes over (Jun 15–22)
Six of this week's ten repos serve the AI agent infrastructure stack. Headroom (Netflix engineer, +16K stars) attacks token cost by compressing everything agents read before it reaches the LLM; codebase-memory-mcp (pure C, +6K) builds persistent codebase knowledge graphs that replace file-by-file exploration with structured queries at 99% fewer tokens. Agent-Reach (+8K) gives agents free internet access across 16+ platforms using cookie-auth CLI tools instead of paid APIs. Also: iptv-org/iptv (+7K), TimesFM 2.5 (Google, +4K), OpenMontage (+3K), system_prompts_leaks (+2K), and Flue 1.0 Beta from the Astro team.
#1 · chopratejas/headroom — 44,392 stars · +16,102 this week
Kompress-v2-base (a custom HuggingFace model for natural language), SmartCrusher (JSON structure compression), and CodeCompressor (AST-aware code compression). CacheAligner stabilizes KV caches across compressed inputs so provider caching still applies. CCR (reversible compression) caches originals for retrieval on demand, so nothing is destructively lost. Six deployment modes cover every integration pattern: library (compress(messages) in Python/TS), proxy (headroom proxy --port 8787), agent wrapper (headroom wrap claude|codex|cursor|aider|copilot), MCP server, cross-agent memory, and headroom learn (mines failed sessions and writes corrections to CLAUDE.md/AGENTS.md). One underreported capability: output token reduction — Headroom also trims what the model writes back, cutting ceremonial preambles and restated code. 1
#2 · Panniantong/Agent-Reach — 36,854 stars · +8,233 this week
twitter-cli (cookie auth) with OpenCLI as fallback; Reddit uses OpenCLI (browser login state) with rdt-cli as fallback; YouTube uses yt-dlp (no auth needed, 154K stars); Bilibili uses bili-cli (no login required, replaced yt-dlp after anti-bot blocks in Jun 2026); Web search uses Exa via free MCP through mcporter. Backends are probed at runtime — not just checked for existence, actually tested — and the first working one is selected. agent-reach doctor shows each channel's status and active backend. 34browser-use (Chromium automation): Agent-Reach is faster and lighter but can't handle sites without CLI coverage. Against writing your own shell script: the value is the curator's judgment — knowing which Reddit CLI is currently stable, which Xiaohongshu crawler survived the latest anti-scraping update. Bus Factor = 1 (solo maintainer, no test suite, author describes it as "pure vibe coding"). Cookie-auth legality is platform-specific and unresolved. Those are real risks on a project this young. 4#3 · iptv-org/iptv — 127,125 stars · +7,266 this week
iptv-org.github.io/iptv/index.m3u. No video files are stored in the repository; it contains only URLs. Organized across 29 content categories (news: 976 channels, entertainment: 690, sports: 422), hundreds of languages (English: 2,501, Spanish: 2,043, Russian: 458, Chinese: 211), and per-country breakdowns. NSFW channels were removed in January 2024 (Issue #15723). CC0/Unlicense — full public domain. 34,151 commits, 7K+ forks. 56
#4 · DeusData/codebase-memory-mcp — 10,300+ stars · +6,372 this week
tsserver, pyright, gopls, Roslyn, Eclipse JDT, and rust-analyzer. The team-sharing pattern is a zstd-compressed SQLite snapshot (.codebase-memory/graph.db.zst) — commit it to git and teammates get zero-reindex onboarding. A built-in 3D visualization UI runs at localhost:9749. Security posture: 5,604 passing tests, SLSA Level 3 build provenance, VirusTotal scanning on every release. 78
localhost:9749 — node types (functions, classes, modules, routes) and edge types (calls, imports, defines) filter on the left panel 7trace_path returning incomplete caller sets with .d.ts ambient declarations (#546). 9trace_path, query_graph) against your actual codebase before committing — those are where the token savings are real; general file-content queries still favor direct file exploration.#5 · addyosmani/agent-skills — ~64,800 stars · +5,320 this week (continued from W24)
SKILL.md files landed in the Jun 15–22 window. All 16 merged PRs were documentation improvements, CI fixes, and bugfixes to existing skills. The notable new artifact: docs/comparison.md (Jun 20), an honest side-by-side against Superpowers (obra) and Matt Pocock's skills framework. 1011SKILL.md files (Spec → Plan → Build → Test → Review → Simplify → Ship), compatible with Claude Code, Cursor, Gemini CLI, Codex, Windsurf, and four others. v0.6.2 shipped Jun 11.
SKILL.md file 10#6 · google-research/timesfm — ~24,900 stars · +4,114 this week
pip install timesfm[torch] or timesfm[flax], in BigQuery ML, Google Sheets, and Vertex Model Garden. v2.0.1 released Jun 11, 2026; fine-tuning support via HuggingFace Transformers + PEFT/LoRA landed Apr 9. Apache 2.0, not an officially supported Google product. 1415#7 · NVIDIA/SkillSpector — 9,029 stars · +3,733 this week (continued from W24)
input_handler.py (#109), an evasion bypass via substring matching (#110), and an import-alias evasion in AST/taint analyzers (#114). The tool designed to catch security problems in AI skills has security problems. 18#8 · calesthio/OpenMontage — 8,731 stars · +2,867 this week
skills/pipelines/), technique guides (skills/creative/), tool guides (skills/core/), and external tech knowledge packs (.agents/skills/). Twelve pipeline types include Animated Explainer, Cinematic, Documentary Montage, Talking Head, Avatar Spokesperson, Clip Factory, and Localization & Dub. Provider support spans 14 video generation services (Kling, Runway Gen-4, Google Veo 3, local WAN 2.1/Hunyuan/CogVideo), 10 image generation services, 4 TTS providers, Suno for music, and FFmpeg for post-production. A zero-API-key path exists using Piper (offline TTS), Archive.org/NASA/Wikimedia Commons (free footage), and Remotion + FFmpeg. Claimed cost: $0.15–$3.00 per video with API keys. AGPLv3. 21#9 · asgeirtj/system_prompts_leaks — 44,397 stars · +1,984 this week
#10 · withastro/flue — 6,297 stars · +1,272 this week
@flue/react hooks for agent UIs, and a revamped @flue/sdk. The flue add pattern is shadcn-style for agents — flue add channel slack, flue add sandbox daytona — and agents read Markdown blueprints to integrate new capabilities. Deploy targets: Node.js, Cloudflare Workers, GitHub Actions, GitLab CI/CD, Daytona, Render, Railway, Fly, SST, AWS. Database adapters: Postgres, MySQL, Redis, MongoDB, Supabase. Observability: OpenTelemetry, Braintrust, Sentry. 24flue add ergonomics will feel familiar if you've used shadcn.Three patterns this week
skillspector scan before installing community skills becomes a standard hygiene step.참고 출처
- 1GitHub: chopratejas/headroom
github.com
- 2Open Source For You: Netflix engineer open-sources AI cost-cutting tool
opensourceforu.com
- 3GitHub: Panniantong/Agent-Reach
github.com
- 4
- 5GitHub: iptv-org/iptv
github.com
- 6iptv-org PLAYLISTS.mdgithub.com
- 7GitHub: DeusData/codebase-memory-mcp
github.com
- 8
- 9
- 10GitHub: addyosmani/agent-skills
github.com
- 11GitHub: agent-skills comparison.mdgithub.com
- 12
- 13GitHub Issue #256: fake engagement alert
github.com
- 14GitHub: google-research/timesfm
github.com
- 15AI Multiple: Time series foundation models
aimultiple.com
- 16Parseable: Zero-Shot Forecasting for Observability
parseable.com
- 17Hacker News: TimesFM discussion
news.ycombinator.com
- 18GitHub: NVIDIA/SkillSpector Issues
github.com
- 19GitHub: NVIDIA/SkillSpector README
github.com
- 20
- 21GitHub: calesthio/OpenMontage
github.com
- 22GitHub: asgeirtj/system_prompts_leaks
github.com
- 23AI Thinker Lab: AI system prompts leaked
aithinkerlab.com
- 24Flue 1.0 Beta announcement
flueframework.com
- 25GitHub: withastro/flue
github.com

GitHub Trending Top 10 Brief
Each week, pull GitHub Trending's top 10 repos and write a 200-word deep positioning for each: problem solved, tech stack, differentiation from existing solutions, and whether it's worth a star
이 콘텐츠는 채널이 자동으로 생성했습니다. 한 문장이면 Neodrop이 당신을 위해 계속 만들어 냅니다.
관련 콘텐츠
- 로그인하면 댓글을 작성할 수 있습니다.