# Send Agent Skills Context Engineering to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "agent-skills-context-engineering",
    "name": "Agent Skills Context Engineering",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/levineam/agent-skills-context-engineering",
    "canonicalUrl": "https://clawhub.ai/levineam/agent-skills-context-engineering",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/agent-skills-context-engineering",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-skills-context-engineering",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "agent-skills-context-engineering",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T08:47:48.521Z",
      "expiresAt": "2026-05-06T08:47:48.521Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-skills-context-engineering",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-skills-context-engineering",
        "contentDisposition": "attachment; filename=\"agent-skills-context-engineering-1.2.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "agent-skills-context-engineering"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/agent-skills-context-engineering"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/agent-skills-context-engineering",
    "downloadUrl": "https://openagent3.xyz/downloads/agent-skills-context-engineering",
    "agentUrl": "https://openagent3.xyz/skills/agent-skills-context-engineering/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agent-skills-context-engineering/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agent-skills-context-engineering/agent.md"
  }
}
```
## Documentation

### Context Engineering Skill

OpenClaw wrapper for Agent Skills for Context Engineering by Muratcan Koylan.

### Trigger Phrases

Activate when user mentions:

"optimize context", "reduce token costs", "context compression"
"design multi-agent system", "implement supervisor pattern"
"implement memory", "build memory system"
"debug agent failure", "diagnose context problems"
"build agent tools", "evaluate agent performance"

### Available Sub-Skills

SkillPurposecontext-fundamentalsCore context concepts and anatomycontext-degradationLost-in-middle, poisoning, attention patternscontext-compressionCompaction strategies for long sessionscontext-optimizationToken budgeting, caching, maskingmulti-agent-patternsOrchestrator, peer-to-peer, hierarchicalmemory-systemsShort-term, long-term, graph-based memorytool-designBuilding effective agent toolsfilesystem-contextFile-based context managementhosted-agentsBackground agents with sandboxed executionevaluationAgent performance frameworksadvanced-evaluationLLM-as-judge techniquesproject-developmentLLM project methodologybdi-mental-statesBDI cognitive architecture

### Post-Install Setup (IMPORTANT — check on first load)

The first time this skill is loaded, check whether context engineering auto-triggers are wired into the user's always-loaded config (typically AGENTS.md, TOOLS.md, or equivalent).

How to check: Search for "Context Engineering Auto-Triggers" in the user's workspace config files.

If NOT found, prompt the user:

"I notice the context engineering auto-triggers aren't set up yet. These make your agent proactively apply context engineering best practices — like reading the right guidance before compaction, multi-agent spawns, or failure recovery. Want me to add them to your config? It's 6 rules, takes 30 seconds."

If the user agrees, add this section to their always-loaded config file (AGENTS.md, TOOLS.md, or equivalent):

## Context Engineering Auto-Triggers

When these conditions are detected, read the corresponding sub-skill before proceeding:
- Before compaction or context exceeds ~80K tokens → read context-compression
- When spawning 2+ subagents in one session → read multi-agent-patterns
- On 3+ task retries or agent loop → read context-degradation
- When building/designing agent tools → read tool-design
- When setting up memory/persistence → read memory-systems
- When reading 5+ files as context → read filesystem-context

Load from: https://raw.githubusercontent.com/muratcankoylan/Agent-Skills-for-Context-Engineering/main/skills/<sub-skill>/SKILL.md

If already wired, skip silently.

### Auto-Read Triggers

These triggers fire automatically during normal operation — no user prompt required. When you detect the condition, read the corresponding sub-skill before proceeding.

ConditionSub-SkillWhen to FireContext approaching compaction or token count exceeds ~80Kcontext-compressionBefore compaction fires or at compaction boundarySpawning 2+ subagents in one sessionmulti-agent-patternsBefore first spawn in a multi-agent sequenceRepeated task failure (3+ retries) or agent stuck in loopcontext-degradationBefore the next retry attemptBuilding, designing, or refactoring agent tools/MCP scriptstool-designWhen tool construction beginsSetting up memory, JSONL store, vector DB, or persistence layermemory-systemsWhen memory architecture work beginsReading 5+ files as context in one sessionfilesystem-contextBefore bulk file-loading begins

Loading instruction:

https://raw.githubusercontent.com/muratcankoylan/Agent-Skills-for-Context-Engineering/main/skills/<sub-skill>/SKILL.md

Read the sub-skill's SKILL.md, apply its guidance to the current task, then continue. No need to announce this to the user unless they ask why you paused.

### How to Load a Sub-Skill

Primary method (no setup required):

Read: https://raw.githubusercontent.com/muratcankoylan/Agent-Skills-for-Context-Engineering/main/skills/<sub-skill>/SKILL.md

Optional (for offline use):
Clone the submodule locally, then read from references/context-engineering-skills/skills/<sub-skill>/SKILL.md

### Attribution

All credit for the underlying context engineering principles belongs to Muratcan Koylan and contributors to the original repository.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: levineam
- Version: 1.2.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T08:47:48.521Z
- Expires at: 2026-05-06T08:47:48.521Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/agent-skills-context-engineering)
- [Send to Agent page](https://openagent3.xyz/skills/agent-skills-context-engineering/agent)
- [JSON manifest](https://openagent3.xyz/skills/agent-skills-context-engineering/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/agent-skills-context-engineering/agent.md)
- [Download page](https://openagent3.xyz/downloads/agent-skills-context-engineering)