Claude Code Plugins

Community-maintained marketplace

Feedback

Locate symbol definitions quickly (precise for Python via AST; conservative candidates for other languages) and print a bounded context packet.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name def
description Locate symbol definitions quickly (precise for Python via AST; conservative candidates for other languages) and print a bounded context packet.

def

Use this skill when

  • You need definition locations for a symbol without opening files manually.
  • You want minimal, high-signal context for review or refactor work.

Commands

# Auto (tries Python-precise, then other languages as candidates)
def MyClass .

# Prefer Python precision and include a small snippet
def MyClass . --lang py -C 2

# Methods / dotted qualnames (Python): find `Class.method`
def MyClass.__init__ mypkg --lang py -C 1

# Bias path ranking if you know where code likely lives
def MyClass . --prefer torch --prefer aten

Notes

  • Python results are AST-validated (low false positives).
  • Non-Python results are heuristic candidates; use ctx to confirm if ambiguous.