gabb-code-navigation — for Claude Code gabb-code-navigation, gabb-cli, community, for Claude Code, ide skills, gabb_symbol, gabb_structure, ### File Structure Preview, ## What, Output Looks Like

v1.0.0

Sobre este Skill

Cenario recomendado: Ideal for AI agents that need gabb code navigation. Resumo localizado: # Gabb Code Navigation Search Strategy Decision Flow When you need to find code, follow this order: Task names specific file/function? This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Recursos

Gabb Code Navigation
Search Strategy Decision Flow
When you need to find code, follow this order:
Task names specific file/function? → Read directly (skip exploration)
Looking for a code construct by name? → gabb symbol

# Tópicos principais

gabb-software gabb-software
[3]
[1]
Atualizado: 4/2/2026

Skill Overview

Start with fit, limitations, and setup before diving into the repository.

Cenario recomendado: Ideal for AI agents that need gabb code navigation. Resumo localizado: # Gabb Code Navigation Search Strategy Decision Flow When you need to find code, follow this order: Task names specific file/function? This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Por que usar essa habilidade

Recomendacao: gabb-code-navigation helps agents gabb code navigation. Gabb Code Navigation Search Strategy Decision Flow When you need to find code, follow this order: Task names specific file/function? This AI agent

Melhor para

Cenario recomendado: Ideal for AI agents that need gabb code navigation.

Casos de Uso Práticos for gabb-code-navigation

Caso de uso: Applying Gabb Code Navigation
Caso de uso: Applying Search Strategy Decision Flow
Caso de uso: Applying When you need to find code, follow this order:

! Segurança e Limitações

  • Limitacao: When you need to find code, follow this order:
  • Limitacao: Need to understand file layout? → gabb structure
  • Limitacao: You need to find where something is defined

About The Source

The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Demo Labs

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ e etapas de instalação

These questions and steps mirror the structured data on this page for better search understanding.

? Perguntas frequentes

O que é gabb-code-navigation?

Cenario recomendado: Ideal for AI agents that need gabb code navigation. Resumo localizado: # Gabb Code Navigation Search Strategy Decision Flow When you need to find code, follow this order: Task names specific file/function? This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Como instalar gabb-code-navigation?

Execute o comando: npx killer-skills add gabb-software/gabb-cli/gabb-code-navigation. Ele funciona com Cursor, Windsurf, VS Code, Claude Code e mais de 19 outros IDEs.

Quais são os casos de uso de gabb-code-navigation?

Os principais casos de uso incluem: Caso de uso: Applying Gabb Code Navigation, Caso de uso: Applying Search Strategy Decision Flow, Caso de uso: Applying When you need to find code, follow this order:.

Quais IDEs são compatíveis com gabb-code-navigation?

Esta skill é compatível com Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use a CLI do Killer-Skills para uma instalação unificada.

gabb-code-navigation tem limitações?

Limitacao: When you need to find code, follow this order:. Limitacao: Need to understand file layout? → gabb structure. Limitacao: You need to find where something is defined.

Como instalar este skill

  1. 1. Abra o terminal

    Abra o terminal ou linha de comando no diretório do projeto.

  2. 2. Execute o comando de instalação

    Execute: npx killer-skills add gabb-software/gabb-cli/gabb-code-navigation. A CLI detectará sua IDE ou agente automaticamente e configurará a skill.

  3. 3. Comece a usar o skill

    O skill já está ativo. Seu agente de IA pode usar gabb-code-navigation imediatamente no projeto atual.

! Source Notes

This page is still useful for installation and source reference. Before using it, compare the fit, limitations, and upstream repository notes above.

Upstream Repository Material

The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Upstream Source

gabb-code-navigation

# Gabb Code Navigation Search Strategy Decision Flow When you need to find code, follow this order: Task names specific file/function? This AI agent skill

SKILL.md
Readonly
Upstream Repository Material
The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.
Upstream Source

Gabb Code Navigation

Search Strategy Decision Flow

When you need to find code, follow this order:

  1. Task names specific file/function? → Read directly (skip exploration)
  2. Looking for a code construct by name?gabb_symbol
  3. Looking for text content (strings, error messages)? → Grep
  4. Need to understand file layout?gabb_structure

Search for symbols (functions, classes, methods) by name across the workspace.

When to use:

  • Task mentions a function/class/method name to find or fix
  • You need to find where something is defined
  • Grep would return too many false positives

Example:

gabb_symbol name="update_proxy_model_permissions"
→ function update_proxy_model_permissions [prod] migrations/0011_update_proxy_permissions.py:5:1

Use Grep instead when:

  • Searching for error messages or string literals
  • Looking for text patterns, not code identifiers

gabb_structure - File Layout Preview

First: Assess if exploration is needed (see MCP instructions). For trivial tasks with obvious targets, go directly to the file.

If exploring: Before reading large or unfamiliar code files, consider using gabb_structure to preview the layout. This saves tokens when you only need part of a large file.

Recommended for:

  • Large files (>100 lines) where you only need part
  • Unfamiliar codebases where you're exploring
  • Files you'll read multiple times

Skip when:

  • You already know exactly what you're looking for
  • The file is likely small (<100 lines)
  • You can answer from existing context
  • Files you've already seen structure for in this conversation
  • You're searching for string literals, regex patterns, or error messages (gabb_structure shows symbols, not strings—use Grep directly)

Supported Languages

LanguageExtensions
Python.py, .pyi
TypeScript.ts, .tsx
Rust.rs
Go.go
Kotlin.kt, .kts
C++.cpp, .cc, .cxx, .hpp, .hh
C#.cs
Ruby.rb

Usage Patterns

gabb_symbol name="MyClass"
→ class MyClass [prod] src/models.py:45:1

File Structure Preview

1. gabb_structure file="src/large_file.rs"
   → Returns symbol names, kinds, line numbers (NO source code)

2. Read file_path="src/large_file.rs" offset=150 limit=50
   → Read only the section you need

What gabb_structure Output Looks Like

/path/to/file.rs:450
Summary: 15 functions, 3 structs | 450 lines
Key types: MyStruct (10 methods)

MyStruct st 10
 new fn 12
 process fn 17
helper fn 30
main fn 50

The output shows:

  • File path and line count
  • Summary stats (function count, struct count, line count)
  • Key types with method counts
  • Compact symbol tree: name kind_abbrev line with single-space indent for children

Habilidades Relacionadas

Looking for an alternative to gabb-code-navigation or another community skill for your workflow? Explore these related open-source skills.

Ver tudo

openclaw-release-maintainer

Logo of openclaw
openclaw

Resumo localizado: 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

widget-generator

Logo of f
f

Resumo localizado: Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat . It covers ai, artificial-intelligence, awesome-list workflows. This AI agent skill supports Claude Code, Cursor, and

flags

Logo of vercel
vercel

Resumo localizado: The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
Navegador

pr-review

Logo of pytorch
pytorch

Resumo localizado: Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review . It covers autograd, deep-learning, gpu workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

98.6k
0
Desenvolvedor