
Linear Export
- 123 installs
- 128 repo stars
- Updated July 24, 2026
- finesssee/linear-cli
Export Linear issues and projects to CSV, Markdown, or JSON from the CLI, with JSON round-trip compatible with import.
About
Exports Linear data to CSV, Markdown, or JSON via linear-cli, scoped by team and optionally all pages. A developer uses it to back up or extract issues and projects from the terminal.
- JSON export is round-trip compatible with linear-cli import
- Export to file with -f or stream to stdout
Linear Export by the numbers
- 123 all-time installs (skills.sh)
- Ranked #1,279 of 3,282 Productivity & Planning skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/finesssee/linear-cli --skill linear-exportAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 123 |
|---|---|
| repo stars | ★ 128 |
| Last updated | July 24, 2026 |
| Repository | finesssee/linear-cli ↗ |
What it does
Export Linear issues and projects to CSV, Markdown, or JSON from the CLI, with JSON round-trip compatible with import.
Files
Export
# Export issues to CSV
linear-cli exp csv -t ENG # Export team issues
linear-cli exp csv -t ENG -f issues.csv # Export to file
linear-cli exp csv --all -t ENG # All pages
# Export to Markdown
linear-cli exp markdown -t ENG
linear-cli exp markdown -t ENG -f issues.md
# Export to JSON (round-trip compatible with import)
linear-cli exp json -t ENG -f backup.json
# Export projects to CSV
linear-cli exp projects-csv -f projects.csv
# With filters
linear-cli exp csv -t ENG -s "In Progress"
linear-cli exp csv -t ENG --assignee meFlags
| Flag | Purpose |
|---|---|
-f FILE | Output to file |
--all | Export all pages |
-t TEAM | Filter by team |