CtrlK
BlogDocsLog inGet started
Tessl Logo

context-shredding

Runtime context compression for agents approaching model context limits. Defines 3 compression tiers (full/summarized/minimal) with per-artifact templates. USE FOR: reducing artifact loading size at runtime, context budget management. DO NOT USE FOR: diagnostic context auditing (use context-optimizer), Azure infrastructure.

77

Quality

71%

Does it follow best practices?

Impact

Pending

No eval scenarios have been run

SecuritybySnyk

Passed

No known issues

Optimize this skill with Tessl

npx tessl skill review --optimize ./.github/skills/context-shredding/SKILL.md
SKILL.md
Quality
Evals
Security

Context Shredding Skill

Runtime compression system that actively reduces context when agents approach model limits. Agents check approximate context usage before loading artifact files and select the appropriate compression tier.

When to Use

  • Before loading a predecessor artifact file (01 through 07)
  • When conversation length suggests >60% of model context is used
  • When an agent needs to load multiple large artifacts

Compression Tiers

TierContext UsageStrategy
full< 60%Load entire artifact — no compression
summarized60-80%Load key H2 sections only
minimal> 80%Load decision summaries only (< 500 chars)

Action Rules

Before loading any artifact file:

  1. Estimate context usage — count approximate conversation tokens
  2. Select tier based on the thresholds above
  3. Apply compression template from the reference doc below
  4. If loading multiple artifacts, compress the older/less-critical ones first

Tier Selection Protocol

1. Estimate current context usage (rough: 1 token ≈ 4 chars)
2. Check model limit (Opus: 200K, GPT-5.3-Codex: 128K)
3. Calculate usage percentage
4. Select tier:
   < 60%  → full (no compression needed)
   60-80% → summarized (key sections only)
   > 80%  → minimal (decision summaries only)
5. Load artifact/skill using the appropriate variant

Skill Loading Tiers

Skills also have compression tiers (digest and minimal variants):

Context UsageSkill VariantPath PatternApprox Tokens
< 60%FullSKILL.md400-800
60-80%DigestSKILL.digest.md150-320
> 80%MinimalSKILL.minimal.md40-100

Available for: azure-defaults, azure-artifacts, golden-principles, context-shredding.

Reference Index

ReferenceFileContent
Compression Templatesreferences/compression-templates.mdPer-artifact H2 sections per tier
Repository
jonathan-vella/azure-agentic-infraops
Last updated
Created

Is this your skill?

If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.