Actually lsp ignore
Skill technicalpickles/pickled-claude-plugins/plugins/actually-lsp/skills/actually-lsp-ignore
Personal collection of Claude Code skills for development workflows
npx -y skills add technicalpickles/pickled-claude-plugins --skill actually-lsp-ignoreAssembled 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|rubyas an arg ignores that ecosystem directly.- No args: read
.claude/actually-lsp.jsonin 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.)