← All skills
Tencent SkillHub Β· AI

Context Anchor

Recover from context compaction by scanning memory files and surfacing where you left off. Use when waking up fresh, after compaction, or when you feel lost about what you were doing.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Recover from context compaction by scanning memory files and surfacing where you left off. Use when waking up fresh, after compaction, or when you feel lost about what you were doing.

⬇ 0 downloads β˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md, scripts/anchor.sh

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 10 sections Open source page

Context Anchor Skill

Helps agents recover context after compaction by scanning memory files and generating a "here's where you are" briefing.

Why This Exists

Context compaction loses memory. Files survive. But after waking up fresh, you need to: Know what you were working on See decisions that were made Find open loops that need closing Get oriented fast This skill automates that recovery.

Quick Start

# Full briefing (default) ./scripts/anchor.sh # Just show current task ./scripts/anchor.sh --task # Just show active context files ./scripts/anchor.sh --active # Just show recent decisions ./scripts/anchor.sh --decisions # Show open loops / questions ./scripts/anchor.sh --loops # Scan specific number of days back ./scripts/anchor.sh --days 3

What It Scans

SourceWhat It Extractsmemory/current-task.mdCurrent task status, blockers, next stepsmemory/YYYY-MM-DD.mdRecent daily logs (last 2 days by default)context/active/*.mdIn-progress task filesDaily logsDecisions (lines with "Decision:", "Decided:", "βœ…")Daily logsOpen loops (lines with "?", "TODO:", "Blocker:", "Need to")

Output Format

The script outputs a structured briefing: ═══════════════════════════════════════════════════════════ CONTEXT ANCHOR Where You Left Off ═══════════════════════════════════════════════════════════ πŸ“‹ CURRENT TASK ─────────────────────────────────────────────────────────── [Contents of memory/current-task.md or "No current task set"] πŸ“‚ ACTIVE CONTEXT FILES ─────────────────────────────────────────────────────────── β€’ context/active/project-name.md (updated 2h ago) └─ First line preview... 🎯 RECENT DECISIONS (last 2 days) ─────────────────────────────────────────────────────────── [2026-01-30] Decision: Use Cloudflare Pages for hosting [2026-01-30] βœ… Completed email capture setup ❓ OPEN LOOPS ─────────────────────────────────────────────────────────── [2026-01-30] Need to enable SFTP on NAS [2026-01-30] TODO: Create Product Hunt account ═══════════════════════════════════════════════════════════

Integration with AGENTS.md

Add to your "Every Session" routine: ## Every Session Before doing anything else: 1. Run `./skills/context-anchor/scripts/anchor.sh` for orientation 2. Read `SOUL.md` β€” this is who you are 3. Read `USER.md` β€” this is who you're helping ... Or use it manually when you feel lost about context.

Change workspace root

WORKSPACE=/path/to/workspace ./scripts/anchor.sh

Change days to scan

./scripts/anchor.sh --days 5 # Scan 5 days back

No Dependencies

Pure bash. Uses only: find, grep, head, tail, date, stat Works on macOS and Linux No external tools required

When to Use

Session start: Quick orientation on what's happening After compaction: Recover lost context Feeling lost: "Wait, what was I doing?" Handoff: Show another agent where things stand Daily review: See what decisions were made

Category context

Agent frameworks, memory systems, reasoning layers, and model-native orchestration.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs1 Scripts
  • SKILL.md Primary doc
  • README.md Docs
  • scripts/anchor.sh Scripts