Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问clear审计通过

using-python-lspusing Python LSP 搜索

Agent Skill

用于辅助 Python 项目开发、测试、依赖管理和常见框架工作流。它适合让 Agent 阅读 Python 代码、定位测试问题、整理运行命令、生成脚本或分析数据处理逻辑。使用时需要确认项目虚拟环境、依赖版本和测试入口;涉及执行脚本、读写文件、访问数据库或调用外部 API 时,应先明确运行目录和输入输出范围,避免误改生产数据。

总安装

618

周安装

25

GitHub Stars

2

下载量

194
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:using-python-lsp(using Python LSP 搜索)
来源仓库:https://github.com/mhagrelius/dotfiles
仓库路径:skills/using-python-lsp
安装命令:
npx skills add https://github.com/mhagrelius/dotfiles --skill using-python-lsp
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/mhagrelius/dotfiles --skill using-python-lsp

简介

用于辅助 Python 项目开发、测试和依赖管理,适合代码分析和问题排查。

  • 可帮助阅读代码、定位测试问题、整理运行命令和分析数据处理逻辑。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 使用时需确认项目虚拟环境、依赖版本和测试入口,避免误改生产数据。
  • using-python-lsp 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Using Python LSP

Overview

The pyright-lsp plugin provides semantic code intelligence for Python. Use LSP tools instead of grep/read when you need semantic accuracy - LSP understands Python's type system, inheritance, and symbol relationships.

When to Use LSP vs Text Search

digraph lsp_decision {
    "Need code info?" [shape=diamond];
    "Semantic accuracy needed?" [shape=diamond];
    "Use LSP tool" [shape=box];
    "Use Grep/Read" [shape=box];

    "Need code info?" -> "Semantic accuracy needed?" [label="yes"];
    "Need code info?" -> "Use Grep/Read" [label="no - text patterns"];
    "Semantic accuracy needed?" -> "Use LSP tool" [label="yes"];
    "Semantic accuracy needed?" -> "Use Grep/Read" [label="no"];
}

Use LSP for:

  • Finding all usages before refactoring
  • Getting type information
  • Navigating to definitions
  • Checking for type errors

Use Grep for:

  • Text patterns (comments, strings, config)
  • Cross-language searches
  • When LSP unavailable

LSP Operations Quick Reference

TaskLSP OperationInstead of
Find all callers of a methodfindReferencesGrep for method name
Get function return typehoverRead file + parse
Jump to definitiongoToDefinitionGrep + Read
Check type errorsgetDiagnosticsRun mypy/pyright CLI
View file structuredocumentSymbolRead entire file

Key Patterns

Before Refactoring: Find All References

Wrong approach:

Grep for "method_name" -> may miss aliased calls, get false positives

Right approach:

LSP findReferences on method -> gets ALL semantic usages, no false positives

Getting Type Information

Wrong approach:

Read file -> find function -> parse return annotation manually

Right approach:

LSP hover on symbol -> instant type signature with docs

Verifying Type Correctness

Wrong approach:

Bash: pipx run mypy src/ (slow, external tool)

Right approach:

LSP getDiagnostics on changed files -> instant, no external process

Common Mistakes

MistakeWhy It's WrongFix
Grep for symbol before renameText search misses method calls through aliases, inheritanceUse findReferences
Read entire file for one typeWastes context, slowUse hover
Run mypy after every changeSlow, requires external toolUse getDiagnostics
Grep to find definitionMay find wrong match (same name, different module)Use goToDefinition

How LSP Tools Work

LSP is a built-in Claude Code tool, not a bash command. When pyright-lsp plugin is enabled, Claude Code automatically provides these operations:

  • goToDefinition - navigate to where symbol is defined
  • findReferences - find all usages of a symbol
  • hover - get type signature and documentation
  • getDiagnostics - get type errors for a file
  • documentSymbol - list all symbols in a file

You invoke these through Claude's tool system, not via bash. If LSP is unavailable, fall back to grep/read but document the limitation.

Prerequisites

  1. Plugin enabled: pyright-lsp@claude-plugins-official in ~/.claude/settings.json
  2. Pyright installed: pip install pyright or npm install -g pyright
  3. Project configured: pyproject.toml or pyrightconfig.json present (recommended)

Fallback Strategy

If LSP is unavailable (tool not found, server not running):

  1. Document the limitation - note that you're using text search as fallback
  2. Use Grep with caution - understand it may miss aliased calls or inheritance
  3. Verify manually - for refactoring, double-check results make sense semantically
  4. Suggest fix - remind user to ensure pyright is installed and plugin enabled

Red Flags - Stop and Use LSP

These thoughts mean you should use LSP, not grep:

ThoughtReality
"Let me grep for this function"If it's a symbol, use findReferences
"I'll read the file to find the type"Use hover for instant type info
"Let me run mypy to check"Use getDiagnostics - faster, no subprocess
"I'll search for where this is defined"Use goToDefinition - semantic accuracy
"Grep is faster for quick searches"LSP is 900x faster for semantic queries

When LSP Won't Help

  • No pyright binary installed
  • Working with dynamic Python (heavy eval, exec, __getattr__)
  • Cross-language references
  • Comment/docstring searches
  • Projects without type hints (LSP works but limited value)

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

26.53%
按下载量换算51

Gemini CLI

22.67%
按下载量换算44

Antigravity

16.7%
按下载量换算32

windsurf

12.59%
按下载量换算24

trae

7.71%
按下载量换算15

Codex

2.81%
按下载量换算5

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/mhagrelius/dotfiles --skill using-python-lsp;npx skills add mhagrelius/dotfiles --skill "using-python-lsp" 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills