
GitHub Trending Top 10: The agent skills ecosystem splits (Jun 8–15)
This week's ten repos split along new lines: four agent skill entries (addyosmani/agent-skills, taste-skill, pm-skills, graphify) tackle engineering discipline, design taste, product management, and codebase navigation — while NVIDIA shipped SkillSpector, the first security scanner purpose-built for skill files. Block's goose agent completed its migration to the Linux Foundation's Agentic AI Foundation. The non-skills entries cover apple/container 1.0.0 (per-container VM isolation on macOS), microsoft/markitdown (153K stars, reliable for Office files but poor PDF), roboflow/supervision (v0.29 RC, 240× mask memory reduction), and refactoringhq/tolaria (git-backed Markdown knowledge base with native MCP integration). All 10 entries include problem, stack, differentiation, and a clear star/skip verdict.

Vistazo a la investigación
#1 · addyosmani/agent-skills — ~59,500 stars · +10,445 this week
SKILL.md files encoding the practices that distinguish production code from demo code. The README's stated premise: "Skills encode the workflows, quality gates, and best practices that senior engineers use when building software. 'Seems right' is never sufficient." 1/spec, /plan, /build, /test, /review, /code-simplify, /ship), and 4 reference checklists. Each skill embeds Google engineering concepts explicitly: Hyrum's Law (API surface management), the Beyonce Rule (test coverage), Chesterton's Fence (before removing code), trunk-based development, and shift-left CI. Each skill also includes an anti-rationalization table — a list of reasons an agent commonly uses to skip the skill, with counter-arguments for each. Compatible with Claude Code (recommended), Cursor, Gemini CLI, Codex, Windsurf, OpenCode, GitHub Copilot, and Kiro. v0.6.2 shipped June 11. 1#2 · apple/container — ~37,000 stars · +10,021 this week
Virtualization.framework, isolating them at the hypervisor boundary. 4Virtualization.framework for VM management, vmnet for networking, XPC for inter-process communication, launchd for lifecycle, Keychain for credential storage. The project reached 1.0.0 on June 9 — its first birthday. 5 The headline v1.0.0 feature is container machine: a persistent Linux development environment (OCI image–based) that auto-shares your macOS username and home directory, supports systemd, and behaves more like WSL for Mac than a traditional Docker replacement. 5 TOML configuration files replace the previous UserDefaults approach; container cp for file transfer and structured JSON/YAML/TOML output were also added. macOS 26 is the target; macOS 15 runs but lacks network isolation and multi-network support.docker.sock exposure was closed as not planned. 6 A third-party container-compose project exists as a workaround. Memory ballooning is incomplete: memory freed by Linux processes doesn't return to macOS, so memory-intensive multi-container workloads may need occasional VM restarts. Twelve-plus new issues opened June 11–14 report DNS failures, ECR push 401 errors, and host-to-container network breakage. 7 Colima supports Docker Compose and custom VMs today and has signaled future support for the Containerization backend — teams dependent on Compose should stay on Colima or Docker Desktop for now. 8container machine feature is the more interesting path — it's a better Mac-native Linux dev environment than a Docker Desktop replacement. Hold off on production container workflows until the 1.0.0 post-release bug reports stabilize.#3 · Leonxlnx/taste-skill — ~43,700 stars · +7,591 this week
npx skills add. The default taste-skill (currently v2 experimental) works by reading a brief, inferring a design language, then adjusting three calibration knobs: VARIANCE (1–10, how far from convention), MOTION (1–10, animation intensity), and DENSITY (1–10, content density). The skill includes a strict em-dash prohibition (em dashes are a detectable AI writing tic that bleeds into UI copywriting), a GSAP animation skeleton, and a re-designed audit protocol. The repo ships ten specialized variants beyond the default: gpt-taste (strict GPT/Codex mode), image-to-code (screenshot → analysis → code), redesign (refactoring existing UIs), soft-skill, minimalist-skill, brutalist-skill, output-skill, stitch-skill (Google Stitch–compatible), plus brandkit. Three image generation skills for visual mock-ups round it out. 107 commits, 3,100 forks. 9[email protected] and X/@lexnlin.
redesign or image-to-code as the workflow calls for them. Use taste-skill-v1 for production if you need stability while v2 experimental settles.#4 · microsoft/markitdown — ~153,000 stars · +6,280 this week
convert() call, designed specifically for LLM ingestion rather than human-readable output. 10mammoth (DOCX), pandas (tabular), python-pptx, pdfminer.six, and BeautifulSoup. v0.1.6 (May 26) added Azure Content Understanding integration — the only path to video conversion, and a higher-quality cloud option for audio transcription and structured field extraction (invoice numbers, contract terms as YAML front matter). An optional OpenAI client parameter enables GPT-4o vision descriptions of images found in documents. Currently 153K total stars (global rank ~#49), 10.6K forks, 309 commits. 11pdfminer.six) does text-stream extraction only, no layout analysis. Word, Excel, and PowerPoint conversions are genuinely solid. The LLBBL blog framing is accurate: "Pandoc is for publishing. MarkItDown is for feeding AI." 13 They aren't competing — Pandoc converts for human consumption (40+ output formats), markitdown converts for LLM consumption (Markdown only). 13pymupdf or marker-pdf instead. The 153K star count reflects the problem's universality more than the solution's completeness.#5 · safishamsi/graphify — ~67,200 stars · +5,478 this week
/graphify . on any project folder and outputs a queryable knowledge graph (graph.html + GRAPH_REPORT.md + graph.json), so the agent navigates the codebase by querying nodes and edges rather than grepping files. 14graphifyy), 36 tree-sitter language grammars, NetworkX for graph construction, Leiden algorithm for community detection. Two-pass processing: Pass 1 is local AST extraction via tree-sitter (zero token cost), Pass 2 is AI semantic extraction applied only to non-code files like PDFs, images, and Markdown. Each graph edge carries a confidence label — EXTRACTED (1.0), INFERRED (0.7–0.9), or AMBIGUOUS (<0.7). Optional extensions add MCP server, Neo4j/FalkorDB export, Ollama local inference, and faster-whisper audio transcription. git hook integration auto-rebuilds the graph on commit. 14 YC S26 company (Graphify Labs), 91 contributors, 748 commits, 156 open issues. 15code-review-graph (CRG) on a large monorepo. Graphify needed 2 actual code lookups for targeted feature work; CRG needed 36 tool calls. CRG's advantage was speed (0.425s incremental updates vs. graphify's ~10s) and SQLite storage with semantic search. 16 The week's active issue queue shows real edge cases: Go cross-package calls (#1313), TypeScript workspace imports (#1308), PowerShell modules not indexed (#1315), injected field call edges missing (#1316). Community engagement is high but so is unresolved surface area. 15#6 · NVIDIA/SkillSpector — ~5,300 stars · +3,669 this week
SKILL.md, Python scripts, config YAMLs, or full skill repos — before you install them, scoring the risk on a 0–100 scale. 17
skillspector scan before installing any community skill is low-friction audit hygiene. Don't gate production CI/CD on it yet: zero formal releases means the API surface can change without notice.#7 · refactoringhq/tolaria — ~16,200 stars · +3,592 this week
.md file, every vault is a git repository, and the whole thing runs offline — no account, no subscription, no export step. The AI integration is direct: a built-in MCP server lets Claude Code, Codex CLI, and Gemini CLI read and write vault notes directly. 21
brew install --cask tolaria. Each vault is a git repo with built-in diff visualization. The app opinionates note organization: typed notes (Essays, Projects, People, etc.), relationships between notes, wikilinks, a whiteboard view, and AI chat sidebar. v2026-06-14 stable shipped June 14, with menu/tooltip clarity improvements, IME punctuation fixes, and cross-platform path resolution. 3,095 commits, 1,284 releases (including Alpha builds). 23 The Show HN post gathered 318 points and 143 comments. 24create_note false-success reports, Windows wikilink path failures, macOS refresh loops (all reported June 11–14). 25#8 · roboflow/supervision — ~44,200 stars · +3,315 this week
annotators (customizable bounding box, label, track path renderers), datasets (load/split/merge COCO/YOLO/Pascal VOC formats), trackers (ByteTrack, SORT, BotSort), metrics (mAP, mAR). v0.28.0 (April 30) added CompactMask — the same 28 instance segmentation masks that previously consumed ~55MB now use ~237KB (a 240× reduction) via RLE encoding on tight bounding-box crops. 27 SAM3 text-prompt segmentation support also landed in v0.28.0. v0.29.0rc0 appeared June 11 as a release candidate. 4,894 commits, 3,900 forks. 26CompactMask optimization alone is worth it for any project running instance segmentation at scale. Wait for v0.29 stable before upgrading from v0.28 in production — the RC appeared June 11 and the stable release is imminent.#9 · aaif-goose/goose — ~49,400 stars · +2,165 this week
block/goose to the Linux Foundation's Agentic AI Foundation (AAIF), alongside Anthropic's MCP and OpenAI's AGENTS.md as the three founding projects. 29/goal self-evaluation command, Hooks system, and Russian/Turkish language support. 30 Block reports 60% of its 12,000 employees use goose weekly, citing 50–75% development time savings on applicable tasks. 31#10 · product-on-purpose/pm-skills — ~314 stars · trending this week
pm-critic, pm-skill-auditor, pm-changelog-curator, pm-release-conductor), 10 /workflow-* orchestration commands, 95+ real-world sample outputs, and a /chain temporary skill-chain runner. v2.26.0 is current, marking the end of a "quality-convergence" pass: all 26 original-generation skills now carry "When NOT to Use" boundary pointers and enumerated output contracts. 34 6 contributors, 716 commits.pm-skills-mcp) entered maintenance mode on May 4 — security patches only, v2.9.x line. 34 pm-skills is currently the only agent skill collection covering the full PM lifecycle end-to-end; single-point PM tools exist but nothing with this scope./chain runner is the highest-leverage new feature for running multi-skill PM workflows without manually sequencing commands.Three patterns this week
graph.html + graph.json (inspectable text files). These aren't coincidences — they're converging on a preference for durable, version-controllable, human-readable outputs over platform-locked abstractions. The AI-native angle is practical: plain files can be read by any model without format translation.Fuentes de referencia
- 1GitHub: addyosmani/agent-skills
- 2O'Reilly Radar: Agent Skills Work but the Research Shows Most Teams Are Building Them Wrong
- 3GitHub Issues: addyosmani/agent-skills
- 4GitHub: apple/container
- 5GitHub: apple/container release 1.0.0
- 6DEV Community: Apple's container just hit v1.0.0
- 7GitHub Issues: apple/container
- 8Paulo Diovani: About new Apple container and alternatives
- 9GitHub: Leonxlnx/taste-skill
- 10GitHub: microsoft/markitdown
- 11Microsoft: markitdown releases
- 12yage.ai: MarkItDown — Is It Actually Any Good?
- 13LLBBL Blog: Pandoc vs MarkItDown
- 14GitHub: safishamsi/graphify
- 15GitHub Issues: safishamsi/graphify
- 16dev.to: Graphify + code-review-graph — Build a Self-Updating Knowledge Graph
- 17GitHub: NVIDIA/SkillSpector
- 18Medium: SkillSpector — Security Scanning for AI Agent Skills Before Installation
- 19NVIDIA Technical Blog: NVIDIA-Verified Agent Skills
- 20GitHub Issues: NVIDIA/SkillSpector
- 21GitHub: refactoringhq/tolaria
- 22Tolaria official website
- 23refactoringhq/tolaria releases
- 24HN: Show HN — Tolaria
- 25GitHub Issues: refactoringhq/tolaria
- 26GitHub: roboflow/supervision
- 27roboflow/supervision releases
- 28LearnOpenCV: Multi-Object Tracking with Roboflow Trackers
- 29GitHub: aaif-goose/goose
- 30aaif-goose/goose releases
- 31AI Tool Analysis: Goose AI Review 2026
- 32Tessera: Goose moves to the Linux Foundation
- 33DevToolLab: Best Open Source Alternatives to Claude Code 2026
- 34GitHub: product-on-purpose/pm-skills
Añade más opiniones o contexto en torno a este contenido.