Claude-skill-registry ctags

Use ctags for code navigation

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/ctags" ~/.claude/skills/majiayu000-claude-skill-registry-ctags && rm -rf "$T"
manifest: skills/data/ctags/SKILL.md
source content

ctags

Use ctags to locate function/type definitions.

CLI Lookup

grep -P "^ik_repl_init\t" tags | cut -f1-3 | sed 's/;"$//'

Output:

name<TAB>file<TAB>line

Rebuilding

Tags rebuild automatically on every

make
and
make check
To manually rebuild:
make tags