skills$openclaw/ci-gen
lxgicstudios9.1k

by lxgicstudios

ci-gen – OpenClaw Skill

ci-gen is an OpenClaw Skills integration for coding workflows. Generate GitHub Actions workflows from your project. Use when setting up CI/CD from scratch.

9.1k stars3.7k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameci-gen
descriptionGenerate GitHub Actions workflows from your project. Use when setting up CI/CD from scratch. OpenClaw Skills integration.
ownerlxgicstudios
repositorylxgicstudios/ci-config-gen
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @lxgicstudios/ci-config-gen
last updatedFeb 7, 2026

Maintainer

lxgicstudios

lxgicstudios

Maintains ci-gen in the OpenClaw Skills directory.

View GitHub profile
File Explorer
9 files
.
src
cli.ts
1.9 KB
index.ts
2.4 KB
_meta.json
290 B
package-lock.json
46.2 KB
package.json
839 B
README.md
1.4 KB
SKILL.md
2.2 KB
tsconfig.json
251 B
SKILL.md

name: ci-gen description: Generate GitHub Actions workflows from your project. Use when setting up CI/CD from scratch.

CI Generator

Setting up CI/CD from scratch means searching through docs, copying examples, and tweaking YAML for an hour. This tool looks at your project and generates the right workflow automatically.

One command. Zero config. Just works.

Quick Start

npx ai-ci

What It Does

  • Scans your project to detect language and framework
  • Generates complete GitHub Actions workflow
  • Configures linting, testing, building, and deployment
  • Supports multiple deploy targets

Usage Examples

# Generate workflow for current project
npx ai-ci

# Specify deploy target
npx ai-ci --deploy vercel

# Preview without writing
npx ai-ci --preview

# Different targets
npx ai-ci --deploy netlify
npx ai-ci --deploy aws
npx ai-ci --deploy docker
npx ai-ci --deploy fly

Best Practices

  • Start simple - add complexity as needed
  • Cache dependencies - speeds up your builds significantly
  • Fail fast - run quick checks (lint) before slow ones (e2e)
  • Review the output - understand what it's doing before committing

When to Use This

  • Starting a new project and need CI immediately
  • Migrating from another CI system to GitHub Actions
  • Want a solid starting point to customize
  • Not sure what a modern CI workflow should include

Part of the LXGIC Dev Toolkit

This is one of 110+ free developer tools built by LXGIC Studios. No paywalls, no sign-ups, no API keys on free tiers. Just tools that work.

Find more:

Requirements

No install needed. Just run with npx. Node.js 18+ recommended. Needs OPENAI_API_KEY environment variable.

npx ai-ci --help

How It Works

Analyzes your package.json, config files, and project structure to determine the language, framework, test setup, and build steps. Then generates a GitHub Actions workflow YAML with appropriate jobs, caching, and deployment configuration.

License

MIT. Free forever. Use it however you want.

README.md

ai-ci

npm version npm downloads License: MIT

AI-powered CI/CD workflow generator. Creates GitHub Actions pipelines from project analysis.

Setting up CI/CD from scratch is a pain. This tool looks at your project and generates the right GitHub Actions workflow for it.

Install

npm install -g ai-ci

Usage

# Generate a GitHub Actions workflow
npx ai-ci

# Specify provider and deploy target
npx ai-ci --provider github --deploy vercel

# Preview without writing
npx ai-ci --preview

# Different deploy targets
npx ai-ci --deploy netlify
npx ai-ci --deploy aws
npx ai-ci --deploy docker

What it does

Scans your project to figure out the language, framework, test setup, and build steps. Then generates a proper CI/CD workflow with linting, testing, building, and deployment configured.

Supported

  • Providers: GitHub Actions (more coming)
  • Deploy targets: Vercel, Netlify, AWS, Docker, Fly.io, Railway
  • Languages: Node.js, Python, Go, Rust, Ruby, Java

Requirements

Set your OPENAI_API_KEY environment variable.

export OPENAI_API_KEY=sk-...

License

MIT

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

No install needed. Just run with npx. Node.js 18+ recommended. Needs OPENAI_API_KEY environment variable. ```bash npx ai-ci --help ```

FAQ

How do I install ci-gen?

Run openclaw add @lxgicstudios/ci-config-gen in your terminal. This installs ci-gen into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/lxgicstudios/ci-config-gen. Review commits and README documentation before installing.