Linear Team Issues Snapshot
Goal
Produce a Markdown snapshot of all non-completed issues for a specific Linear team.
Inputs
- •Linear Personal API key in
LINEAR_API_KEY(or pass--api-key) - •Team identifier (team name, key, or UUID)
Run
code
python3 skills/linear-team-issues/scripts/linear_team_issues.py --team "Team Name"
Options
- •
--output path/to/file.md(default:project-status/linear-tasks-YYYY-MM-DD.md) - •
--exclude-state completed(repeatable; default excludescompleted) - •
--page-size 100(pagination size) - •
--desc-limit 400(truncate descriptions; default 400 chars) - •
--full-description(do not truncate) - •
--no-description(skip descriptions)
Output
Markdown file with:
- •Header summary (team, filters, counts)
- •Counts by state type and status
- •Issues grouped by status with key fields (title, state, priority, assignee, project, labels, URL, short description)
Notes
- •The script fetches all non-completed issues regardless of time range.
- •Archived issues are excluded by default by Linear unless explicitly requested.