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

Turns fragile, implicit search progress into explicit, persistent, shared state for multi-agent information seeking — externalizes progress as Frontier Task, Evidence Graph, Coverage Map and Failure Memory, and uses pipeline-parallel scheduling plus a middleware harness to avoid repeated failed searches and improve utilization and throughput.

GitHub
AI Agent2026

Provides a lightweight Python harness that turns LLMs into working agents with tool-use, skills, persistent memory, permission controls and multi-agent coordination. Ships with a CLI/React TUI, 43+ built-in tools, a plugin/skill system and the ohmo personal-agent for chat gateways. Best for developers prototyping agent workflows and multi-agent experiments.

GitHub
AI Client2025

Turns Chromium into a local-first AI browser with an embedded assistant that can summarise pages, extract structured data, automate web tasks, and run scheduled agents. Built as an open-source Chromium fork with 53+ built-in browser tools, 40+ app integrations, and support for BYO AI keys or fully local models (Ollama / LM Studio).