Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

srgn-clisrgn CLI 搜索

Agent Skill

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

总安装

509

周安装

21

GitHub Stars

11

下载量

166
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/outlinedriven/odin-codex-plugin --skill srgn-cli

简介

srgn-cli 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 它支持基于关键词、任务场景或来源线索进行信息检索,适用于 CLI 搜索类需求。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前建议确认权限范围、维护状态及是否触发联网或文件操作。
  • 具体用法可参考原始 README 和仓库中的 SKILL.md 说明。

SKILL.md

srgn CLI

Overview

Use this skill to convert user intent into precise srgn commands with safe defaults. Focus on CLI workflows for search, transformation, scoped migrations, and lint-like checks.

Workflow Decision Tree

  1. Classify the request.

- Search only: no content changes expected. - Transform in stream: stdin/stdout pipeline usage. - Transform files: in-place updates over globs.

  1. Identify scope strategy.

- Regex scope only. - Language scope only. - Combined language + regex scope. - Custom tree-sitter query scope.

  1. Identify action strategy.

- Replacement (positional replacement argument after --). - Composable actions (--upper, --lower, --titlecase, --normalize, --symbols, --german). - Standalone actions (-d, -s).

  1. Apply safety controls.

- Prefer --dry-run for file operations. - Keep globs quoted. - Add --fail-no-files when missing files should fail CI.

  1. Choose output mode.

- Human-readable (default tty). - Machine-readable (--stdout-detection force-pipe).

  1. Validate behavior.

- Confirm expected match count. - Confirm no out-of-scope edits. - Re-run with stricter scope if needed.

Safety Protocol

  1. Default to non-destructive behavior first.

- Prefer stdin-based or search-mode examples before in-place rewrites.

  1. For file edits, require preview path.

- Use --dry-run first. - Then run the same command without --dry-run only after confirmation.

  1. Protect shell parsing boundaries.

- Quote regex. - Quote globs: --glob '**/*.py'. - Use -- before replacement values.

  1. Use the narrowest scope that solves the task.

- Prefer language scope + anchored regex over broad regex-only replacement.

  1. Treat -d and -s as high-risk operations.

- Always provide explicit scope for them.

Command Construction Template

Use this template when building commands:

srgn [LANGUAGE_SCOPE_FLAGS...] [GLOBAL_FLAGS...] [ACTION_FLAGS...] [SCOPE_REGEX] -- [REPLACEMENT]

Build incrementally:

  1. Scope first.

- Example: --python 'imports'

  1. Regex filter second.

- Example: '^old_pkg'

  1. Action third.

- Replacement: -- 'new_pkg' - Or composable flag: --upper

  1. File mode flags fourth (if needed).

- --glob '**/*.py' --dry-run

  1. CI behavior last.

- --fail-any or --fail-none

High-Value Task Recipes

  1. Rename module imports in Python only:
srgn --python 'imports' '^old_pkg' --glob '**/*.py' --dry-run -- 'new_pkg'
  1. Convert print calls to logging in Python call-sites only:
srgn --python 'function-calls' '^print$' --glob '**/*.py' --dry-run -- 'logging.info'
  1. Rename Rust use prefixes without touching strings/comments:
srgn --rust 'uses' '^good_company' --glob '**/*.rs' --dry-run -- 'better_company'
  1. Remove C# comments only:
srgn --csharp 'comments' -d '.*'
  1. Search for Rust unsafe language keyword usage only:
srgn --rust 'unsafe'
  1. Fail CI if undesirable pattern appears in Python docstrings:
srgn --python 'doc-strings' --fail-any 'param.+type'
  1. Force machine-readable output for downstream parsers:
srgn --python 'strings' --stdout-detection force-pipe '(foo|bar)'
  1. Preview multi-file changes with deterministic ordering:
srgn --typescript 'imports' '^legacy-lib' --glob 'src/**/*.ts' --sorted --dry-run -- 'modern-lib'

For broader, categorized examples, load references/cli-cookbook.md.

Failure and Debug Playbook

  1. No matches when matches are expected.

- Verify language scope and prepared query name. - Remove regex temporarily to test scope alone. - Add --stdout-detection force-pipe to inspect exact matched columns.

  1. Too many matches.

- Anchor regex (^...$) where possible. - Narrow from generic language scope to a specific prepared query.

  1. Wrong files targeted.

- Confirm --glob pattern and shell quoting. - Add --fail-no-files in CI to catch empty globs.

  1. Unclear behavior across multiple language scopes.

- Default is intersection (left-to-right narrowing). - Use -j for OR behavior.

  1. Special characters misinterpreted as regex.

- Use --literal-string when literal matching is intended.

Reference Loading Guide

Load reference files based on request type:

  1. references/cli-cookbook.md

- Load for routine command construction and practical recipes.

  1. references/language-scopes.md

- Load for prepared query selection by language.

  1. references/advanced-patterns.md

- Load for custom queries, capture substitutions, join semantics, and CI failure modes.

  1. references/deepwiki-recursive-notes.md

- Load for complete DeepWiki-derived background and architecture context.

Intent-to-Command Map

Use this map to respond quickly:

  1. "Rename imports safely"

- Use language import scope + anchored regex + --glob... --dry-run.

  1. "Update function calls only"

- Use language call-site scope (for example --python 'function-calls') + exact name regex.

  1. "Only comments/docstrings"

- Use prepared comment/docstring scopes, add -j only when OR semantics are required.

  1. "CI should fail if pattern appears"

- Use scoped search + --fail-any.

  1. "CI should fail if required pattern is missing"

- Use scoped search + --fail-none.

  1. "I need parseable output"

- Use --stdout-detection force-pipe.

  1. "Regex escaping is painful"

- Use --literal-string and explicit replacement via --.

Execution Checklist

Before returning a final command, verify:

  1. Scope is minimal and syntax-aware where possible.
  2. Replacement argument is after -- (if replacement is used).
  3. Globs are quoted.
  4. --dry-run is present for file edits unless user requested direct apply.
  5. Join semantics are explicit when multiple language scopes are used (-j vs default intersect).
  6. Failure flags align with user intent (--fail-any, --fail-none, --fail-no-files).
  7. Output mode is explicit if user needs machine parsing.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.88%
按下载量换算60

Claude

28.12%
按下载量换算47

Cursor

19.23%
按下载量换算32

Gemini CLI

8.74%
按下载量换算15

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/outlinedriven/odin-codex-plugin --skill srgn-cli 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills