# Ctags

> Use ctags for code navigation

- Skill: `multicam/ctags` (Agent Skill)
- Install (CLI): `npx skillmds@latest add multicam/ctags`
- Raw SKILL.md: https://api.skillmd.com/api/skills/multicam/ctags/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: multicam (https://skillmd.com/u/multicam)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/multicam/ctags

---


# ctags

Use ctags to locate function/type definitions.

## CLI Lookup

```bash
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`

