cowork-export
Installation
SKILL.md
Cowork Export Skill
Packages your local session context (git state, Qdrant memory, decisions, code changes) into a clipboard-ready briefing document that Claude on claude.ai can consume as a remote sub-agent.
Quick Start
# Full export: git state + Qdrant memory + task brief
python3 skills/cowork-export/scripts/export_context.py \
--project <project-name> \
--task "What the remote agent should do" \
--output .tmp/cowork_briefing.md
# Minimal: git state only (no Qdrant dependency)
python3 skills/cowork-export/scripts/export_context.py \
--git-only \
--task "Review these changes and suggest improvements" \
--output .tmp/cowork_briefing.md