← ClaudeAtlas

cilisted

GitHub Actions Workflow Generator
AreteDriver/ai-skills · ★ 3 · AI & Automation · score 71
Install: claude install-skill AreteDriver/ai-skills
# /ci - GitHub Actions Workflow Generator Generate and update GitHub Actions CI/CD workflows. ## Usage ``` /ci # Analyze project, suggest workflows /ci python # Python CI workflow /ci rust # Rust CI workflow /ci release # Release automation workflow /ci --fix # Fix existing workflow issues ``` ## What This Skill Does 1. **Detect Project Type** - Python, Rust, TypeScript, etc. 2. **Analyze Dependencies** - Package manager, test framework, linter 3. **Generate Workflow** - Create appropriate .github/workflows/*.yml 4. **Best Practices** - Caching, matrix builds, security ## Workflow Templates ### Python CI ```yaml name: CI on: push: branches: [main] pull_request: branches: [main] jobs: lint: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: python-version: "3.11" - run: pip install ruff - run: ruff check . - run: ruff format --check . test: runs-on: ubuntu-latest strategy: matrix: python-version: ["3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - run: pip install -e ".[dev]" - run: pytest --cov --cov-report=xml - uses: codecov/codecov-action@v4 if: matrix.python-version == '3.11' ``` ### Rust CI ```yam