Load full assembled context for a Contextia task, following links from task to specs to decisions to norms. Use when you need to understand what a task requires, when starting deep work on a feature, or when the user says "load context for", "what context do I need for", "assemble context for task".
!uv run contextia context "$ARGUMENTS" --depth full --format context 2>/dev/null
!find .contextia/work/tasks/ -name "*.md" | xargs grep -l "$ARGUMENTS" 2>/dev/null | head -1 | xargs cat 2>/dev/null || echo "(task not found)"
!find .contextia/work/tasks/ -name "*.md" | xargs grep -l "$ARGUMENTS" 2>/dev/null | head -1 | xargs grep "specs:" -A 20 2>/dev/null | grep " - SPEC" | awk '{print $2}' | while read spec; do echo "=== $spec ==="; find .contextia/system/specs/ -name "*.md" | xargs grep -l "$spec" 2>/dev/null | head -1 | xargs cat 2>/dev/null; echo; done
Present the assembled context as a structured summary:
If context is incomplete (broken links, missing specs), report the gaps rather than silently skipping them.