ctags Indexing Skill
Use Universal ctags to build a symbol index when LSP is not available.
Check ctags version
# Universal ctags has --output-format=json — we need this
ctags --version 2>&1 | grep -i universal
# If not universal ctags, basic ctags won't have JSON output
# Fall back to parsing classic ctags format instead
Run ctags
universal-ctags \
--recurse=yes \
--output-format=json \
--fields=+n+e+K+S+Z \
--extras=+q+r \
--exclude=node_modules \
-
[Description truncada. Veja o README completo no GitHub.]