Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计未展示

codebase-navigator代码库导航器

Agent Skill

codebase-navigator 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

729

周安装

31

GitHub Stars

公开资料未说明

下载量

255
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:codebase-navigator(代码库导航器)
来源仓库:https://github.com/leegonzales/aiskills
仓库路径:skills/codebase-navigator
安装命令:
npx skills add leegonzales/aiskills --skill "codebase-navigator"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

AgentSkills.tonpx skills
npx skills add leegonzales/aiskills --skill "codebase-navigator"

简介

用于发现并安装 AI 代理的技能。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 等宿主环境。
  • 支持技能管理与扩展,增强代理功能覆盖范围。
  • 安装前请确认权限范围、维护状态及是否触发联网或文件读写。
  • codebase-navigator 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
codebase-navigator
description
Semantic code search using osgrep for understanding codebases, finding implementations, and navigating large projects. Use when asked "where is", "how does", "find the code that", or any question about code location or implementation.

Codebase Navigator

Semantic code search powered by osgrep - find code by meaning, not just keywords.

When to Use

Invoke when user:

  • Asks "where is [feature] implemented?"
  • Asks "how does [component] work?"
  • Wants to "find the code that handles [task]"
  • Needs to understand codebase architecture
  • Searches for implementation patterns

Core Workflow

1. Check Index Freshness (Auto-Refresh)

Before searching, check if index is stale (>4 hours):

# Find store for current repo
osgrep list

# Check age of relevant store (macOS)
STORE=~/.osgrep/data/YOUR-STORE.lance
STORE_AGE=$(( $(date +%s) - $(stat -f %m "$STORE") ))

# If older than 4 hours (14400 seconds), refresh
if [ $STORE_AGE -gt 14400 ]; then
  echo "Index is $(( STORE_AGE / 3600 )) hours old - refreshing..."
  osgrep index
fi

Quick version: If unsure, just use --sync:

osgrep search "query" --sync   # Always safe, updates before searching

2. First-Time Setup

If no store exists for current repo:

osgrep list              # See available stores
osgrep doctor            # Verify setup is healthy
osgrep index             # Index current directory (takes ~30s-2min)

3. Search Semantically

Basic search:

osgrep search "natural language description of what you're looking for"

Tuned search:

osgrep search "query" --max-count 10      # Limit total results
osgrep search "query" --per-file 3        # Multiple matches per file
osgrep search "query" --content           # Show full chunk content
osgrep search "query" --compact           # File paths only
osgrep search "query" --scores            # Show relevance scores
osgrep search "query" --json              # Machine-readable output

3. Synthesize Results

DO NOT dump raw osgrep output. Instead:

  1. Read the relevant file snippets
  2. Understand the code in context
  3. Explain to user in plain language
  4. Cite specific files and line numbers

Query Formulation

Semantic queries work best. Transform user questions:

User asksosgrep query
"Where's the auth?""authentication logic and user login"
"How do we handle errors?""error handling and exception management"
"Find the API endpoints""HTTP routes and API endpoint definitions"
"Database queries""database queries and SQL execution"
"Config loading""configuration loading and environment variables"

Tips for better queries:

  • Use descriptive phrases, not keywords
  • Include synonyms: "auth" → "authentication logic and user login"
  • Describe the purpose: "code that validates user input"
  • Be specific about what you want: "function that calculates total price"

Output Modes

Default Mode

Shows snippet preview with line numbers:

📂 src/auth/login.ts
   1 │ export async function login(username: string, password: string) {
   2 │   const user = await findUser(username);

Content Mode (--content)

Shows full chunk content for deeper context.

Compact Mode (--compact)

File paths only - useful for getting quick overview:

📂 src/auth/login.ts
📂 src/auth/session.ts
📂 src/middleware/auth.ts

JSON Mode (--json)

Machine-readable for programmatic use.

Scores Mode (--scores)

Shows relevance scores (0-1) - useful for understanding match quality.

Advanced Usage

Keep Index Fresh

osgrep indexes can become stale. Refresh regularly, especially after:

  • Pulling new code
  • Creating/deleting files
  • Major refactoring
osgrep search "query" --sync    # Update index then search
osgrep index                    # Full re-index if --sync isn't enough

Symptom of stale index: Known files not appearing in results, or deleted files still showing up.

Background Server

For large codebases with frequent changes:

osgrep serve                    # Runs on port 4444
osgrep serve --port 8080        # Custom port

Multiple Stores

Work with specific indexed stores:

osgrep --store myproject.lance search "query"

Query Refinement

When first search returns too many/wrong results:

Step 1: Check result quality

osgrep search "query" --scores  # Low scores (<0.15) = poor matches

Step 2: Narrow with domain terms

❌ "packaging workflow" → finds ArtifactsBuilder, MCPBuilder
✅ "skill packaging automation" → finds SkillPackager

Step 3: Add specificity

❌ "validation" → too broad (25+ files)
✅ "YAML frontmatter validation for skills" → targeted

Step 4: Try synonyms if nothing found

❌ "auth" → too terse
✅ "authentication login session user credentials" → covers variations

osgrep vs grep: Decision Guide

Use osgrep when...Use grep/rg when...
Searching by conceptSearching for exact strings
"Where is auth handled?""Find TODO:"
"How does caching work?""Find sha256"
Unknown function namesKnown function names
Architecture questionsError message lookup
Understanding code purposeFinding specific identifiers

Rule of thumb: If you could type the exact string, use grep. If you're describing what code *does*, use osgrep.

Combining Tools

osgrep + Glob (file types)

osgrep finds code that *mentions* Python, not just .py files:

# Find Python data processing
osgrep search "python data processing" --compact  # May include .md files
# Then filter:
# Use Glob tool with pattern "**/*.py" for actual scripts

osgrep + grep (refine)

# Step 1: Find relevant area
osgrep search "checksum verification"  # May miss literal "sha256"

# Step 2: grep for specific term
grep -r "sha256" --include="*.sh"  # Finds exact matches

osgrep + Read (understand)

# Step 1: Find files
osgrep search "error handling middleware" --compact

# Step 2: Read to understand
# Use Read tool on top results

Anti-Patterns

DON'T:

  • Use osgrep for exact string matches (use grep/rg instead)
  • Dump raw output without synthesis
  • Skip indexing and wonder why searches fail
  • Use single keywords ("auth") instead of phrases ("authentication handling")
  • Expect osgrep to find technical literals like "sha256", "TODO:", error codes

DO:

  • Formulate queries as natural language descriptions
  • Check osgrep list if searches return nothing
  • Use --content when you need more context
  • Combine with file reading for full understanding
  • Use --scores to assess match quality
  • Refine queries iteratively when results are poor

Example Session

User: "Where do we calculate shipping costs?"

Process:

osgrep search "shipping cost calculation and pricing logic"

Results show: src/orders/shipping.ts, src/utils/pricing.ts

Response: "Shipping costs are calculated in src/orders/shipping.ts:45-67, which uses the calculateShipping() function. This calls pricing utilities from src/utils/pricing.ts for rate lookups. The calculation considers weight, distance, and shipping method."

References

For query patterns and examples:

  • references/query-patterns.md - Common query formulations
  • references/troubleshooting.md - Common issues and fixes

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

28.78%
按下载量换算73

Antigravity

22.46%
按下载量换算57

windsurf

20.26%
按下载量换算52

Codex

13.69%
按下载量换算35

OpenCode

9.04%
按下载量换算23

Gemini CLI

3.47%
按下载量换算9

安全审计

暂无安全审计结果可展示。

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills