Skip to main content
ClaudeWave
Skill85 estrellas del repoactualizado 3mo ago

ci-pipeline-synthesizer

Generate GitHub Actions CI/CD pipeline configurations for automated building and testing of library and package projects. Use when creating or updating CI workflows for npm packages, Python packages, Go modules, Rust crates, or other library projects that need automated build and test pipelines. Includes templates for common package ecosystems with best practices for dependency caching, matrix testing, and artifact publishing.

Instalar en Claude Code
Copiar
git clone --depth 1 https://github.com/ArabelaTso/Skills-4-SE /tmp/ci-pipeline-synthesizer && cp -r /tmp/ci-pipeline-synthesizer/skills/ci-pipeline-synthesizer ~/.claude/skills/ci-pipeline-synthesizer
Después abre una sesión nueva de Claude Code; el skill carga automáticamente.

SKILL.md

# CI Pipeline Synthesizer

## Overview

Generate production-ready GitHub Actions workflow files for library and package projects with automated build and test stages, dependency caching, and multi-version testing matrices.

## Workflow

### 1. Identify Project Type

Determine the package ecosystem by examining project files:
- **Node.js/npm**: `package.json` present
- **Python**: `setup.py`, `pyproject.toml`, or `requirements.txt` present
- **Go**: `go.mod` present
- **Rust**: `Cargo.toml` present

### 2. Select Template

Use the appropriate template from `assets/` based on project type:
- `github-actions-nodejs.yml` - Node.js/npm packages
- `github-actions-python.yml` - Python packages
- `github-actions-go.yml` - Go modules
- `github-actions-rust.yml` - Rust crates

### 3. Customize Configuration

Adapt the template to project-specific needs:

**Test commands**: Update test scripts to match project conventions
- Node.js: `npm test`, `npm run test:coverage`
- Python: `pytest`, `python -m unittest`
- Go: `go test ./...`
- Rust: `cargo test`

**Build commands**: Adjust build steps if needed
- Node.js: `npm run build` (if build step exists)
- Python: `python -m build`
- Go: `go build`
- Rust: `cargo build --release`

**Version matrix**: Modify tested versions based on support policy
- Node.js: LTS versions (16.x, 18.x, 20.x)
- Python: Active versions (3.9, 3.10, 3.11, 3.12)
- Go: Recent versions (1.21, 1.22)
- Rust: stable, beta (optional)

**Trigger conditions**: Adjust when pipeline runs
- Default: Push to main/master, all pull requests
- Custom: Specific branches, paths, or schedules

### 4. Place Workflow File

Create the workflow file at `.github/workflows/ci.yml` in the project root. If `.github/workflows/` doesn't exist, create the directory structure first.

### 5. Verify Configuration

Check that the generated workflow:
- Uses appropriate actions versions (e.g., `actions/checkout@v4`, `actions/setup-node@v4`)
- Includes dependency caching for faster builds
- Runs on appropriate triggers (push, pull_request)
- Tests against relevant version matrices
- Has clear job and step names

## Template Features

All templates include:
- **Dependency caching**: Speeds up builds by caching package managers
- **Matrix testing**: Tests across multiple language/runtime versions
- **Parallel execution**: Runs tests for different versions concurrently
- **Clear naming**: Descriptive job and step names for easy debugging
- **Best practices**: Uses recommended actions and configurations

## Customization Examples

**Add code coverage reporting**:
```yaml
- name: Upload coverage to Codecov
  uses: codecov/codecov-action@v3
  with:
    file: ./coverage.xml
```

**Add linting step**:
```yaml
- name: Run linter
  run: npm run lint  # or: pylint, golangci-lint, cargo clippy
```

**Restrict to specific branches**:
```yaml
on:
  push:
    branches: [main, develop]
  pull_request:
    branches: [main]
```

**Add scheduled runs**:
```yaml
on:
  schedule:
    - cron: '0 0 * * 0'  # Weekly on Sunday
```

## Tips

- Start with the template and customize incrementally
- Test the workflow by creating a pull request or pushing to a test branch
- Use `actions/cache` for dependencies to reduce build times
- Keep matrix versions current with language support policies
- Add status badges to README.md: `![CI](https://github.com/user/repo/workflows/CI/badge.svg)`
abstract-domain-explorerSkill

Applies abstract interpretation using different abstract domains (intervals, octagons, polyhedra, sign, congruence) to statically analyze program variables and infer invariants, value ranges, and relationships. Use when analyzing program properties, inferring loop invariants, detecting potential errors, or understanding variable relationships through static analysis.

abstract-invariant-generatorSkill

Uses abstract interpretation to automatically infer loop invariants, function preconditions, and postconditions for formal verification. Generates invariants that capture program behavior and support correctness proofs in Dafny, Isabelle, Coq, and other verification systems. Use when adding formal specifications to code, generating verification conditions, inferring contracts for functions, or discovering loop invariants for proofs.

abstract-state-analyzerSkill

Performs abstract interpretation over source code to infer possible program states, variable ranges, and data properties without executing the program. Reports potential runtime errors including out-of-bounds accesses, null dereferences, type inconsistencies, division by zero, and integer overflows. Use when analyzing code for potential runtime errors, performing static analysis, checking safety properties, or verifying program behavior without execution.

abstract-trace-summarizerSkill

Performs abstract interpretation to produce summarized execution traces and high-level program behavior representations. Highlights key control flow paths, variable relationships, loop invariants, function summaries, and potential runtime states using abstract domains (intervals, signs, nullness, etc.). Use when analyzing program behavior, understanding execution paths, computing loop invariants, tracking variable ranges, detecting potential runtime errors, or generating program summaries without concrete execution.

acsl-annotation-assistantSkill

Create ACSL (ANSI/ISO C Specification Language) formal annotations for C/C++ programs. Use this skill when working with formal verification, adding function contracts (requires/ensures), loop invariants, assertions, memory safety annotations, or any ACSL specifications. Supports Frama-C verification and generates comprehensive formal specifications for C/C++ code.

agent-browserSkill

CLI-based browser automation with persistent page state using ref-based element interaction. Use when users ask to navigate websites, interact with web pages, fill forms, take screenshots, test web applications, or extract information from web pages.

ambiguity-detectorSkill

Detects and analyzes ambiguous language in software requirements and user stories. Use when reviewing requirements documents, user stories, specifications, or any software requirement text to identify vague quantifiers, unclear scope, undefined terms, missing edge cases, subjective language, and incomplete specifications. Provides detailed analysis with clarifying questions and suggested improvements.

api-design-assistantSkill

Design and review APIs with suggestions for endpoints, parameters, return types, and best practices. Use when designing new APIs from requirements, reviewing existing API designs, generating API documentation, or getting implementation guidance. Supports REST APIs with focus on endpoint structure, request/response schemas, authentication, pagination, filtering, versioning, and OpenAPI specifications. Triggers when users ask to design, review, document, or improve APIs.