Help us improve
Share bugs, ideas, or general feedback.
From faultline
Apply one action (resolve/unresolve/ignore/delete) to many Faultline error groups in a single call.
npx claudepluginhub dlt/faultline --plugin faultlineHow this skill is triggered — by the user, by Claude, or both
Slash command
/faultline:bulk <action> <id1,id2,...><action> <id1,id2,...>The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Bulk-update Faultline error groups via the `bulk_update_error_groups` MCP tool.
Resolves a Faultline error group by ID with an optional note. Confirms current status before mutating and warns if the tool is in read-only mode.
Bulk operations for multiple issues at scale. TRIGGERS: 'bulk update', 'bulk close', 'bulk transition', 'bulk assign', 'transition N issues' (N >= 10), 'update all bugs', 'close 50 issues', 'mass transition', 'update multiple issues', quantities like '50 issues', '100 bugs', '20+ tickets'. Use for operations on 10+ issues. NOT FOR: single issue transitions (use jira-lifecycle), searching only without modifications (use jira-search), single issue field updates (use jira-issue).
Guides designing bulk API endpoints for create/update/delete operations, covering transactional vs best-effort semantics, idempotency, and partial failure responses.
Share bugs, ideas, or general feedback.
Bulk-update Faultline error groups via the bulk_update_error_groups MCP tool.
$ARGUMENTS:
action — one of resolve, unresolve, ignore, delete.action: <action>, ids: [<list>], count.delete, require an explicit "yes delete" — same standard as the delete skill, because this is irreversible and acts on N groups at once.bulk_update_error_groups with ids (array of ints) and action.affected — how many groups were actually updated.missing_ids — ids the user supplied that don't exist. Flag these so they know which ones were skipped.If many ids are involved, suggest running /triage instead — that walks the user through one group at a time with per-group context.
If the tool returns error: "Tool disabled: mcp_readonly is true", tell the user to set c.mcp_readonly = false in their Faultline initializer.