npx claudepluginhub datamaker-kr/synapse-claude-marketplace --plugin synapse-export# Synapse Export Help Export annotation data, ground truth datasets, and task data from Synapse projects. Supports multiple output formats (JSON, COCO, YOLO, Pascal VOC) and both script-based and plugin-based execution. ## Available Commands | Command | Description | |---------|-------------| | `/synapse-export:help` | Show this help message | | `/synapse-export:export` | Export data from a Synapse project | | `/synapse-export:export-status` | Check status and logs of an export job | ## Skills (Auto-Activated) The following skills automatically activate based on conversation context: ...
/helpDisplays Hookify plugin help: hook events, markdown config files with regex patterns, creation via /hookify or manual files, subcommands, and examples for safe behaviors.
/helpExplains Ralph Loop plugin for iterative AI development via repeated Claude prompts with file self-reference, and lists commands /ralph-loop to start loops and /cancel-ralph to cancel.
/helpDisplays a complete table of all available SuperClaude (/sc) commands with their descriptions and functionality.
/helpDisplays full reference guide for Ouroboros commands and agents by rendering the dedicated SKILL.md file.
/helpDisplays the complete GSD command reference, listing all available commands with descriptions, usage examples, quick start guide, and core workflow.
/helpDisplays help for the heartbeat plugin, listing commands, CLI options, how it works, configuration, job formats, and Telegram setup.
Export annotation data, ground truth datasets, and task data from Synapse projects. Supports multiple output formats (JSON, COCO, YOLO, Pascal VOC) and both script-based and plugin-based execution.
| Command | Description |
|---|---|
/synapse-export:help | Show this help message |
/synapse-export:export | Export data from a Synapse project |
/synapse-export:export-status | Check status and logs of an export job |
The following skills automatically activate based on conversation context:
| Skill | Triggers |
|---|---|
| export-workflow | "export", "download annotations", "ground truth", "COCO format", "YOLO format", "Pascal VOC", "export assignments", "export tasks", "download labels" |
| Agent | Purpose |
|---|---|
| export-assistant | Full export orchestrator — analyze annotations, convert formats, execute export |
| Requirement | Minimum Version | Check Command |
|---|---|---|
| Python | 3.12+ | python3 --version |
| synapse-sdk | >= 2026.1.39 | synapse --version |
| Synapse authentication | — | synapse doctor |
# Try the current shell first (venv may already be activated)
synapse --version
# If not found, look for a venv in cwd and activate it
ls -d *venv* .venv 2>/dev/null
source .venv/bin/activate # or whichever venv dir was found
# If no venv exists, install manually
uv pip install "synapse-sdk[all]>=2026.1.39"
# Authenticate
synapse login
# Verify
synapse doctor
/synapse-export:export --project 42 --format coco/synapse-export:export --target ground_truth --gt-version 15 --format yolo/synapse-export:export-status <job-id>/synapse-export:export --project 42 --target assignment --format coco
/synapse-export:export --target ground_truth --gt-version 15 --format yolo --split 0.8/0.2
/synapse-export:export --project 42 --format json --save-original-files
/synapse-export:export
| Target | Source | Required | Use Case |
|---|---|---|---|
| assignment | Labeler/reviewer work | Project ID | Export labeled annotations |
| ground_truth | Curated GT datasets | GT version ID | Export training/validation data |
| task | Task definitions + annotations | Project ID | Export task metadata |
| Format | Best For | Annotation Types |
|---|---|---|
| JSON (Synapse) | Full fidelity export, backup | All types |
| COCO | Object detection, segmentation | bbox, polygon, keypoint |
| YOLO | Real-time detection models | bbox only |
| Pascal VOC | Classic detection benchmarks | bbox only |
| CSV | Spreadsheet analysis | Classification, simple attributes |
synapse script submitThe relevant skills will automatically load to provide detailed guidance.