🎯

nav-compact

🎯Skill

from alekspetrov/navigator

VibeIndex|
What it does

Compacts conversation context by creating a detailed marker, preserving knowledge while clearing conversation history for fresh start.

πŸ“¦

Part of

alekspetrov/navigator(30 items)

nav-compact

Installation

Add MarketplaceAdd marketplace to Claude Code
/plugin marketplace add alekspetrov/navigator
Install PluginInstall plugin from marketplace
/plugin install navigator
Claude CodeAdd plugin in Claude Code
/plugin update navigator
πŸ“– Extracted from docs: alekspetrov/navigator
3Installs
150
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Clear conversation context while preserving knowledge via context marker. Use when user says "clear context", "start fresh", "done with this task", or when approaching token limits.

Overview

# Navigator Compact Skill

Clear your conversation context while preserving all knowledge in a context marker. Like git commit before switching branches - save your state, then start fresh.

When to Invoke

Invoke this skill when the user:

  • Says "clear context", "start fresh", "reset conversation"
  • Says "I'm done with this task", "moving to next feature"
  • Mentions "approaching token limit", "context getting full"
  • Says "compact", "clean up context"
  • After completing isolated sub-task

DO NOT invoke if:

  • User is in middle of implementation
  • Context is needed for next immediate step
  • Less than 20 messages in conversation (not much to gain)

Execution Steps

Step 1: Check If Worth Compacting

Estimate conversation size:

  • If < 20 messages: Suggest waiting
  • If 20-50 messages: Safe to compact
  • If > 50 messages: Highly recommended

Show message:

```

πŸ“Š Current session: ~[N] messages

Compacting will:

  • Create marker with current state
  • Clear conversation history
  • Free up ~[X]k tokens for new work

Continue? [Y/n]:

```

Step 2: Create Automatic Marker

Invoke nav-marker skill (or create marker directly) with auto-generated name:

```

Marker name: before-compact-{YYYY-MM-DD}-{HHmm}

Note: "Auto-created before compact"

```

This marker should capture:

  • Last 10-15 messages summary
  • Files modified
  • Technical decisions
  • Current progress
  • Next steps

Step 3: Set Active Marker

Write the marker filename to .active file:

```bash

echo "{marker-filename}.md" > .agent/.context-markers/.active

```

This tells nav-start to offer restoration on next session.

Step 4: Display Compact Instructions

Show user how to compact:

```

╔══════════════════════════════════════════════════════╗

β•‘ β•‘

β•‘ πŸ—œοΈ Navigator Compact β•‘

β•‘ β•‘

β•šβ•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•

βœ… Context marker created:

.agent/.context-markers/{marker-filename}.md

πŸ“‹ Marker contains:

- Conversation summary (last 15 messages)

- Files you modified

- Technical decisions made

- Current progress & next steps

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

πŸ”Ή TO COMPACT:

Claude Code doesn't allow me to clear the conversation

programmatically. You need to do it manually:

Method 1: New conversation

  1. Start a new conversation
  2. Say "load my context" or "start my session"
  3. I'll detect the active marker and restore your state

Method 2: /clear command (if available)

  1. Type /clear
  2. Say "load my context"
  3. Active marker will be restored

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

πŸ’‘ Your progress is saved. You won't lose any context.

Next session:

  1. Say "start my session" or run /nav:start
  2. I'll detect the marker: "{marker-filename}"
  3. Confirm to restore, and you'll be back where you left off

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

```

Step 5: Confirm Marker Location

Verify marker was created:

```bash

ls -lh .agent/.context-markers/{marker-filename}.md

```

Show file size and confirm success:

```

βœ… Marker saved successfully

File: {marker-filename}.md

Size: {X} KB (~{Y} tokens)

Your context is preserved!

```

Important Notes

Why manual compact?

Claude Code conversations cannot be programmatically cleared from within a conversation. The user must:

  • Start a new conversation, OR
  • Use /clear command (if available)

This skill creates the marker and sets up auto-restoration, but the actual clearing must be done by the user.

Auto-restoration workflow:

```

Session 1:

User: "Clear context"

β†’ nav-compact creates marker

β†’ Sets .active file

β†’ Instructs user how to clear

Session 2 (new conversation):

User: "Start my session"

β†’ nav-start detects .active file

β†’ Offers to restore marker

β†’ User confirms

β†’ Context restored!

```

