← Back to Skills Marketplace
sky-lv

Gh Actions Automation

by SKY-lv · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
61
Downloads
0
Stars
1
Active Installs
1
Versions
Install in OpenClaw
/install gh-actions-automation
Description
GitHub Actions workflow generator. Creates CI/CD pipelines for Node.js, Python, Docker. Triggers: github actions, ci cd, workflow, automate build, github ci.
README (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
Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install gh-actions-automation
  3. After installation, invoke the skill by name or use /gh-actions-automation
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
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
Metadata
Slug gh-actions-automation
Version 1.0.0
License MIT-0
All-time Installs 1
Active Installs 1
Total Versions 1
Frequently Asked Questions

What is 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. It is an AI Agent Skill for Claude Code / OpenClaw, with 61 downloads so far.

How do I install Gh Actions Automation?

Run "/install gh-actions-automation" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Gh Actions Automation free?

Yes, Gh Actions Automation is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Gh Actions Automation support?

Gh Actions Automation is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Gh Actions Automation?

It is built and maintained by SKY-lv (@sky-lv); the current version is v1.0.0.

💬 Comments