gitlab_pages_ci

gitlab_pages_ci is a skill for Claude Code, Codex from frontier-ai-next/mgarlbot. It costs 30 tokens per session (711 once invoked), scanned A, original, MIT.

Templates and instructions for GitLab CI pipelines that test a project and publish a website through GitLab Pages. GitLab CI is GitLab’s system for running automated jobs, while Pages hosts a site built by those jobs.

In plain words
What is it for?
Use it to add or repair GitLab pipeline files for Python, Node, Go, MkDocs, VitePress, Sphinx, or other static-site builds. Configure a test job and a Pages deployment job that publishes the generated files.
Why use it?
They provide the required pipeline structure and artifact setup so tests run before deployment and the built site is placed in GitLab’s required public/ folder. This reduces configuration mistakes in .gitlab-ci.yml.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to add or repair GitLab pipeline files for Python, Node, Go, MkDocs, VitePress, Sphinx, or other static-site builds. Configure a test job and a Pages deployment job that publishes the generated files.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/frontier-ai-next/mgarlbot/gitlab_pages_ci
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add frontier-ai-next/mgarlbot --skill gitlab_pages_ci
Clone the repo
git clone --depth 1 https://github.com/frontier-ai-next/mgarlbot

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for gitlab_pages_ci

README.md
[![agentmods](https://agentmods.dev/badge/skills/frontier-ai-next/mgarlbot/gitlab_pages_ci/github.svg)](https://agentmods.dev/skills/frontier-ai-next/mgarlbot/gitlab_pages_ci)
Your own site
<a href="https://agentmods.dev/skills/frontier-ai-next/mgarlbot/gitlab_pages_ci"><img src="https://agentmods.dev/badge/skills/frontier-ai-next/mgarlbot/gitlab_pages_ci/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for gitlab_pages_ci

Your own site · 80×15
<a href="https://agentmods.dev/skills/frontier-ai-next/mgarlbot/gitlab_pages_ci"><img src="https://agentmods.dev/badge/skills/frontier-ai-next/mgarlbot/gitlab_pages_ci.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 30 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 711 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00030 $0.00711
Opus 5 $0.00015 $0.00356
Sonnet 5 $0.00006 $0.00142
Haiku 4.5 $0.00003 $0.00071

Measured 10d ago against content hash 7521b48463e7, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

gitlab_pages_ci scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/gitlab_pages_ci/SKILL.md · 77 lines

How it starts

The opening of the file, as written. The whole thing — 77 lines — stays where its author put it; the contents beside it link to each section on GitHub.

GitLab CI + Pages

The GitLab Runner executes the pipeline, not the bot. Your job is to add or fix .gitlab-ci.yml in the repo and list what to enable in GitLab (Settings → Pages, visibility).

General layout

  • stages: [test, deploy] (or [test, pages]).
  • test job: same stack as local (Python/Node/Go). Default image from process env GITLAB_CI_DEFAULT_IMAGE (e.g. python:3.12-bookworm) — use it in YAML if the project has no image:.
  • pages job: GitLab requires a public/ artifact. Build the static site (MkDocs, VitePress, sphinx -b html, SPA npm run build then copy into public/) and declare:
pages:
  stage: deploy
  needs: ["test"]
  script:
    - mkdir -p public
    - cp -r dist/* public/   # example; adapt to the project
  artifacts:
    paths:
      - public

Python (pytest) + minimal Pages stub

Template “tests + placeholder site”:

stages: [test, deploy]

variables:
  PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"

test:
  stage: test
  image: python:3.12-bookworm
  cache:
    paths: [.cache/pip]
  before_script:
    - python -m pip install -U pip
    - test -f requirements.txt && pip install -r requirements.txt || true
    - test -f pyproject.toml && pip install -e ".[dev]" || true
  script:
    - pytest -q || true

pages:
  stage: deploy
  needs: ["test"]
  image: alpine:latest
  script:
    - mkdir -p public
    - echo '<!doctype html><meta charset=utf-8><title>CI</title><p>GitLab Pages OK</p>' > public/index.html
  artifacts:
    paths: [public]

Tune pytest for the real layout (tests/, uv run, etc.).

Node / static frontend

  • image: node:22-bookworm (or project LTS).
  • cache: { paths: [node_modules/] }
  • script: npm ci && npm run build → output in dist/ or build/ → copy into public/.

Important

  • No secrets in YAML; use GitLab CI/CD Variables (masked).
  • If .gitlab-ci.yml already exists — extend stages/jobs; do not break production-branch deploy without explicit user approval.
  • After merge: Pages URL like https://<namespace>.gitlab.io/<project>/ (depends on settings); tell the user to check Deploy → Pages in the UI.

Read the full file on GitHub · 77 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 77 lines · 30 tokens per session scan A 7521b48463e7

Subscribe to this mod's changes

gitlab_pages_ci is a skill published in the GitHub repository frontier-ai-next/mgarlbot (17 stars, last pushed 1mo ago), licensed MIT. It adds 30 tokens to every session and 711 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

test-environment-management

Test environment provisioning, infrastructure as code for testing, Docker/Kubernetes for test environments, service virtualization, and cost optimization. Use when managing test infrastructure, ensuring environment parity, or optimizing testing costs.

summarybotng/summarybot-ng · 44 tokens

devops-infra

DevOps & Infrastructure (Docker, AWS, Messaging): Helps with Docker configuration, AWS architecture, CI/CD pipelines, Kubernetes, monitoring, and messaging infrastructure (Kafka, SQS, SNS). Use whenever the user wants to review or create Dockerfiles, docker-compose configs, AWS architecture, CI/CD pipelines…

camilooscargbaptista/cto-toolkit · 123 tokens

DevOps & Deployment

CI/CD pipelines, containerization, Kubernetes, and infrastructure as code patterns.

ArieGoldkin/ai-agent-hub · 19 tokens

architecture-diagram

Dark-themed SVG architecture/cloud/infra diagrams as HTML.

mateaix/mateclaw · 15 tokens

scanning-docker-images-with-trivy

Trivy is a comprehensive open-source vulnerability scanner by Aqua Security that detects vulnerabilities in OS packages, language-specific dependencies, misconfigurations, secrets, and license violati.

xalgorix/xalgorix · 42 tokens

start-temps-cluster

Start (or restart) a local multi-node Temps cluster using Docker-in-Docker — one control plane + 3 worker nodes, each a privileged DinD container running its own dockerd + temps agent, wired with the real multi-host overlay (VXLAN, computecidr allocation) via tools/dev-cluster/ in whichever checkout/worktree you run…

gotempsh/temps · 204 tokens