with one click
gitlab-ci-stage-builder
Use when adding CI pipeline stages to .gitlab-ci.yml
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Use when adding CI pipeline stages to .gitlab-ci.yml
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Record browser-based feature demos as GIFs via Playwright and optionally document them in docs/features/index.md. Trigger with "Demo <feature>" or "Demo and Document <feature>".
Use when creating service modules in apps/api/skillhub/services/
Use when writing API tests in apps/api/tests/
Use when implementing division-based access control on any endpoint
Use when adding services to docker-compose.yml or creating Dockerfiles
Use when implementing error handling across the API, frontend, or MCP server
| name | gitlab-ci-stage-builder |
| description | Use when adding CI pipeline stages to .gitlab-ci.yml |
lint → test → typecheck → build → security
my_job:
stage: test
extends: .python_base
services:
- postgres:16-alpine
- redis:7-alpine
variables:
DATABASE_URL: "postgresql://skillhub:skillhub@postgres:5432/skillhub"
PYTHONPATH: "apps/api:libs/db:libs/python-common"
script:
- python -m pytest apps/my-service/tests/ -v --cov-fail-under=80
my_node_job:
stage: lint
extends: .node_base
script:
- npx eslint apps/web/src/
.python_base — Python 3.11-slim, pip install all packages.node_base — Node 22-alpine, npm ci.gitlab-ci.ymlmise.toml (quality-gate task)