context-engineering-collection

Provides structured guidance for context engineering, multi-agent architectures, and agent system evaluation.

1|Updated Feb 18, 2026
One-click install
npx skills add https://github.com/Cramer-69/skills-repository-3af2d1c7 --skill context-engineering-collection-cramer-69
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: context-engineering-collection
Source: https://github.com/Cramer-69/skills-repository-3af2d1c7/tree/main/packages/Agent-Skills-for-Context-Engineering
Command: npx skills add https://github.com/Cramer-69/skills-repository-3af2d1c7 --skill context-engineering-collection-cramer-69

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Building production AI agents fails when context windows degrade: lost-in-the-middle attention, context poisoning, and uncontrolled token growth. This collection provides the principles and patterns to curate context effectively across agent systems. ## Core Features & Use Cases - Foundational Context Skills: Covers context fundamentals, degradation patterns, compression, and optimization techniques like compaction, masking, and KV-cache prefix reuse. - Architectural Patterns: Guidance on multi-agent orchestration, memory systems, tool design, filesystem-based context, and hosted sandboxed agents. - Evaluation & Methodology: Frameworks for agent evaluation, LLM-as-a-Judge techniques, and end-to-end LLM project development from ideation to deployment. - Use Case: When designing a multi-agent research system, activate the relevant skills to decide between supervisor and peer-to-peer patterns, design sub-agent context isolation, and set up structured summarization for long sessions. ## Quick Start Ask the agent to explain context engineering fundamentals and recommend an architecture for your agent system.

Frequently Asked Questions about context-engineering-collection

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I prevent context degradation in long-running AI agents?▼

Apply context compression techniques like structured summarization with explicit sections for files, decisions, and next steps. Combine with observation masking to replace verbose tool outputs with references, and isolate work across sub-agents with separate context windows.

What multi-agent architecture pattern should I use for my agent system?▼

Production systems converge on three patterns: supervisor/orchestrator for centralized control, peer-to-peer swarms for flexible handoffs, and hierarchical structures for complex decomposition. Sub-agents exist primarily to isolate context, not to simulate organizational roles.

Does this skill collection work with Cursor and other agent platforms?▼

Yes, the skills are platform-agnostic and work with Claude Code, Cursor, Codex, or any agent framework supporting custom instructions. For Cursor, copy skill content into .rules files or project-specific Skills folders.

How do I evaluate AI agent performance in production?▼

Use multi-dimensional rubrics covering factual accuracy, completeness, tool efficiency, and process quality. Combine LLM-as-a-Judge for scalability with human evaluation for edge cases, and use end-state evaluation for agents that mutate persistent state.

When should I use filesystem-based context instead of vector RAG?▼

Use the filesystem-as-memory pattern when agents need just-in-time context loading without stuffing context windows. Tools like ls, glob, grep, and read_file often outperform semantic search for structural queries and tool output offloading.