소스 정보
- 저장소
- ffsshhttiikk/opencode-agents-skills
- 최근 소스 활동
- 2026년 2월 28일 22:49
- 감지된 SKILL.md 언어
- 영어
- 스타
- 2
- 포크
- 2
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/ffsshhttiikk/opencode-agents-skills --skill gitlab-ci명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | gitlab-ci |
| description | GitLab's built-in CI/CD platform using YAML configuration for pipeline automation |
| category | devops |
I am GitLab's integrated CI/CD platform that automates building, testing, and deploying your code. I use YAML configuration files to define pipelines, with tight integration into GitLab's repository, issue tracking, and deployment features.
Basic .gitlab-ci.yml:
stages:
- build
- test
- deploy
variables:
DOCKER_DRIVER: overlay2
DOCKER_TLS_CERTDIR: ""
MAVEN_OPTS: "-Dmaven.repo.local=$CI_PROJECT_DIR/.m2/repository"
build:
stage: build
image: maven:3.8.6-openjdk-17
script:
- mvn clean compile -DskipTests
cache:
key: ${CI_COMMIT_REF_SLUG}
paths:
- .m2/repository
artifacts:
paths:
- target/
expire_in: 1 hour
test:
stage: test
image: maven:3.8.6-openjdk-17
script:
- mvn test
coverage: '/Total.*?([0-9]{1,3})%/'
artifacts:
reports:
junit: target/surefire-reports/*.xml
coverage_report:
coverage_format:
Advanced Matrix Builds:
stages:
- build
- test
- deploy
variables:
DOCKER_REGISTRY: registry.example.com
build:
stage: build
image: docker:20.10
services:
- docker:20.10-dind
script:
- docker build -t $CI_REGISTRY_IMAGE:$CI_COMMIT_SHA .
- docker push $CI_REGISTRY_IMAGE:$CI_COMMIT_SHA
only:
changes:
- Dockerfile
- src/**/*
.test_template: &test_template
stage: test
script:
- npm ci
- npm test
coverage: '/All files[^|]*\|[^|]*\s+([\d\.]+)/'
artifacts:
reports:
junit: junit.xml
test:linux:
<<: *test_template
image:
Auto DevOps with Customization:
include:
- template: Auto-DevOps.gitlab-ci.yml
variables:
AUTO_DEVOPS_BUILD_IMAGE: Dockerfile
AUTO_DEVOPS_BUILD_STRATEGY: docker
DOCKER_DRIVER: overlay2
KUBERNETES_VERSION: "1.25"
HELM_VERSION: "3.10"
stages:
- build
- test
- deploy
test:unit:
extends: .test:unit
allow_failure: false
test:integration:
extends: .test:integration
services:
- postgres:14
- redis:7
variables:
POSTGRES_DB: test
DATABASE_URL: "postgresql://test:test@postgres:5432/test"
REDIS_URL: "redis://redis:6379"
after_script:
- echo "Running additional cleanup"
review:
environment:
name: review/$CI_COMMIT_REF_NAME
url: https://$CI_ENVIRONMENT_SLUG.example.com
on_stop:
Pipeline with Dependencies:
stages:
- build
- test
- package
- deploy
build:library:
stage: build
script:
- make build-library
artifacts:
paths:
- dist/
- package.json
rules:
- if: $CI_COMMIT_TAG
- if: $CI_MERGE_REQUEST_IID
changes:
- library/**/*
build:service:
stage: build
script:
- make build-service
dependencies:
- build:library
artifacts:
paths:
- bin/
rules:
- if: $CI_COMMIT_TAG
- if: $CI_MERGE_REQUEST_IID
changes:
- service/**/*
package:docker: