Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计提醒

code-search代码搜索

Agent Skill

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

总安装

768

周安装

32

GitHub Stars

8

下载量

256
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/anentrypoint/plugforge --skill code-search

简介

code-search 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 适用于代码库语义搜索,支持自然语言查询并返回带路径和行号的搜索结果。
  • 使用 bun x codebasesearch 工具进行高效代码定位,建议分步细化搜索词以提高准确性。
  • 安装命令:npx skills add https://github.com/anentrypoint/plugforge --skill code-search。
  • 建议确认权限范围和维护状态,避免触发联网或文件读写操作。

SKILL.md

Semantic Code Search

Only use bun x codebasesearch for searching code, or execute some custom code if you need more than that, never use other cli tools to search the codebase. Search the codebase using natural language. Do multiple searches when looking for files, starting with fewer words and adding more if you need to refine the search. 102 file types are covered, returns results with file paths and line numbers.

Usage

bun x codebasesearch "your natural language query"

Invocation Examples

Via Skill Tool (Recommended - Structured JSON Input)

Basic search:

{
  "prompt": "where is authentication handled"
}

With filtering and limits:

{
  "prompt": "database connection setup",
  "filter": {
    "max-results": 20,
    "min-score": 0.7,
    "sort-by": "path"
  }
}

Scoped to directory with file type filter:

{
  "prompt": "error logging middleware",
  "context": {
    "path": "src/middleware/",
    "file-types": ["js", "ts"]
  },
  "timeout": 5000
}

Exclude patterns and narrow results:

{
  "prompt": "rate limiter implementation",
  "context": {
    "exclude-patterns": ["*.test.js", "node_modules/*"]
  },
  "filter": {
    "max-results": 10,
    "min-score": 0.8
  }
}

Legacy CLI Invocation (Still Supported)

bun x codebasesearch "where is authentication handled"
bun x codebasesearch "database connection setup"
bun x codebasesearch "how are errors logged"
bun x codebasesearch "function that parses config files"
bun x codebasesearch "where is the rate limiter"

Output Examples

Success Response (Multiple Results)

{
  "status": "success",
  "results": [
    {
      "file": "src/auth/handler.js",
      "line": 42,
      "content": "async function authenticateUser(credentials) {",
      "score": 0.95,
      "context": {
        "before": [
          "// Main authentication entry point",
          ""
        ],
        "after": [
          "  const { username, password } = credentials;",
          "  const user = await db.users.findOne({ username });"
        ]
      },
      "metadata": {
        "language": "javascript",
        "size": 2048,
        "modified": "2025-03-10T14:23:00Z"
      }
    },
    {
      "file": "src/middleware/auth-middleware.js",
      "line": 18,
      "content": "export const requireAuth = (req, res, next) => {",
      "score": 0.78,
      "metadata": {
        "language": "javascript",
        "size": 1024,
        "modified": "2025-03-10T14:20:00Z"
      }
    }
  ],
  "meta": {
    "query": "authentication handled",
    "count": 2,
    "filtered": 2,
    "duration_ms": 245,
    "scanned_files": 87,
    "timestamp": "2025-03-15T10:30:00Z"
  }
}

Empty Results Response

{
  "status": "empty",
  "results": [],
  "meta": {
    "query": "nonexistent pattern xyz123",
    "count": 0,
    "filtered": 0,
    "duration_ms": 123,
    "scanned_files": 87,
    "timestamp": "2025-03-15T10:30:00Z"
  }
}

Timeout Response (Partial Results)

{
  "status": "partial",
  "results": [
    {
      "file": "src/a.js",
      "line": 5,
      "content": "function init() {",
      "score": 0.92,
      "metadata": { "language": "javascript", "size": 512 }
    },
    {
      "file": "src/b.js",
      "line": 12,
      "content": "const setup = () => {",
      "score": 0.85,
      "metadata": { "language": "javascript", "size": 768 }
    }
  ],
  "meta": {
    "query": "expensive search pattern",
    "count": 1847,
    "filtered": 2,
    "duration_ms": 10000,
    "scanned_files": 45,
    "timestamp": "2025-03-15T10:30:00Z"
  },
  "errors": [
    {
      "code": "TIMEOUT",
      "message": "Search exceeded 10000ms limit. Returning partial results (2 of 1847 matches)."
    }
  ]
}

Error Response (Invalid Input)

{
  "status": "error",
  "results": [],
  "meta": {
    "query": null,
    "count": 0,
    "filtered": 0,
    "duration_ms": 50,
    "scanned_files": 0,
    "timestamp": "2025-03-15T10:30:00Z"
  },
  "errors": [
    {
      "code": "INVALID_PATH",
      "message": "context.path='/nonexistent' does not exist"
    },
    {
      "code": "SCHEMA_VIOLATION",
      "message": "filter.max-results must be between 1 and 500, got 1000"
    }
  ]
}

Rules

  • Always use this first before reading files — it returns file paths and line numbers
  • Natural language queries work best; be descriptive about what you're looking for
  • Structured JSON output includes relevance scores and file paths for immediate navigation
  • Use returned file paths and line numbers to read full file context via Read tool
  • Results are pre-sorted by relevance (highest scores first) unless sort-by specifies otherwise
  • Timeout queries return partial results with status=partial — use if time-critical
  • Schema validation ensures valid input before execution — invalid args return error with details

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.96%
按下载量换算84

Claude

30.14%
按下载量换算77

Cursor

19.37%
按下载量换算50

Gemini CLI

8.6%
按下载量换算22

安全审计

Gen Agent Trust Hub

可疑

Socket

可疑

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills