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

migrate-from-gha从 GHA 迁移

Agent Skill

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

总安装

796

周安装

34

GitHub Stars

2

下载量

280
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/rwx-cloud/skills --skill migrate-from-gha

简介

用于从 GitHub Actions 迁移的信息检索。

  • 适合查找替代 CI/CD 方案或工作流重构方法。
  • 通过 GitHub 安装,建议查看原始 README 了解迁移路径。
  • 使用前应确认是否涉及密钥管理与外部服务集成。
  • migrate-from-gha 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Migration Procedure

You are migrating a GitHub Actions workflow to RWX. Follow these steps exactly. Do NOT use TodoWrite — this procedure is your task list.

Step 1: Read and analyze the source workflow

Read the GitHub Actions workflow file at $ARGUMENTS. If no path is provided, look for .github/workflows/ and list the available workflow files for the user to choose from.

Identify all jobs and their needs: dependencies, all steps within each job, triggers (on: events), secrets referenced (${{secrets.*}}), environment variables (env: blocks at workflow, job, and step level), matrix strategies, services, composite action references, reusable workflow calls, artifact upload/download steps, and cache steps (these will be removed — RWX handles caching natively).

For steps using uses:./.github/actions/foo, read that action's action.yml and inline its logic into the translated RWX config. For cross-repo references (uses: org/repo@ref), add a # TODO: comment explaining what the action does and that the user needs to translate it manually or find an RWX package equivalent.

Tell the user what you found: how many jobs, the dependency graph between them, which triggers are configured, which composite actions you inlined, and which cross-repo references will need TODO comments. Keep it brief.

Then write a migration inventory to .rwx/.migration-inventory.md. This file is a structured checklist that will be used during the review step to verify nothing was dropped. Keep it compact — names and keys only, not full details:

## Jobs

- lint (needs: [])
- test (needs: [])
- build (needs: [lint, test])
- deploy (needs: [build], if: github.ref == 'refs/heads/main')

## Secrets

- DEPLOY_TOKEN

## Environment Variables

- DATABASE_URL (job: test)

## Services

- postgres (job: test)

## Matrix Strategies

- go-version: [1.22, 1.26] (job: test)

## Notable Steps

- golangci-lint-action (job: lint)
- upload-artifact coverage.out (job: test)
- download-artifact app-binary (job: deploy)

Omit any sections that have no entries.

Step 2: Write the optimized RWX config

Fetch the full reference documentation 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 all three in a single turn as parallel Bash calls:

  • rwx docs pull /docs/rwx/migrating/gha-cheat-sheet — action-to-package mapping and DAG pattern (read this first)
  • 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.

This is the core of the migration. Do NOT produce a 1:1 mapping. Apply the optimization rules from the reference documentation — including DAG decomposition, content-based caching, package substitution, trigger mapping, secret mapping, and environment variable translation.

If the source workflow uses on: workflow_run (triggered after another workflow completes), translate this to an RWX embedded run — a run config nested inside the parent workflow's config. Consult the reference docs for embedded run syntax. Do not fall back to dispatch triggers or conditional push triggers for this case.

Look for parallelism opportunities *within* individual GHA jobs, not just across jobs. If a single job contains multiple independent steps (e.g., eslint, prettier, and openapi validation in a "lint" job), split them into separate RWX tasks that can run in parallel rather than combining them into one sequential run: block.

Separate install and build into distinct tasks. When a GHA job runs npm ci (or similar) followed by a build step (e.g., npm run build for a shared package), these should be two separate RWX tasks so the build can be cached independently. If the same build command appears in multiple GHA jobs, produce a single shared build task in the DAG rather than duplicating it.

If the source workflow contains docker build steps, use AskUserQuestion to ask whether they'd like to use RWX OCI images instead. Explain the tradeoffs: OCI images leverage RWX's native image building with content-based caching and no Docker daemon dependency, but require adopting RWX-specific configuration. Consult the cheat sheet for OCI image details. Respect the user's choice — if they prefer to keep docker build, translate it directly.

Write the generated RWX config to .rwx/<name>.yml, where <name> is derived from the source workflow filename (e.g., ci.github.yml.rwx/ci.yml).

Structure the file in this order:

  1. on: triggers
  2. base: image and config
  3. tool-cache: (if needed)
  4. tasks: array, ordered by dependency depth (independent tasks first, then their dependents)

After writing the file, validate the generated config:

rwx lint .rwx/<name>.yml

If there are diagnostics, fix the issues and re-check until the file is clean. You can also initiate test runs locally without pushing the code — see rwx run --help for documentation.

Step 3: Review and summarize

Tell the user: "Now reviewing the migration to check for gaps."

Re-read .rwx/.migration-inventory.md (written in Step 1) and the generated RWX config. Use the inventory as your checklist — verify every item in it is accounted for in the config. This is more reliable than working from memory of the source workflow.

Then follow the review procedure from review-gha-migration/SKILL.md. You already have the reference docs from Step 2 — do not re-fetch them.

If the review found blocking issues, fix them before continuing.

Then provide a final summary to the user that covers both the migration and the review:

  • What the original workflow did
  • How the RWX version is structured differently (and why it's better)
  • The DAG shape: which tasks run in parallel vs sequentially
  • The review verdict and any issues found (or confirmation that it passed)
  • Any # TODO: items that need manual attention
  • Secrets that need to be configured in RWX Cloud
  • Estimated parallelism improvement (e.g., "6 sequential steps → 3 parallel stages")

Let the user know they can re-run the review independently at any time with /review-gha-migration.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.89%
按下载量换算103

Claude

30.1%
按下载量换算84

Cursor

19.16%
按下载量换算54

Gemini CLI

10.13%
按下载量换算28

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills