Take me there
Skill rperez030/accessible-agent-skills/skills/take-me-there
Claude Code skills and hooks built to make working with Claude more accessible for developers who use assistive technology.
npx -y skills add rperez030/accessible-agent-skills --skill take-me-thereAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Use when the user asks to be taken to, shown, or navigate to a file location relevant to the conversation — such as a recent edit, review comment, or code reference.
SKILL.md
1.9 KB, 372 tokens by cl100k_base, as published. Nobody here has run it
Take Me There Skill
Open the file (and line, when known) most relevant to the current conversation context in the user's preferred editor, reusing the existing window when possible.
Editor detection — in this order
$VISUALif set and on$PATH.$EDITORif set and on$PATH.code-insidersif on$PATH.codeif on$PATH.cursorif on$PATH.
If none of these are available, tell the user and stop. Don't fall back to a non-GUI editor.
Open command
The supported editors all accept the same flags:
<editor> -r -g "<file>:<line>"
-rreuses the current window instead of opening a new one.-g "<file>:<line>"opens at the specified line.
If $VISUAL or $EDITOR resolves to an editor that uses different syntax, use that editor's documented invocation.
Determining what to open
If the user provides a specific file and line via $ARGUMENTS, use those. Otherwise, determine the most relevant file and line from conversation context — for example:
- A recent edit you just made.
- A file/line referenced in a code review comment.
- A symbol mentioned in the last few turns.
When ambiguous, ask the user which file they meant before opening.
Why this matters
Jumping straight to a precise line in the editor often beats reading a code excerpt in chat — the editor handles syntax, scrollback, and surrounding context better than a chat client does. Especially valuable for users who navigate code with a screen reader, since editors expose code structure (symbols, sections, indentation) more reliably than chat output.