Imported from dlt/faultline (
plugin/skills/bulk/SKILL.md). Install upstream withnpx skills add dlt/faultline --skill bulk. Copyright stays with the author.
Bulk-update Faultline error groups via the bulk_update_error_groups MCP tool.
- Parse
$ARGUMENTS:- First token:
action— one ofresolve,unresolve,ignore,delete. - Remaining tokens: a comma-separated list of integer ids. Strip whitespace.
- If either is missing, ask the user to clarify before calling the tool.
- First token:
- Show the user what's about to happen:
action: <action>,ids: [<list>], count. - Ask for confirmation. For
delete, require an explicit"yes delete"— same standard as thedeleteskill, because this is irreversible and acts on N groups at once. - On confirmation, call
bulk_update_error_groupswithids(array of ints) andaction. - Report the response:
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.