← Back to Skills Marketplace
sky-lv

Skylv Gh Actions Automation

by SKY-lv · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
55
Downloads
0
Stars
1
Active Installs
1
Versions
Install in OpenClaw
/install skylv-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 safe to use as a workflow-template helper. Before installing or using the generated output, review the YAML, confirm the CI triggers are desired, and consider your organization’s policy for pinning GitHub Actions versions.
Capability Analysis
Type: OpenClaw Skill Name: skylv-gh-actions-automation Version: 1.0.0 The skill is a straightforward helper for generating standard GitHub Actions CI/CD workflows for Node.js and Python projects. The templates provided in SKILL.md use official GitHub actions and follow industry best practices, with no evidence of malicious intent, data exfiltration, or suspicious execution logic.
Capability Assessment
Purpose & Capability
The stated purpose—generating GitHub Actions workflows for Node.js, Python, and Docker—is consistent with the SKILL.md content.
Instruction Scope
The templates create workflows that run on push and pull request events, which is expected for CI but should be reviewed before committing.
Install Mechanism
There is no install spec, no code files, no required binaries, and no declared environment variables or credentials.
Credentials
The generated workflows run common CI commands such as npm ci, npm test, pip install, and pytest in GitHub Actions; this is proportionate to the purpose.
Persistence & Privilege
The artifacts do not request credentials, privileged local access, persistent background execution, or account-level permissions.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install skylv-gh-actions-automation
  3. After installation, invoke the skill by name or use /skylv-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 skylv-github-actions-helper. - Generates GitHub Actions workflows for Node.js, Python, and Docker projects. - Offers prebuilt CI/CD pipeline templates for each supported project type. - Automatically detects project language from common files (e.g., package.json, pyproject.toml, Dockerfile). - Supports typical triggers such as push and pull request events. - Includes best practice tips for workflow configuration and secrets management.
Metadata
Slug skylv-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 Skylv 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 55 downloads so far.

How do I install Skylv Gh Actions Automation?

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

Is Skylv Gh Actions Automation free?

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

Which platforms does Skylv Gh Actions Automation support?

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

Who created Skylv Gh Actions Automation?

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

💬 Comments