npx skills add smithery/parcadei --skill no-task-output
parcadei/continuous-claude-v3
no-task-output
Never Use TaskOutput
Installation
npx skills add parcadei/continuous-claude-v3 --skill no-task-output
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Generate output schemas (dataset_schema.json, output_schema.json, key_value_store_schema.json) …
7.4K installsAnalyze spreadsheet data, generate insights, create visualizations, and build reports from Exce…
6.8K installsInternal sub-skill: agentic review of a printed CLI's sampled command output for plausibility i…
5.7K installsManage for output using Grove''s "High Output Management": a manager''s output is their organiz…
1.9K installsOverrides default LLM truncation behavior. Enforces complete code generation, bans placeholder …
1.3K installsAlso in this package
Other skills from parcadei/continuous-claude-v3 · top by installs.
npx skills add parcadei/continuous-claude-v3
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md722 B -
docs
SUMMARY.md39 B
History
- First seen on skills.sh
- First recorded snapshot · 473 installs
SKILL.md
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