Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

osgrep-referenceosgrep 参考

Agent Skill

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

总安装

897

周安装

37

GitHub Stars

22

下载量

293
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/tdimino/claude-code-minoan --skill osgrep-reference

简介

osgrep-reference 用于查找、检索和筛选相关信息,适合在需要根据关键词快速定位候选结果的场景中使用。

  • 适用于研究检索类任务,可结合来源仓库和原始 README 核验具体用法。
  • 通过 npx skills add 命令从 tdimino/claude-code-minoan 仓库安装。
  • 安装前建议确认权限范围和维护状态,避免触发联网或文件读写操作。
  • 使用时需注意工具输出不能直接作为最终结论,应结合实际场景验证结果。

SKILL.md

osgrep: Semantic Code Search

Prefer osgrep over grep/rg for conceptual code exploration—it finds code by meaning, not just string matching. For exact identifier or literal string searches, grep/rg remains appropriate.

Overview

osgrep is a natural-language semantic code search tool that finds code by concept rather than keyword matching. Unlike grep which matches literal strings, osgrep understands code semantics using local AI embeddings.

Version 0.5.16 (Dec 2025) highlights:

  • skeleton command: Compress files to function/class signatures (~85% token reduction)
  • trace command: Show who calls/what calls for any symbol (call graph)
  • symbols command: List all indexed symbols with definitions
  • doctor command: Health/integrity verification
  • list command: Display all indexed repositories
  • Per-project .osgrep/ directories (no longer global ~/.osgrep/data)
  • V2 architecture with improved performance (~20% token savings, ~30% speedup)
  • Go language support
  • --reset flag for clean re-indexing
  • ColBERT reranking for better result relevance
  • Role detection: distinguishes orchestration logic from type definitions
  • Split searching: separate "Code" and "Docs" indices

When to use osgrep:

  • Exploring unfamiliar codebases ("where is the auth logic?")
  • Finding conceptual patterns ("show me error handling")
  • Locating cross-cutting concerns ("all database migrations")
  • User explicitly asks to search code semantically

When to use traditional tools:

  • Searching for exact strings or identifiers (use Grep)
  • Finding files by name pattern (use Glob)
  • Already know the exact location (use Read)

Quick Start

Run osgrep from within the project directory, since it uses per-project .osgrep/ indexes.

cd /path/to/project      # REQUIRED: cd into the project first
osgrep "your query"      # Now search works

Basic Search

osgrep "your semantic query"
osgrep search "your query" path/to/scope    # Scope to subdirectory
osgrep skeleton src/file.py                 # Compress file to signatures
osgrep trace functionName                   # Show call graph
osgrep symbols                              # List all symbols

Examples:

osgrep "user registration flow"
osgrep "webhook signature validation"
osgrep "database transaction handling"
osgrep "how are plugins loaded" packages/src

Output Format

Returns results in this format:

IMPLEMENTATION path/to/file:line
Score: 0.95

Preamble:
[code snippet or content preview]
...
  • IMPLEMENTATION: Tag indicating the type of match
  • Score: Relevance score (0-1, higher is better)
  • ...: Truncation marker—snippet is incomplete, use Read for full context

Search Strategy

For Architectural/System-Level Questions

Use for: auth, integrations, file watching, cross-cutting concerns

  1. Search broadly first to map the landscape: osgrep "authentication authorization checks"
  2. Survey the results - look for patterns across multiple files:

- Are checks in middleware? Decorators? Multiple services? - Do file paths suggest different layers (gateway, handlers, utils)?

  1. Read strategically - pick 2-4 files that represent different aspects:

- Read the main entry point - Read representative middleware/util files - Follow imports if architecture is unclear

  1. Refine with specific searches if one aspect is unclear: osgrep "session validation logic" osgrep "API authentication middleware"

For Targeted Implementation Details

Use for: specific function, algorithm, single feature

  1. Search specifically about the precise logic: osgrep "logic for merging user and default configuration"
  2. Evaluate the semantic match:

- Does the snippet look relevant? - If it ends in ... or cuts off mid-logic, read the file

  1. One search, one read: Use osgrep to pinpoint the best file, then read it fully.

CLI Reference

Search Options

Control result count:

osgrep "validation logic" -m 20           # Max 20 results total (default: 10)
osgrep "validation logic" --per-file 3    # Up to 3 matches per file (default: 1)

Output formats:

osgrep "API endpoints" --compact           # File paths only
osgrep "API endpoints" --content           # Full chunk content (not just snippets)
osgrep "API endpoints" --scores            # Show relevance scores
osgrep "API endpoints" --plain             # Disable ANSI colors

Sync before search:

osgrep "validation logic" -s               # Sync files to index before searching
osgrep "validation logic" -d               # Dry run (show what would sync)

Index Management

osgrep index                    # Incremental update
osgrep index -r                 # Full re-index from scratch (--reset)
osgrep index -p /path/to/repo   # Index a specific directory
osgrep index -d                 # Preview what would be indexed (--dry-run)