Common Use Cases

After Completing Feature

```

User: "Feature complete, clear context for next task"

β†’ Creates marker: "before-compact-2025-10-16-1430"

β†’ Captures: Feature implementation details

β†’ User starts new conversation

β†’ Restores marker, begins next feature

```

Approaching Token Limit

```

User: "Context getting full, let's compact"

β†’ Creates marker: "before-compact-2025-10-16-1500"

β†’ Preserves: All current work

β†’ User clears conversation

β†’ Continues with fresh context

```

Switching Between Tasks

```

User: "Done with auth, moving to payments"

β†’ Creates marker: "auth-feature-complete"

β†’ Clear context

β†’ New session: Fresh start for payments

β†’ Can restore auth marker later if needed

```

Error Handling

Marker creation fails:

```

❌ Failed to create marker

Cannot compact without preserving context.

Fix marker creation first.

```

Not enough context to preserve:

```

⚠️ Very little context (< 10 messages)

Compacting now won't save much. Consider:

  • Continue working
  • Compact after more progress

Continue anyway? [y/N]:

```

Active marker already exists:

```

⚠️ Active marker already exists:

.agent/.context-markers/.active

This means you have an unrestored marker from previous compact.

Options:

  1. Load that marker first (recommended)
  2. Overwrite with new marker
  3. Cancel compact

Your choice [1-3]:

```

Success Criteria

Compact is successful when:

  • [ ] Context marker created successfully
  • [ ] Marker contains comprehensive summary
  • [ ] .active file created (for auto-restoration)
  • [ ] User knows how to clear conversation
  • [ ] User knows marker will auto-restore on next session

Scripts

compact.py: Automated compact workflow

  • Create marker
  • Set active file
  • Generate restore instructions

Best Practices

When to compact:

  • βœ… After completing isolated feature/sub-task
  • βœ… After major documentation update
  • βœ… Before switching to unrelated work
  • βœ… When approaching 70%+ token usage
  • ❌ In middle of implementation
  • ❌ When context needed for next step
  • ❌ After every few messages (wasteful)

Compact frequency:

  • Small task (30 min): No compact needed
  • Medium task (2-3 hours): Compact after completion
  • Large task (full day): Compact at logical breakpoints
  • Multi-day task: Compact at end of each session

Notes

This skill automates the preparation for compacting but cannot clear the conversation itself (Claude Code limitation).

The value is in:

  1. Automatic marker creation
  2. Setting up auto-restoration
  3. Guiding user through process
  4. Preserving context seamlessly

This provides same functionality as /nav:compact command but with natural language invocation.

More from this repository10

πŸͺ
alekspetrov-navigatorπŸͺMarketplace

Context Engineering + Human-AI Collaboration Framework with Theory of Mind, Loop Mode, Task Mode, and Project Knowledge Graph

🎯
product-design🎯Skill

Automates Figma design reviews by extracting tokens, mapping components, detecting implementation drift, and generating rapid design handoff plans.

🎯
frontend-component🎯Skill

Generates production-ready React/Vue components with TypeScript, tests, and styles by intelligently creating files based on user specifications.

🎯
nav-install-multi-claude🎯Skill

Installs multi-Claude workflow orchestration scripts for parallel AI execution across different Claude instances.

🎯
nav-loop🎯Skill

Iteratively execute tasks with structured completion signals, auto-invoking on user's loop mode requests and preventing infinite processing.

🎯
frontend-test🎯Skill

Automates frontend testing with comprehensive strategies for unit, integration, and end-to-end test coverage across web applications.

🎯
nav-diagnose🎯Skill

Detects AI collaboration quality drops by monitoring repeated corrections, context confusion, and user frustration signals, then prompts re-anchoring.

🎯
visual-regression🎯Skill

Automates visual regression testing setup with Storybook, generating stories, configurations, and CI/CD workflows for Chromatic, Percy, and BackstopJS.

🎯
nav-sop🎯Skill

Generates comprehensive, categorized Standard Operating Procedures (SOPs) for reusable solutions, workflows, and integration processes.

🎯
nav-multi🎯Skill

Launches parallel Claude agents to implement tasks through orchestrated multi-phase workflows with comprehensive quality checks.