← 返回 Skills 市场
61
总下载
0
收藏
1
当前安装
1
版本数
在 OpenClaw 中安装
/install gh-actions-automation
功能描述
GitHub Actions workflow generator. Creates CI/CD pipelines for Node.js, Python, Docker. Triggers: github actions, ci cd, workflow, automate build, github ci.
使用说明 (SKILL.md)
GitHub Actions Helper
Overview
Generates GitHub Actions workflows for continuous integration and deployment.
When to Use
- User asks to "set up CI" or "add github actions"
- New project needs automated testing
- User wants to "deploy with github actions"
How It Works
Detect project type
Check for: package.json (Node), pyproject.toml (Python), Dockerfile (Docker).
Node.js CI Template
name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with: { node-version: "20" }
- run: npm ci
- run: npm test
Python CI Template
name: Python CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with: { python-version: "3.12" }
- run: pip install -r requirements.txt
- run: pytest
Tips
- Use actions/checkout@v4 not @v4.2.0
- Use npm ci not npm install for reproducibility
- Store secrets in GitHub Secrets
安全使用建议
This skill appears coherent and low-risk, but remember it relies on the agent being able to read your repository files to detect project types—confirm the agent is only granted access to the intended repo/workspace. Before using generated workflows, review them for correct secret handling, pinned action versions (consider specifying full action refs), and any deployment steps that might require credentials. If you want stronger guarantees, ask the skill to only output templates without writing files, and test the workflows in a non-production branch or fork first.
功能分析
Type: OpenClaw Skill
Name: gh-actions-automation
Version: 1.0.0
The skill is a straightforward GitHub Actions workflow generator that provides standard CI/CD templates for Node.js and Python projects. The instructions in SKILL.md are aligned with its stated purpose, follow industry best practices (e.g., using 'npm ci' and GitHub Secrets), and contain no evidence of malicious intent, data exfiltration, or prompt injection.
能力评估
Purpose & Capability
Name/description (GitHub Actions workflow generator) match the SKILL.md: it generates CI templates for Node.js, Python, and Docker and lists expected project files (package.json, pyproject.toml, Dockerfile). No unrelated binaries, credentials, or config paths are requested.
Instruction Scope
Instructions are limited to detecting common project files and producing YAML templates for workflows. This requires the agent to read repository files (project root), which is coherent with the task. The instructions are brief/vague about exact workspace paths and do not specify safeguards; the agent will need only repository access but you should confirm the agent's file access scope.
Install Mechanism
No install spec or code files are present (instruction-only), so nothing is downloaded or written to disk by the skill itself.
Credentials
The skill declares no environment variables or credentials. The SKILL.md sensibly advises storing secrets in GitHub Secrets but does not request them itself.
Persistence & Privilege
Skill is not always-enabled and does not request persistent system modifications or broader privileges. Autonomous invocation is allowed (platform default) but not combined with other red flags.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install gh-actions-automation - 安装完成后,直接呼叫该 Skill 的名称或使用
/gh-actions-automation触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release of GitHub Actions workflow generator.
- Generates CI/CD pipelines for Node.js, Python, and Docker projects
- Automatically detects project type to suggest relevant workflow
- Provides templates for common workflows (install, test, build)
- Supports typical triggers: push, pull_request
- Shares best practices for GitHub Actions setup
元数据
常见问题
Gh Actions Automation 是什么?
GitHub Actions workflow generator. Creates CI/CD pipelines for Node.js, Python, Docker. Triggers: github actions, ci cd, workflow, automate build, github ci. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 61 次。
如何安装 Gh Actions Automation?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install gh-actions-automation」即可一键安装,无需额外配置。
Gh Actions Automation 是免费的吗?
是的,Gh Actions Automation 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Gh Actions Automation 支持哪些平台?
Gh Actions Automation 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Gh Actions Automation?
由 SKY-lv(@sky-lv)开发并维护,当前版本 v1.0.0。
推荐 Skills