explaingit

muratcankoylan/agent-skills-for-context-engineering

15,635PythonAudience · developerComplexity · 2/5Setup · easy

TLDR

A collection of 14 installable Claude Code skills that teach and implement context engineering patterns, helping AI agents manage what information fits in their limited attention window for better outcomes.

Mindmap

mindmap
  root((agent-skills))
    What It Is
      Claude Code skills
      14 installable plugins
      Context engineering
    Skill Categories
      Foundational patterns
      Memory architecture
      Evaluation frameworks
      Cognitive models
    Key Concepts
      Context compression
      LLM-as-a-Judge
      BDI modeling
    Audience
      Claude Code users
      Agent builders
      AI engineers
Click or tap to explore — scroll the page freely

Code map

Detail Auto

An interactive map of this repo's files and how they connect — its source is parsed live in your browser. Click Visualize to build it.

filefunction / class

Things people build with this

USE CASE 1

Install all 14 skills with a single command so Claude Code automatically applies context compression and memory patterns based on your current task.

USE CASE 2

Learn multi-agent memory architecture patterns including short-term working memory, long-term persistent storage, and graph-based memory design.

USE CASE 3

Apply LLM-as-a-Judge evaluation frameworks to measure and improve the quality of your AI agent's outputs.

Tech stack

Python

Getting it running

Difficulty · easy Time to first run · 5min

Requires Claude Code CLI, skills are installed with a single command and activate automatically.

In plain English

This repository is a collection of Agent Skills focused on a practice called context engineering, the discipline of managing what information gets fed into an AI language model's limited attention window. Unlike prompt engineering (which focuses on writing good instructions), context engineering deals with the full picture: system prompts, tool definitions, retrieved documents, conversation history, and tool outputs. The core insight is that as context grows longer, models start to struggle and miss information buried in the middle, so good context engineering means finding the smallest set of high-quality tokens that produce the best outcomes. The collection is organized into roughly four categories. Foundational skills cover concepts like context degradation and compression. Architectural skills address how to build multi-agent systems, design memory storage (short-term, long-term, and graph-based), and use filesystems for storing agent state. Operational skills cover topics like evaluation frameworks and LLM-as-a-Judge techniques for measuring quality. A newer cognitive architecture skill covers formal BDI (Beliefs-Desires-Intentions) modeling for deliberative AI agents. The skills are designed to work with Claude Code as a plugin marketplace, you can install all 14 skills in a single command and they activate automatically based on your task. The patterns are also platform-agnostic and intended to transfer across tools like Cursor and other agent platforms. The full README is longer than what was provided.

Copy-paste prompts

Prompt 1
Using the context compression skill from agent-skills-for-context-engineering, rewrite my 10,000-token conversation history into the smallest set of tokens that preserves all key decisions and open questions.
Prompt 2
Design a multi-agent memory architecture for a coding assistant using the memory storage patterns from this repo, covering short-term working memory and long-term persistent storage.
Prompt 3
Set up an LLM-as-a-Judge evaluation loop using the evaluation framework skill to score my AI agent's responses on task completion, conciseness, and accuracy.
Prompt 4
Walk me through the BDI cognitive architecture skill and show me how to apply Beliefs, Desires, and Intentions modeling to a customer support agent I'm building.
Open on GitHub → Explain another repo

← muratcankoylan on gitmyhub — every repo by this author, as a profile.

Verify against the repo before relying on details.