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

reversereverse 搜索

Agent Skill

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

总安装

419

周安装

18

GitHub Stars

59

下载量

147
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/asiaostrich/universal-dev-standards --skill reverse

简介

reverse 用于查找、检索和筛选逆向工程相关的技术资源、工具链或案例分析。

  • 适用于安全研究、软件破解或二进制分析等专业技术场景。
  • 通过 GitHub 安装,使用 npx skills add 命令从指定仓库添加技能。
  • 使用前应确认权限范围和维护状态,警惕是否触发敏感操作或法律风险内容。
  • reverse 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Reverse Engineering Assistant | 反向工程助手

System archeology framework: reverse engineer existing systems across three dimensions — Logic, Data, and Runtime.

系統考古框架:從三個維度反向工程既有系統——邏輯資料執行環境

Three Dimensions | 三大維度

┌─────────────────────────────────────────────────────────┐
│              System Archeology Framework                   │
├──────────┬──────────────┬────────────────────────────────┤
│  Logic   │     Data     │          Runtime               │
│ (spec)   │    (data)    │         (runtime)              │
├──────────┼──────────────┼────────────────────────────────┤
│ APIs     │ DB Schemas   │ Logs & Error Patterns          │
│ Modules  │ ORMs/Models  │ Config & Environment           │
│ Flows    │ Migrations   │ Metrics & Performance          │
│ Tests    │ Seed Data    │ Infra & Deployment             │
└──────────┴──────────────┴────────────────────────────────┘

Subcommands | 子命令

SubcommandDimensionInputOutput說明
*(none)*AllProject rootFull Archeology Report三維度全面分析
specLogicCode files/dirsSPEC-XXX.md從程式碼提取規格
dataDataDB schemas, ORMs, migrationsData Model Spec分析資料模型與結構
runtimeRuntimeLogs, configs, metricsRuntime Baseline分析執行環境基準
bddSPEC-XXX.md.feature將 AC 轉為 Gherkin
tdd.featureCoverage Report分析測試覆蓋率

Full Analysis Mode | 全面分析模式

When /reverse is invoked without a subcommand, execute all three dimensions sequentially:

  1. Data → Scan schemas, ORMs, migrations
  2. Runtime → Analyze logs, configs, deployment
  3. Logic (spec) → Extract APIs, flows, tests → Generate SPEC

Output: Integrated System Archeology Report combining all three dimensions.

Dimension Details | 維度詳情

spec: Logic Dimension (既有)

  1. Scan - Read source files and identify public APIs, data flows, and business logic
  2. Classify - Tag each finding as [Confirmed], [Inferred], or [Unknown]
  3. Structure - Organize into SDD spec format with Acceptance Criteria
  4. Attribute - Cite every reversed item with file:line source reference

data: Data Dimension (新增)

  1. Discover - Find database schemas, ORM models, migration files, seed data
  2. Map - Build entity-relationship model from code evidence
  3. Classify - Tag relationships as [Confirmed] (FK constraints) or [Inferred] (code patterns)
  4. Report - Output data model spec with:

- Entity list with fields and types - Relationship map (1:1, 1:N, M:N) - Index and constraint inventory - Migration history summary - Data flow paths (write → read)

Evidence sources: schema.prisma, *.migration.*, models/, entities/, knexfile.*, sequelize, typeorm, SQL files, docker-compose.yml (DB services)

runtime: Runtime Dimension (新增)

  1. Scan configs - Environment variables, config files, feature flags
  2. Analyze logs - Log patterns, error frequency, log levels
  3. Check infra - Docker configs, CI/CD pipelines, deployment manifests
  4. Baseline - Output runtime baseline with:

- Environment variable inventory (names only, never values/secrets) - Config file map and hierarchy - External service dependencies (APIs, queues, caches) - Deployment topology (containers, services) - Health check and monitoring endpoints

Evidence sources: .env.example, docker-compose.yml, Dockerfile, *.config.*, CI/CD files, k8s/, log files (patterns only)

Security: NEVER output actual secret values. Only list variable names and describe their purpose.

Anti-Hallucination Rules | 防幻覺規則

RuleRequirement要求
Certainty TagsUse [Confirmed], [Inferred], [Unknown] for all findings所有發現須標注確定性
Source AttributionCite file:line for every reversed item每項反向結果須引用來源
No FabricationNever invent APIs or behaviors not found in code不得捏造程式碼中不存在的 API 或行為
No SecretsNever output secret values from configs or env files不得輸出設定檔或環境變數的密鑰值

Usage | 使用方式

/reverse                              - Full 3-dimension analysis | 三維度全面分析
/reverse spec src/auth/               - Logic: extract spec | 邏輯:提取規格
/reverse data                         - Data: analyze schemas & models | 資料:分析結構
/reverse runtime                      - Runtime: analyze configs & infra | 執行環境:分析配置
/reverse bdd specs/SPEC-AUTH.md       - Convert spec ACs to Gherkin
/reverse tdd features/auth.feature    - Analyze test coverage

Next Steps Guidance | 下一步引導

After /reverse (full or spec) completes, the AI assistant should suggest:

系統考古完成。建議下一步 / System archeology complete. Suggested next steps: - 執行 /sdd 審查並核准此規格 ⭐ Recommended / 推薦 — Review and approve the generated spec - 執行 /derive 從規格推導測試 — Derive tests from spec (requires approval first) - 審查規格中的 [Inferred][Unknown] 標記 — Review uncertainty tags manually

Reference | 參考

AI Agent Behavior | AI 代理行為

完整的 AI 行為定義請參閱對應的命令文件:/reverse For complete AI agent behavior definition, see the corresponding command file: /reverse

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.49%
按下载量换算51

Claude

30.1%
按下载量换算44

Cursor

20.1%
按下载量换算30

Gemini CLI

9.05%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills