acc-create-gitlab-ci
1
总安装量
1
周安装量
#76491
全站排名
安装命令
npx skills add https://github.com/dykyi-roman/awesome-claude-code --skill acc-create-gitlab-ci
Agent 安装分布
opencode
1
claude-code
1
Skill 文档
GitLab CI Configuration Generator
Generates optimized GitLab CI pipelines for PHP projects.
Generated Files
.gitlab-ci.yml # Main pipeline configuration
.gitlab/
âââ ci/
â âââ templates.yml # Reusable templates
â âââ lint.yml # Linting jobs
â âââ test.yml # Testing jobs
â âââ deploy.yml # Deployment jobs
References
references/templates.mdâ Complete YAML templates: main pipeline, base templates, lint, test, deploy, security scanning, scheduled pipelines
Generation Instructions
-
Analyze project:
- Check
composer.jsonfor tools - Check existing
.gitlab-ci.yml - Identify required services
- Check for Dockerfile
- Check
-
Generate configuration:
- Main
.gitlab-ci.ymlwith includes - Modular files in
.gitlab/ci/ - Templates for reuse
- Main
-
Customize based on:
- PHP version from
composer.json - Required services
- Deployment targets
- Branch strategy
- PHP version from
Usage
Provide:
- Project path or composer.json
- Deployment targets (staging, production)
- Required services (MySQL, Redis, etc.)
The generator will:
- Analyze project structure
- Generate optimized pipeline
- Include proper caching
- Set up parallel jobs
- Configure deployments