AIAny
Icon for item

Agent Skills for Context Engineering

Fifteen reusable agent skills for curating LLM context windows, treating attention decay—not token capacity—as the real constraint. A routing layer benchmarked at 0.92 top-1 accuracy selects the right skill for each task.

Introduction

Most context-engineering advice assumes the bottleneck is how many tokens a model can hold. This collection starts from the opposite claim: the binding constraint is attention, not capacity, and long contexts fail predictably through lost-in-the-middle effects and attention scarcity well before the window is full. Its core move is to treat curation as a reusable, versioned skill rather than a one-off prompt you rewrite for every project.

What Sets It Apart
  • Fifteen skills span foundations, architecture, operations, and cognitive modeling, surfaced through progressive disclosure so only the relevant one enters the window—the design eats its own dog food on context budgeting.
  • A routing mechanism decides which skill fires for a given task; it was benchmarked across four frontier models with measured effect sizes, reaching 0.92 top-1 accuracy on newer ones, so selection is empirical rather than guesswork.
  • A researcher/ operating system keeps append-only ledgers with novelty gates and human oversight, giving the set institutional memory and a data-driven path to evolve instead of bit-rotting.
  • Skills are written as Python pseudocode and target Claude Code, Cursor, Codex, and Copilot alike, so the ideas are not tied to one vendor's runtime.
Who It's For

Great fit if you build multi-step agents and keep hitting quality cliffs as context grows, or if you want a vendor-neutral vocabulary for context engineering backed by measured benchmarks. Look elsewhere if you expect a drop-in library—these are conceptual skills plus pseudocode you adapt by hand, not an installable framework, and the benchmark numbers come from the author's own harness rather than independent replication.

Information

  • Websitegithub.com
  • AuthorsMuratcan Koylan
  • Published date2025/12/21

More Items

Hugging Face
AI Model2026

Open-weights LLM fine-tuned for phone-based voice agents that prioritizes low latency and reliable tool/function calling. Based on NVIDIA Nemotron 3 Nano (30B total, 3.5B active), supports very long contexts (262,144 tokens) and recommends temperature=0 with thinking disabled for deployment.

GitHub
AI Agent2026

A curated collection of production-ready Agent Skills that turn tasks—presentation production, image generation, local KB retrieval, article assembly, and web-design—into agent-loadable skill folders. Uses a SKILL.md contract, supports multiple agent runtimes (Claude Code, Cursor, Codex), and offers modular install paths with pinned release zips.

GitHub
AI Agent2026

Provides a ruleset and skills that make AI coding agents prefer the simplest correct implementation: reuse existing code, prefer stdlib/native features, and only write minimal new code. Cuts generated LOC, tokens, cost and time while preserving validation and safety.