parcadei / no-task-output
Install for your project team
Run this command in your project directory to install the skill for your entire team:
mkdir -p .claude/skills/no-task-output && curl -L -o skill.zip "https://fastmcp.me/Skills/Download/2713" && unzip -o skill.zip -d .claude/skills/no-task-output && rm skill.zip
Project Skills
This skill will be saved in .claude/skills/no-task-output/ and checked into git. All team members will have access to it automatically.
Important: Please verify the skill by reviewing its instructions before using it.
Never Use TaskOutput
0 views
0 installs
Skill Content
--- name: no-task-output description: Never Use TaskOutput user-invocable: false --- # Never Use TaskOutput TaskOutput floods the main context window with agent transcripts (70k+ tokens). ## Rule NEVER use `TaskOutput` tool. Use `Task` tool with synchronous mode instead. ## Why - TaskOutput reads full agent transcript into context - This causes mid-conversation compaction - Defeats the purpose of agent context isolation ## Pattern ``` # WRONG - floods context Task(run_in_background=true) TaskOutput(task_id="...") // 70k tokens dumped # RIGHT - isolated context, returns summary Task(run_in_background=false) // Agent runs, returns summary ``` ## Source - Session where TaskOutput caused context overflow