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

headless-ghidra无头吉德拉

Agent Skill

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

总安装

759

周安装

31

GitHub Stars

3

下载量

243
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/bytelandtechnology/headless-ghidra --skill headless-ghidra

简介

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

  • 适用于无头 Ghidra 反编译工具的使用方法、脚本编写及自动化分析相关信息的查询。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 了解具体调用方式。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Headless Ghidra — Global Orchestrator

This skill is the workflow coordinator for the skill family. It defines the P0–P4 sequence, dispatch rules, and artifact hand-off points. ghidra-agent-cli remains the tool reference for command syntax and YAML artifact semantics.

Required Shared Tool Contract

  • ghidra-agent-cli is the mandatory shared interface for supported workspace, metadata, Ghidra, Frida, progress, validation, and gate operations.
  • Phase skills must name the exact ghidra-agent-cli subcommands they use.
  • Lower-level shell scripts and Java helpers are backend details. They must not replace the CLI as the primary interface when the CLI already supports the action.
  • All workflow artifacts must live under artifacts/<target-id>/.
  • YAML artifacts must be created, updated, and validated by ghidra-agent-cli.
  • The CLI must not automatically create git commits.
  • Gate transitions require relevant artifacts to exist on disk and be ready for user review.
  • All Ghidra project operations must go through ghidra-agent-cli. If the CLI lacks a required capability, pause and ask the user before creating or running a new Ghidra script.

Pipeline

P0 Intake → P1 Baseline+Runtime → P2 Third-Party → [P3 Metadata Enrichment → P4 Function Substitution]*
PhaseSkillPurposePrimary outputs
P0headless-ghidra-intakeInitialize target workspace, discover prerequisites, and define scopepipeline-state.yaml, scope.yaml, targets/<id>/ghidra-projects/
P1headless-ghidra-baselineRun Ghidra import/analysis, export baseline YAML, and prepare runtime observationsbaseline/*.yaml, runtime/run-manifest.yaml, runtime/run-records/*.yaml, runtime/hotpaths/call-chain.yaml
P2headless-ghidra-evidenceIdentify and record third-party libraries and pristine sourcesthird-party/identified.yaml, third-party/pristine/<library>@<version>/, third-party/compat/<library>@<version>/
P3headless-ghidra-discoveryEnrich names, signatures, types, constants, strings, and selected hotpath metadatametadata/*.yaml, metadata/apply-records/
P4headless-ghidra-batch-decompileSubstitute selected functions through metadata application and Ghidra decompilationsubstitution/next-batch.yaml, substitution/functions/<fn_id>/

Shared Artifact Contract

All phases work inside this active workspace layout:

targets/<target-id>/ghidra-projects/

artifacts/<target-id>/
├── pipeline-state.yaml
├── scope.yaml
├── intake/
├── baseline/
├── runtime/
│   ├── project/
│   ├── fixtures/
│   ├── run-manifest.yaml
│   ├── run-records/
│   └── hotpaths/call-chain.yaml
├── third-party/
│   ├── identified.yaml
│   ├── pristine/<library>@<version>/
│   └── compat/<library>@<version>/
├── metadata/
│   ├── renames.yaml
│   ├── signatures.yaml
│   ├── types.yaml
│   ├── constants.yaml
│   ├── strings.yaml
│   └── apply-records/
├── substitution/
│   ├── template/
│   ├── next-batch.yaml
│   └── functions/<fn_id>/
└── gates/

The orchestrator treats pipeline-state.yaml as the current target-level state record and relies on the phase-owned YAML artifacts above for hand-offs.

Orchestrator Responsibilities

  1. Detect or resume the active target.
  2. Read artifacts/<target-id>/pipeline-state.yaml.
  3. Dispatch the correct phase skill for the current stage.
  4. Run ghidra-agent-cli gate check --phase... at each transition.
  5. Advance phase state only after the gate passes.
  6. Handle user dialogs such as resume/restart, optional Frida supplementation, batch confirmation, divergence review, and completion.

Gate Policy

  • P0–P4 are the only primary pipeline transitions.
  • ghidra-agent-cli gate check is the authoritative gate validation for all pipeline phases (P0–P4). The legacy gate-check.sh has been removed.

Required ghidra-agent-cli Commands

  • ghidra-agent-cli context use
  • ghidra-agent-cli context show
  • ghidra-agent-cli context clear
  • ghidra-agent-cli workspace state show
  • ghidra-agent-cli workspace state set-phase
  • ghidra-agent-cli gate check
  • ghidra-agent-cli validate
  • ghidra-agent-cli progress compute-next-batch
  • ghidra-agent-cli progress show

Strict Prohibitions

  • Must not execute analysis work itself.
  • Must not edit baseline, evidence, decompilation, or verification artifacts directly except for explicit state updates it owns.
  • Must not bypass ghidra-agent-cli for supported state, progress, context, validation, or gate operations.
  • Must not accept alternate decompilation backends in place of Ghidra.
  • Must not create git commits automatically.
  • Must not create or run new Ghidra scripts when the CLI lacks a capability; pause and ask the user first.

Next Skill Routing

  • P0 complete → headless-ghidra-baseline
  • P1 complete → headless-ghidra-evidence
  • P2 complete → headless-ghidra-discovery
  • P3 complete → headless-ghidra-batch-decompile
  • P4 complete for all selected functions → either loop back to P3 or finish

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.84%
按下载量换算92

Claude

29.15%
按下载量换算71

Cursor

16.84%
按下载量换算41

Gemini CLI

9.17%
按下载量换算22

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills