Generates GitHub Actions CI/CD workflows from project analysis
npm install ai-ciSetting up CI/CD from scratch is a pain. This tool looks at your project and generates the right GitHub Actions workflow for it.
``bash`
npm install -g ai-ci
`bashGenerate a GitHub Actions workflow
npx ai-ci
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.`bash
export OPENAI_API_KEY=sk-...
``MIT