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

review-gha-migration审查全球人道主义协会的移徙

Agent Skill

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

总安装

824

周安装

33

GitHub Stars

2

下载量

267
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:review-gha-migration(审查全球人道主义协会的移徙)
来源仓库:https://github.com/rwx-cloud/skills
仓库路径:skills/review-gha-migration
安装命令:
npx skills add https://github.com/rwx-cloud/skills --skill review-gha-migration
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/rwx-cloud/skills --skill review-gha-migration

简介

review-gha-migration 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 安装前需确认权限范围、维护状态,注意是否触发联网或文件操作。
  • 建议结合原始 README 核验具体用法和功能边界。

SKILL.md

Quick Reference

Fetch and read the cheat sheet before starting. Do NOT use WebFetch — it summarizes and drops critical details. Instead, use Bash to run rwx docs pull and read stdout directly:

rwx docs pull /docs/rwx/migrating/gha-cheat-sheet

Review Procedure

You are reviewing an RWX config that was generated from a GitHub Actions workflow migration. Your job is to catch problems the implementer missed. Approach this as a skeptical reviewer, not as someone defending prior work.

Step 1: Identify the files

The user provides the RWX config path as $ARGUMENTS. If no path is provided, list the files in .rwx/ and ask the user which config to review.

Then locate the corresponding source GitHub Actions workflow. Look for clues:

  • Comments in the RWX config referencing the source file
  • Filename correspondence (e.g., .rwx/ci.yml likely came from .github/workflows/ci.yml)
  • Ask the user if the source is ambiguous

Read both files in full.

Step 2: Inventory the source workflow

Build a checklist from the GitHub Actions workflow. For each item, you will verify it was correctly translated. Extract:

  • Every job and its needs: dependencies
  • Every step within each job (name + what it does)
  • All triggers and their configurations (branches, paths, event types)
  • Every secret referenced
  • Every environment variable (workflow, job, and step level)
  • Matrix strategies and their dimensions
  • Services (databases, caches, etc.)
  • Artifact upload/download pairs
  • Caching steps
  • Composite action references
  • Reusable workflow calls
  • Conditional logic (if: expressions)
  • Timeout and concurrency settings

Step 3: Verify behavioral equivalence

Go through your checklist item by item and verify each one is accounted for in the RWX config. For each item, classify it as:

  • Correct — properly translated to the RWX equivalent
  • Missing — not present in the RWX config and no TODO comment explaining why
  • Wrong — translated but with a semantic difference that changes behavior
  • Degraded — works but lost important properties (e.g., a parallel job became sequential)

Pay special attention to:

  • Steps that were silently dropped during migration
  • if: conditionals that were lost or simplified incorrectly
  • Environment variables that were not carried over
  • Secrets that are referenced but not mapped
  • Matrix dimensions that were flattened or lost
  • Service containers that have no equivalent
  • Artifact passing between jobs that was not preserved

Step 4: Verify RWX optimizations

If you don't already have the reference documentation in context, fetch it now. Do NOT use WebFetch — it summarizes and drops critical details. Instead, use Bash to run rwx docs pull for each doc and read stdout directly. Run both in a single turn as parallel Bash calls:

  • rwx docs pull /docs/rwx/migrating/rwx-reference — full RWX config syntax
  • rwx docs pull /docs/rwx/migrating/gha-reference — GHA-to-RWX concept mapping

If you encounter a question not covered by these references, use rwx docs search "<query>" to find the relevant documentation page, then rwx docs pull the result.

Using the reference documentation, check whether the config takes full advantage of RWX capabilities:

  • DAG structure: Are tasks that can run in parallel actually parallel, or are there unnecessary sequential dependencies?
  • Content-based caching: Are cache keys content-based (not hash-based) where possible?
  • Package substitution: Are there run: steps installing tools that have RWX package equivalents?
  • Task granularity: Could large monolithic tasks be split into parallel subtasks? In particular, flag install tasks that also contain build commands (e.g., npm ci followed by npm run build) — these should be separate tasks for independent cacheability.
  • Trigger optimization: Are triggers using path filters and branch filters effectively?

Step 5: Validate structure

Check the RWX config for structural issues:

  • Required fields are present
  • YAML is well-formed
  • Task ordering reflects the DAG (independent tasks first)
  • No orphaned use references
  • Run rwx lint.rwx/<name>.yml and review the diagnostics

Step 6: Produce the review

Output a structured review with these sections:

Summary: One-line verdict — is this migration correct and ready, or does it need changes?

Issues (if any): A numbered list of problems found, each with:

  • Severity: blocking (must fix before using) or suggestion (improvement opportunity)
  • What's wrong
  • Where in the RWX config it occurs
  • What the fix should be

Checklist: A markdown checklist showing each source workflow item and whether it was correctly translated:

- [x] Job: build — correctly translated as task `build`
- [ ] Job: deploy — missing, no TODO comment
- [x] Trigger: push to main — correctly mapped
- [ ] Secret: DEPLOY_KEY — referenced but not in secrets mapping

Optimization opportunities: Any RWX-specific improvements not yet applied.

If you find blocking issues, offer to fix them directly.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.87%
按下载量换算96

Claude

27.05%
按下载量换算72

Cursor

20.09%
按下载量换算54

Gemini CLI

9.86%
按下载量换算26

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills