Agent skill · AI & Agents

context-fundamentals

Context is the complete state available to a language model at inference time. It includes everything the model can attend to when generating responses: system instructions, tool definitions, retrieved documents, message history, and tool outputs.

Nick44,086★ · +407/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill context-fundamentals --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 12 KB
Bundled scripts: none
Path: skills/context-fundamentals/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Context Engineering Fundamentals Context is the complete state available to a language model at inference time. It includes everything the model can attend to when generating responses: system instructions, tool definitions, retrieved documents, message history, and tool outputs. Understanding context fundamentals is prerequisite to effective context engineering. ## When to Use Activate this skill when: - Designing new agent systems or modifying existing architectures - Debugging unexpected agent behavior that may relate to context - Optimizing context usage to reduce token costs or improve performance - Onboarding new team members to context engineering concepts - Reviewing context-related design decisions ## Core Concepts Context comprises several distinct components, each with different characteristics and constraints. The attention mechanism creates a finite budget that constrains effective context usage. Progressive disclosure manages this constraint by loading information only as needed. The engineering discipline is curating the smallest high-signal token set that achieves desired outcomes. ## Detailed Topics ### The Anatomy of Context **System Prompts** System prompts est

What's inside
Steps it walks through
  1. When to Use
  2. Core Concepts
  3. Detailed Topics
  4. The Anatomy of Context
  5. Context Windows and Attention Mechanics
  6. Context Quality Versus Context Quantity
  7. Context as Finite Resource
  8. Practical Guidance
  9. File-System-Based Access
  10. Hybrid Strategies
  11. Context Budgeting
  12. Examples
  13. Guidelines
  14. Integration
More from agentic-awesome-skills
All skills →
About this skill
What does the context-fundamentals skill do?

Context is the complete state available to a language model at inference time. It includes everything the model can attend to when generating responses: system instructions, tool definitions, retrieved documents, message history, and tool outputs.

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill context-fundamentals --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going