agentsclimarketplace

Actually lsp ignore

Skill technicalpickles/pickled-claude-plugins/plugins/actually-lsp/skills/actually-lsp-ignore

Personal collection of Claude Code skills for development workflows

Install
npx -y skills add technicalpickles/pickled-claude-plugins --skill actually-lsp-ignore

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 10 stars10 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Ignore actually-lsp nudges for an ecosystem in this project. Use when the user wants to silence, dismiss, or ignore the LSP setup nudges for a specific ecosystem (Rust, TypeScript, Ruby), or invokes `/actually-lsp-ignore` directly. Writes `dismissed=true` to `.claude/actually-lsp.json`. Persistent across sessions for this project only.

SKILL.md

1.5 KB, as published. Nobody here has run it

/actually-lsp-ignore

Parse args:

  • rust | typescript | ruby as an arg ignores that ecosystem directly.
  • No args: read .claude/actually-lsp.json in the current project root, present the detected ecosystems, and ask the user which to ignore.

Action

Update the project state file at .claude/actually-lsp.json: set .ecosystems.<ecosystem>.dismissed to true. If the file doesn't exist, create it with version 1 schema:

{
  "version": 1,
  "ecosystems": {
    "<ecosystem>": {
      "state": "dismissed",
      "dismissed": true,
      "last_check_at": null,
      "last_marker_mtime": null,
      "last_plugin_list_hash": null,
      "last_error": null
    }
  }
}

If the file exists, preserve all other fields and only flip dismissed.

The internal state value stays dismissed (that's the state-machine name from CONTEXT.md); only the user-facing skill name is ignore.

Confirmation output

Output a one-line confirmation per ignored ecosystem:

Ignoring <ecosystem> for this project. To re-enable, manually edit .claude/actually-lsp.json and set dismissed back to false. (A re-enable command is a future extension.)

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.