Claude Code Plugins

Community-maintained marketplace

Feedback
4
0

Use this skill to split large plans into smaller chunks. This skill manages your context window for large tasks. Use it when a task will take a long time and cause context issues.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name Handle-Large-Tasks
description Use this skill to split large plans into smaller chunks. This skill manages your context window for large tasks. Use it when a task will take a long time and cause context issues.
*CRITICAL* Add the following steps to your Todo list using TodoWrite:
  • Announce that you are creating subagents.
  • Construct a plan for each subagent.
  • Write a test for each subagent based on what you expect the subagent to do.
  • Start each subagent using the Task tool with instructions to make the test pass.
  • Evaluate the code the subagent produces. Give feedback. Iterate until tests pass AND the code fits.
  • When all subagents complete, make sure all tests pass and all of the code fits together coherently.

Guidelines

Use subagents to manage your context. Each subagent has its own limited context window. Subagents perform best when they have clear implementation guidelines. Each subagent should be given a small and precise task. Create tests for each subagent and explicitly tell the subagent that it is responsible for making sure that test passes. The tests should test behavior. You are responsible for the final output. That means you MUST ensure that everything runs as expected. You should create high level tests that validate overall behavior.