Skip to content
Productivity
Command

/linear-bulk

Apply the same change to many Linear issues at once. Dry-run by default.

From plugin
76 skills5 agents6 commands
shell
$ npx -y skills add Elnora-AI/elnora-linear --agent claude-code

Ships with linear-workspace. Installing the plugin gets this command.

How it fires

How this command gets triggered: by you, by Claude, or both.

  • Fires itselfClaude auto-loads it when your prompt matches the work.
  • You can call itInvoke it directly when you want it.
  • Slash command/linear-bulk

Context preview

What this command does when you run it.

Apply the same change to many Linear issues at once. Dry-run by default.

Command definition

linear-bulk.md
name: linear-bulk
description: Apply the same change to many Linear issues at once. Dry-run by default.
argument-hint: "<filter description> → <mutation description>"
allowed-tools: Bash, Read, AskUserQuestion

Linear Bulk Update

Apply one change to every Linear issue matching a filter. **Default is dry-run** — the plan is shown but nothing mutates until the user confirms with `--yes`.

Workflow

1. **Parse the user's request** into filter + mutation pieces. Example: "move all ENG team Todos with the 'security' label to In Progress" → filter `--team ENG --state Todo` + mutation `--set-state "In Progress"`.

2. **Run the dry-run first** — always:

   elnora-linear bulk \
     --team <key> [--state <name>] [--assignee <name>] [--query <text>] \
     [--set-state <name>] [--add-comment "<text>"] \
     --output text

This prints what would change without touching anything.

3. **Show the user the plan.** Use `AskUserQuestion` to confirm. Options:

  • "Apply all" → re-run with `--yes`
  • "Cancel" → stop
  • "Adjust filter" → tweak and re-dry-run

4. **Apply** with `--yes` only after explicit confirmation.

Safety

  • `bulk` REQUIRES at least one of `--set-state` or `--add-comment` — the command itself errors otherwise
  • Issues already in the target state are skipped (with a `SKIPPED` reason in the plan)
  • The default `--limit` is 100; raise it explicitly if the user wants to touch more

Don't

  • Don't add `--yes` to the first invocation. Always dry-run first
  • Don't auto-confirm. The user clicks Approve
  • Don't combine filters the user didn't ask for
Read more
Read it on GitHub ↗
Ships withlinear-workspace

The full Linear API as a CLI, a Claude Code plugin, and a signal-driven hygiene curator — purpose-built for AI coding agents to create, edit, review, and curate Linear issues safely at scale.

Get the whole plugin, auto-invoked
Stats
7
Stars
0
Views
0
Forks
Active
Maintenance
TypeScript
Language
Apache-2.0
License
2d ago
Last commit
2mo ago
Created

Repo: Elnora-AI/elnora-linear