Advanced Commands (v0.5+)

Skeleton - Compress files to signatures:

osgrep skeleton src/server.py              # Show function/class signatures only
osgrep skeleton src/server.py --no-summary # Omit call/complexity summaries
osgrep skeleton "auth logic" -l 5          # Query mode: skeleton of top 5 matching files

Output shows: function signatures with # → calls | C:N | ORCH summaries inside bodies.

Trace - Show call graph:

osgrep trace handleRequest                 # Who calls this? What does it call?

Symbols - List all indexed symbols:

osgrep symbols                             # All symbols (default limit: 20)
osgrep symbols "Request"                   # Filter by pattern
osgrep symbols -p src/api/ -l 50           # Filter by path, increase limit

Other Commands

osgrep list                     # Show all indexed repositories
osgrep doctor                   # Check health and configuration
osgrep setup                    # Pre-download models (~150MB)
osgrep serve                    # Run background daemon (port 4444)
osgrep serve -p 8080            # Custom port (or OSGREP_PORT=8080)
osgrep serve -b                 # Run in background (--background)
osgrep serve status             # Check if daemon is running
osgrep serve stop               # Stop daemon
osgrep serve stop --all         # Stop all daemons

Serve endpoints:

  • GET /health - Health check
  • POST /search - Search with {query, limit, path, rerank}
  • Lock file: .osgrep/server.json with port/pid

Claude Code Integration

osgrep install-claude-code      # Install as Claude Code plugin
osgrep install-opencode         # Install for Opencode

Both plugins automatically manage the background server lifecycle during sessions.

Common Search Patterns

Architecture Exploration

# Mental processes (Open Souls / Daimonic)
osgrep "mental processes that orchestrate conversation flow"
osgrep "subprocesses that learn about the user"
osgrep "cognitive steps using structured output"

# React/Next.js
osgrep "where do we fetch data in components?"
osgrep "custom hooks for API calls"
osgrep "protected route implementation"

# Backend
osgrep "request validation middleware"
osgrep "authentication flow"
osgrep "rate limiting logic"

Business Logic

osgrep "payment processing"
osgrep "notification sending"
osgrep "user permission checks"
osgrep "order fulfillment workflow"

Cross-Cutting Concerns

osgrep "error handling patterns"
osgrep "logging configuration"
osgrep "database migrations"
osgrep "environment variable usage"

Tips for Effective Queries

Trust the Semantics

You don't need exact names. Conceptual queries work better:

# Good - conceptual
osgrep "how does the server start"
osgrep "component state management"

# Less effective - too literal
osgrep "server.init"
osgrep "useState"

Be Specific

# Too vague
osgrep "code"

# Clear intent
osgrep "user registration validation logic"

Use Natural Language

osgrep "how do we handle payment failures?"
osgrep "what happens when a webhook arrives?"
osgrep "where is user input sanitized?"

Watch for Distributed Patterns

If results span 5+ files in different directories, the feature is likely architectural—survey before diving deep.

Don't Over-Rely on Snippets

For architectural questions, snippets are signposts, not answers. Read the key files.

Technical Details

  • 100% Local: Uses transformers.js embeddings (no remote API calls)
  • Auto-Isolated: Each repo gets its own index in .osgrep/ directory (v0.5+)
  • Adaptive Performance: Bounded concurrency keeps system responsive
  • Index Location: .osgrep/ in project root (was ~/.osgrep/data/ in v0.4.x)
  • Model Download: ~150MB on first run (osgrep setup to pre-download)
  • Chunking Strategy: Tree-sitter parses code into function/class boundaries
  • Deduplication: Identical code blocks are deduplicated
  • Dual Channels: Separate "Code" and "Docs" indices with ColBERT reranking
  • Structural Boosting: Functions/classes prioritized over test files
  • Skeleton Compression: ~85% token reduction when viewing file structure

Troubleshooting

"Still Indexing..." message:

  • Index is ongoing. Results will be partial until complete.
  • Alert the user and ask if they wish to proceed.

Slow first search:

  • Expected—indexing takes 30-60s for medium repos
  • Use osgrep setup to pre-download models

Index out of date:

  • Run osgrep index to refresh
  • Run osgrep index --reset for a complete re-index
  • osgrep usually auto-detects changes

Installation issues:

osgrep doctor              # Diagnose problems
npm install -g osgrep      # Reinstall if needed

No results found:

  • Try broader queries ("authentication" vs "JWT middleware")
  • Ensure index is up to date (osgrep index)
  • Verify you're in the correct repository directory

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

展示第三方安全扫描或审计结果

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

平台分布

Codex

35.65%
按下载量换算104

Claude

29.28%
按下载量换算86

Cursor

17.45%
按下载量换算51

Gemini CLI

8.23%
按下载量换算24

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills