fresh-context

Isolate subagent tasks with clean contexts and no-history policies.

54|18|Updated Jan 21, 2026
One-click install
npx skills add https://github.com/hainamchung/agent-assistant --skill fresh-context
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: fresh-context
Source: https://github.com/hainamchung/agent-assistant/tree/main/skills/fresh-context
Command: npx skills add https://github.com/hainamchung/agent-assistant --skill fresh-context

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Context rot and cross-task leakage degrade subagent quality across a session. Fresh Context provides a pattern to ensure each subagent task runs within a clean, isolated context so previous results do not pollute new work.

Core Features & Use Cases

  • Fresh-context isolation ensures every subagent dispatch starts with a clean state.
  • Clear boundaries for task descriptions, target files, and acceptance criteria to prevent history bleed.
  • Use cases include securely delegating implementation tasks, quality assurance checks, and safe parallel work streams.

Quick Start

Dispatch a subagent with a new isolated context to begin a task without inheriting parent session history.

Frequently Asked Questions about fresh-context

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I prevent subagent context leakage across multiple task dispatches?

Context rot in multi-agent dispatches occurs when previous task history bleeds into new subagent executions. Applying explicit context boundaries and a no-history policy ensures each task runs in a clean context without inherited pollution.

How do I delegate multi-step tasks to subagents without degrading quality?

To delegate multi-step tasks without degrading quality, enforce clear boundaries for task descriptions, target files, and acceptance criteria. This prevents history bleed and maintains consistent subagent execution quality across a session.

Can I run parallel subagent work streams without them interfering with each other?

Yes, you can run safe parallel work streams by isolating each subagent task with explicit context boundaries. This ensures that concurrently dispatched tasks do not share history or pollute each other's execution context.

What's the best way to isolate context for quality assurance checks in a multi-agent system?

The best way to isolate context for quality assurance checks is to apply a no-history policy for subagent executions. Enforcing explicit task descriptions and acceptance criteria prevents cross-task leakage and maintains check integrity.

When do I need to enforce explicit context boundaries for subagent dispatches?

You need to enforce explicit context boundaries when dispatching multiple subagents within a single session. This prevents context rot caused by previous results polluting new tasks, ensuring each execution runs in a clean, isolated state.