modules/home/programs/cli-agents/shared/skills/cli-tools/zoxide-nav/SKILL.md
Navigate to directories using zoxide (frecency-based directory jumper). Use when the user says "go to", "navigate to", "cd to", "jump to" a project or directory by nickname/partial name (e.g. "go to my dotfiles", "jump to dot").
npx skillsauth add not-matthias/dotfiles-nix zoxide-navInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Navigate to directories using zoxide, a frecency-based directory jumper that learns from usage patterns.
Zoxide maintains a database of directories the user has visited. Each directory gets a frecency score (frequency × recency). When you query with a partial name, zoxide returns the highest-scoring match.
~/.local/share/zoxide/db.zozoxide query foo bar matches paths containing foo then barUse zoxide query to resolve a partial name to a full path:
# Find the best match (prints the path)
zoxide query <partial-name>
# Examples
zoxide query dot # → /home/user/Documents/technical/git/dotfiles-nix
zoxide query apollo # → /home/user/Documents/technical/git/apollo
# Multiple terms narrow results
zoxide query git dot # matches path containing "git" then "dot"
# List all matches ranked by score
zoxide query -l <partial-name>
zoxide query <name> to resolve the user's partial name to a full path.User says: "go to my dotfiles"
# Resolve the directory
zoxide query dotfiles
# Output: /home/user/Documents/technical/git/dotfiles-nix
# Now use that path for further work
ls /home/user/Documents/technical/git/dotfiles-nix
z / j shell aliases do NOT work in the Bash tool because it runs a non-interactive shell. Always use zoxide query instead.j alias: The user's fish shell has j as an alias for z (zoxide). When they say "j dot", they mean "jump to the directory matching 'dot'".cd — just resolve the path with zoxide query and use absolute paths in subsequent commands.documentation
Save notes, journal entries, and research to the personal-notes Obsidian vault (personal-vault-v2). Use when the user asks to 'save note', 'save to notes', 'write to personal notes', 'save to daily notes', 'note this down', or wants to persist findings/analysis to their personal vault.
documentation
Use whenever the user asks to address, fix, resolve, review, or respond to pull-request comments or review feedback.
development
Apply Not Matthias's Rust-first personal coding style. Use whenever the user explicitly asks to apply or review their code style, make Rust match their preferences, perform a style pass, or simplify/refactor according to their conventions. Inspect only task-touched code, honor local project conventions first, and make only safe opt-out style edits.
development
Guide for writing ast-grep rules to perform structural code search and analysis. Use when users need to search codebases using Abstract Syntax Tree (AST) patterns, find specific code structures, or perform complex code queries that go beyond simple text search. This skill should be used when users ask to search for code patterns, find specific language constructs, or locate code with particular structural characteristics.