Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计通过

cmd-setup-workflowscmd 设置工作流程

Agent Skill

cmd-setup-workflows 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

259

周安装

11

GitHub Stars

公开资料未说明

下载量

91
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/gsmlg-dev/code-agent --skill cmd-setup-workflows

简介

自动检测项目类型并生成 GitHub Actions 工作流。

  • 支持多语言与框架识别,输出标准化 CI/CD 配置。
  • 包含测试、构建与部署模板,适配 library 与应用场景。
  • 需确认 .github/workflows/ 目录可写权限。
  • cmd-setup-workflows 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

/setup-workflows

Agent skill wrapper for the Claude command /setup-workflows.

When the original command text references {{INPUT}}, $1, or named arguments, map them from the user's current request.

Command Instructions

Task

Create or update GitHub Actions workflows in .github/workflows/.

Detection Phase

First, detect the project ecosystem by inspecting the repo root:

  1. Language & package manager: Check for mix.exs, package.json, Cargo.toml, go.mod, pubspec.yaml, pyproject.toml, Makefile, flake.nix, etc.
  2. Project type: Determine if this is a library/package or an application — this affects whether release.yml publishes to a registry.
  3. Existing workflows: Read any existing .github/workflows/*.yml to preserve custom jobs or secrets already configured.
  4. Test framework: Detect test runner from config (ExUnit, Jest/Vitest, cargo test, go test, flutter_test, pytest, etc.)
  5. Build tool: Detect build commands (mix compile, npm run build, cargo build, go build, flutter build, etc.)
  6. Linter/formatter: Detect available checks (mix format --check-formatted, mix credo, eslint, clippy, go vet, dart analyze, ruff, etc.)

Workflow Definitions

Generate only the workflows that apply. Use the detected ecosystem to fill in concrete commands — never use placeholder commands.

1. ci.yml — Static checks & build

  • Trigger: push to any branch, pull_request to any branch
  • Jobs: format check, lint, build (compile/typecheck) — can be parallel jobs or sequential steps, whichever fits the ecosystem
  • No tests in this workflow
  • Cache: dependencies (hex/deps, node_modules, target/, pkg cache, pub cache, etc.)

2. test.yml — Unit tests

  • Trigger: push to main only, pull_request targeting main
  • Jobs: run unit test suite
  • Services: if tests need a database (Postgres, Redis, etc.), add service containers detected from config (e.g. config/test.exs, docker-compose.yml, .env.test)
  • Cache: dependencies

3. release.yml — Manual release

  • Trigger: workflow_dispatch with inputs:

- version (string, required, description: "Release version (e.g. 1.2.3)") - git_ref (string, required, default: "main", description: "Git ref to release from")

  • Steps in order:

1. Checkout at git_ref 2. Setup language toolchain 3. Update version in the canonical version file (mix.exs, package.json, Cargo.toml, pubspec.yaml, pyproject.toml, etc.) to the input version 4. Build the package/artifact 5. If library/package: publish to registry (hex.pm, npm, crates.io, pub.dev, pypi, etc.) — use appropriate secrets (HEX_API_KEY, NPM_TOKEN, CARGO_REGISTRY_TOKEN, PUB_CREDENTIALS, PYPI_TOKEN, etc.) 6. If application: skip publish, but upload build artifacts 7. Commit the version bump: git commit -am "chore(release): v${version}" 8. Create git tag: v${version} 9. Push commit and tag 10. Create GitHub Release via gh release create or softprops/action-gh-release — include release notes (auto-generate from commits since last tag), upload build artifacts

  • Permissions: contents: write

4. e2e.yml — End-to-end tests (only if $ARGUMENTS contains "e2e")

  • Trigger: workflow_dispatch with input:

- version (string, required, description: "Release version to test")

  • Steps:

1. Fetch the release artifacts from GitHub Releases for the given version 2. Setup test environment (install deps, start services) 3. Run e2e test suite

  • Only generate this file when the user explicitly passes "e2e" as argument

Output Rules

  • Use the latest stable action versions (e.g. actions/checkout@v4, actions/setup-node@v4, erlef/setup-beam@v1)
  • Set permissions explicitly on each workflow — principle of least privilege
  • Every workflow must set concurrency to cancel redundant runs: concurrency: group: ${{github.workflow}}-${{github.ref}} cancel-in-progress: true
  • Use fail-fast: false in matrix strategies if applicable
  • Prefer pinned action versions over @latest
  • Name each workflow clearly with a name: field
  • If existing workflow files are found, update them in place preserving any custom secrets, env vars, or extra jobs the user added — do not blindly overwrite

Commit

After writing all workflow files, create a single commit:

ci(github): update github actions workflows

Do NOT push. Report what was created/updated.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.21%
按下载量换算31

Claude

34.31%
按下载量换算31

Cursor

17.8%
按下载量换算16

Gemini CLI

9.59%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills