记忆

cicd-aiops

试用

Use this skill whenever the user needs to operate a self-managed GitLab or self-hosted Gitea CI/CD server — a one-shot overview, server version and token identity, projects with storage statistics, pipelines/runs with jobs and trace tails, the runner fleet, merge/pull requests, branches, protection rules and releases, artifact inventories, four flagship RCAs (pipeline failures, runner health & queue, artifact/storage bloat, stale work), and governed writes (retry/cancel a pipeline, pause/resume a runner, delete artifacts, update branch protection). Always use this skill for "GitLab", "Gitea", "pipeline failed", "CI is red", "job trace", "runner offline", "jobs stuck in queue", "artifact storage full", "stale merge requests", "stale branches", "protect the default branch", "retry the pipeline", "cancel the pipeline", "delete old artifacts" when the context is a self-managed GitLab or Gitea instance. Do NOT use when the target is something other than a GitLab/Gitea CI/CD server (a hyperv

它能做什么

Use this skill whenever the user needs to operate a self-managed GitLab or self-hosted Gitea CI/CD server — a one-shot overview, server version and token identity, projects with storage statistics, pipelines/runs with jobs and trace tails, the runner fleet, merge/pull requests, branches, protection rules and releases, artifact inventories, four flagship RCAs (pipeline failures, runner health & queue, artifact/storage bloat, stale work), and governed writes (retry/cancel a pipeline, pause/resume a runner, delete artifacts, update branch protection). Always use this skill for "GitLab", "Gitea", "pipeline failed", "CI is red", "job trace", "runner offline", "jobs stuck in queue", "artifact storage full", "stale merge requests", "stale branches", "protect the default branch", "retry the pipeline", "cancel the pipeline", "delete old artifacts" when the context is a self-managed GitLab or Gitea instance. Do NOT use when the target is something other than a GitLab/Gitea CI/CD server (a hypervisor, storage appliance, backup product, database, network gear, or OT/industrial equipment) — route those to the appropriate other AIops-tools skill. Do NOT use for Kubernetes deploy state — use k8s-aiops. GitLab.com / Gitea Cloud SaaS accounts are out of scope: this tool targets self-managed instances. Governed CI/CD operations with a built-in governance harness (audit, policy, token budget, undo, risk-tiers).

技能文档

CICD AIops

Disclaimer: Community-maintained open-source project, not affiliated with, endorsed by, or sponsored by GitLab Inc. or the Gitea project. GitLab and Gitea are trademarks of their respective owners. Source at github.com/AIops-tools/CICD-AIops under the MIT license.

Governed CI/CD operations — 28 MCP tools across self-managed GitLab (REST /api/v4/...) and self-hosted Gitea (API /api/v1/...), every one wrapped with the bundled @governed_tool harness: a local unified audit log under ~/.cicd-aiops/, token/runaway budget guard, undo-token recording, and descriptive risk tiers. A per-target platform field selects the API shape, so the same tools work on both servers and one config can span a mixed estate. The access token is stored encrypted (~/.cicd-aiops/secrets.enc, Fernet + scrypt) — never plaintext on disk.

Standalone: the governance harness is bundled in the package (cicd_aiops.governance) — no external skill-family dependency. Both platforms are free/self-hostable, so a home lab is the cheapest live check; verification status and the checklist are in docs/VERIFICATION.md.

What This Skill Does

GroupToolsCountR/W
Serverserver_version, current_user, cicd_overview3read
Projectslist_projects, project_detail2read
Pipelineslist_pipelines, pipeline_detail, pipeline_jobs, job_trace_tail4read
Runnerslist_runners, runner_detail2read
Repo surfacelist_merge_requests, list_branches, list_protected_branches, list_releases4read
Artifactslist_artifacts1read
Flagship analysespipeline_failure_rca, runner_health_rca, artifact_storage_bloat_analysis, stale_work_audit4read
Writesretry_pipeline, cancel_pipeline, pause_runner, resume_runner, update_branch_protection5write (med)
Writesdelete_artifacts1write (high)
Undoundo_list, undo_apply2read + replay

The four flagship analyses are transparent heuristics that report their numbers, never a black-box verdict: pipeline_failure_rca classifies each failed job from its failure_reason + trace-tail markers (test-failure / dependency-network / runner-timeout / oom / script-error) with matched evidence; runner_health_rca flags offline/stale/paused runners, long-queued jobs, and per-tag saturation; artifact_storage_bloat_analysis ranks projects by repo + artifact bytes and estimates reclaimable bytes; stale_work_audit flags idle MRs/branches and protection gaps.

Quick Install

uv tool install cicd-aiops
cicd-aiops init       # wizard: pick platform (gitlab/gitea) + base URL + encrypted token
cicd-aiops doctor     # version endpoint + token-scope probe per target

When to Use This Skill

  • Get a one-shot snapshot (overview / server_version / current_user)
  • Answer "why is CI red?" (rca pipelines / pipeline_failure_rca) → cause + action per failed pipeline, with the trace evidence that drove the call
  • Find wedged capacity (rca runners / runner_health_rca) → offline/stale runners, long-queued jobs, saturated tags
  • Reclaim disk (rca storage / artifact_storage_bloat_analysis) → ranked projects + reclaimable bytes, feeding delete_artifacts --dry-run
  • Repo hygiene (rca stale / stale_work_audit) → idle MRs/branches, unprotected default branch, force-push gaps
  • Safely act: retry_pipeline / cancel_pipeline, pause_runner / resume_runner (undo pair), update_branch_protection (undo replays prior settings), delete_artifacts (risk=high, dry-run + double confirm)

Do NOT use when the target is not a GitLab/Gitea CI/CD server — route hypervisor, storage, backup, database, network, or OT/industrial work to the appropriate other AIops-tools skill.

If the user wants…Use
Self-managed GitLab / Gitea CI/CD opscicd-aiops (this skill)
Kubernetes deploy state (what the cluster is actually running)k8s-aiops
A non-CI/CD platform (hypervisor, storage, backup, database, network, OT edge)the appropriate other AIops-tools skill
GitLab.com / Gitea Cloud SaaS accountsout of scope for this tool

Common Workflows

Each recipe starts from one of the four RCAs and ends in a governed write. Every CLI write accepts --dry-run and otherwise double-confirms. Note that runner administration and pipeline retry/cancel are GitLab-only — on a Gitea target those tools raise a teaching error listing what is available.

1. "The nightly pipeline has been red for three days"

  1. cicd-aiops pipelines list dev/api --status failed -n 20 → the recent failed pipelines, newest first.
  2. cicd-aiops rca pipelines dev/api → each failed job classified from its failure_reason plus trace-tail markers: test-failure, dependency-network, runner-timeout, OOM, or script-error, with the evidence and a suggested action.
  3. cicd-aiops pipelines jobs dev/api → which stage and job the classification came from.
  4. cicd-aiops pipelines trace dev/api -n 120 → the actual log tail, so you confirm the classification instead of trusting it.
  5. Fix the cause. If the RCA said the failure was transient (dependency-network or runner-timeout): cicd-aiops pipelines retry dev/api --dry-run, then re-run for real (double confirm).
  6. cicd-aiops rca pipelines dev/api again to confirm the class of failure is gone rather than merely quieter.

Failure branch: if the RCA classifies the failures as test-failure or script-error, do not retry — the code is broken and a retry burns runner minutes to reach the same red. Retry is only honest for transient classes. If the retry itself fails to submit on a Gitea target, that is the teaching error: retry/cancel have no Gitea API v1 equivalent, so re-run the job from the Gitea UI instead.

2. "Jobs are sitting in the queue and nothing is picking them up"

  1. cicd-aiops runners list --status offline and --status paused → the obvious suspects first.
  2. cicd-aiops rca runners → stale contact ages, long-queued jobs, and which tag is saturated (queued jobs versus online runners carrying that tag).
  3. cicd-aiops runners show → the specific runner's tags, last contact and status.
  4. If a needed runner was paused: cicd-aiops runners resume --dry-run, then for real (reversible — an inverse pause_runner is recorded).
  5. If a wedged runner is grabbing jobs and failing them: cicd-aiops runners pause to take it out of rotation (reversible — inverse resume_runner recorded).
  6. cicd-aiops rca runners again to confirm the queue is draining.

Failure branch: if the RCA shows a saturated tag rather than a down runner, resuming runners will not help — no online runner carries the tag those jobs require, so you need to add or retag capacity. And if you paused a runner and the queue got worse, cicd-aiops undo apply resumes exactly the runner you paused. Runner administration is GitLab-only; a Gitea target raises a teaching error here.

3. "The CI server is out of disk"

  1. cicd-aiops rca storage --old-days 30 → projects ranked by repo + artifact bytes with a reclaimable estimate at that age threshold.
  2. cicd-aiops artifacts list dev/api → the actual artifact files, their sizes and their expiry, so you see what "reclaimable" really refers to.
  3. cicd-aiops projects --limit 50 → cross-check that the top consumer is the project you expect.
  4. cicd-aiops artifacts delete dev/api --older-than-days 30 --dry-run → shows the scope, deletes nothing.
  5. Re-run without --dry-run: double confirm, high risk. Optionally set CICD_AUDIT_APPROVED_BY + CICD_AUDIT_RATIONALE to annotate who/why on the audit row. This is irreversible — priorState records the destroyed count and bytes for the audit trail, but there is no undo.
  6. cicd-aiops rca storage again to confirm the reclaimed bytes landed.

Failure branch: never run artifacts delete with --older-than-days 0 as a first move — 0 means ALL artifacts, including the ones a release or a running deploy depends on. If the dry-run scope reads "ALL" and you did not intend that, stop and set an age. Since there is no undo for this operation, the dry-run is the only safety net you get; if the bloat is mostly repo bytes rather than artifact bytes, deleting artifacts will not help at all.

4. "Tighten repo hygiene before the release freeze"

  1. cicd-aiops rca stale dev/api --mr-days 14 --branch-days 60 → stale open merge requests, idle branches, and protection gaps such as an unprotected default branch or force-push left allowed.
  2. Confirm the current state via MCP list_protected_branches and list_branches for the project.
  3. MCP list_merge_requests → the stale MRs the audit named, so you can close or revive them with their owners rather than in bulk.
  4. Close the protection gap with MCP update_branch_protection (e.g. allow_force_push=False on the default branch) — it fetches and captures the prior settings and records an undo that replays them exactly.
  5. cicd-aiops undo list → confirm the protection change is reversible.
  6. cicd-aiops rca stale dev/api again to confirm the gap closed.

Failure branch: if tightening protection blocks a legitimate workflow — a release automation that force-pushes tags, say — cicd-aiops undo apply restores the exact prior protection settings rather than a guessed default. Fix the automation before re-applying, and do not disable protection fleet-wide to unblock one job.

Governance & Safety

The skill delivers reads and writes and records them; it does not decide whether a write is permitted. That is your agent's judgement, or the permission of the token you connect it with (a GitLab/Gitea access token without write scope — writes then fail at the server). There is no read-only switch, policy file, or approval gate.

  • Audit is the guarantee, and it is not bypassable. Every operation — MCP and CLI alike — is logged to ~/.cicd-aiops/audit.db (relocatable via CICD_AIOPS_HOME): params, result, status, duration, and the risk tier. The CLI writes the same row the MCP path does.
  • CICD_AUDIT_APPROVED_BY / CICD_AUDIT_RATIONALE are optional annotations recorded on the audit row (who/why); they are never required and never block.
  • Runaway guard — a safety backstop, not authorization: the same call looped in a tight window trips a circuit breaker. Disable with CICD_RUNAWAY_MAX=0.
  • Destructive writes support --dry-run / dry_run=True and double confirmation at the CLI. delete_artifacts is irreversible (priorState records the destroyed count/bytes; audit only).
  • Reversible writes fetch the real before-state and record an inverse descriptor (pause_runner↔resume_runner, update_branch_protection→prior settings); irreversible ops (retry_pipeline, cancel_pipeline, delete_artifacts) record only the before-state.

References

  • references/capabilities.md — full tool + platform + API-path reference
  • references/cli-reference.md — CLI command reference
  • references/setup-guide.md — onboarding, credentials, and connectivity
  • references/agent-guardrails.md — which guardrails the harness enforces, the GitLab-only vs Gitea platform asymmetry, and a ready-made system prompt for smaller / local models

相关技能

Use this skill whenever the user needs to operate a self-hosted observability stack on Prometheus (HTTP API + PromQL), Alertmanager, Grafana, or Grafana Loki (logs) — a one-shot overview, PromQL instant/range queries, label + series metadata, scrape-target health (up/down + why) and dropped targets, recording/alerting rule health, firing/pending alerts, Alertmanager alerts + silences, Grafana dashboards/datasources/folders, bounded Loki LogQL log reads (labels, query, error-tail), five flagship analyses (firing-alert RCA, target-scrape-health, alert-noise/flap, log-error-burst RCA, log-volume/cardinality) plus an alert->log cross-signal, and guarded writes (create/expire silence, create annotation, update/delete dashboard, reload Prometheus config). Always use this skill for "Prometheus", "PromQL", "Alertmanager", "Grafana", "Loki", "LogQL", "logs", "which targets are down", "scrape failing", "why is this alert firing", "root cause this alert", "firing alerts", "silence this alert", "n

1 次安装

GitLab (gitlab.com). Use this skill for ANY GitLab request — reading, creating, updating, and deleting data. Whenever a task involves GitLab, use this skill instead of calling the API directly.

7 次安装

Git Security Scanner & Repo Health Auditor — entropy-based secret detection, composite health scoring, commit quality analysis, stale branch cleanup, and dep...

Use this skill whenever the user needs to operate a Keycloak or authentik identity provider — a one-shot overview, realm settings, users with sessions/credentials/groups/lockout status, authentication and admin events, OAuth/OIDC clients, four flagship RCAs (login-failure/lockout-storm, stale access, client misconfiguration, MFA coverage), and governed writes (disable/enable a user, revoke sessions, require a password reset, replace redirect URIs, rotate a client secret). Always use this skill for "Keycloak", "authentik", "realm", "SSO users", "login failures", "brute force logins", "locked out users", "stale accounts", "service account misuse", "redirect URI", "PKCE", "implicit flow", "client secret rotation", "MFA coverage", "who has no 2FA" when the context is a Keycloak/authentik IdP. Do NOT use when the target is something other than a Keycloak/authentik identity provider (a hypervisor, storage appliance, backup product, container-orchestration cluster, firewall, database, or OT/i

Use this skill whenever the user needs to operate a GPU inference cluster — vLLM (OpenAI API + Prometheus /metrics) and Ray Serve / Ray Jobs (Ray dashboard), plus the single-process serving engines SGLang and TGI (Text Generation Inference): a one-shot cluster overview (deployments + total replicas + queue backpressure), request metrics (TTFT / TPOT / e2e latency + token totals), queue depth, KV-cache stats (utilisation, prefix-cache hit rate, preemptions), the flagship latency root-cause analysis (diagnose_latency_spike / diagnose_engine_latency) and low-utilisation RCA, engine-agnostic health + running-model inventory across vLLM/SGLang/TGI, Ray Serve autoscaling and scaling (scale up/down, scale-to-zero, drain a replica), LoRA load/unload, base-model hot-swap, deploy/undeploy/redeploy, prefix-aware routing, GPU utilisation, Ray jobs, and cost per million tokens. Always use this skill for "why is inference slow", "TTFT spike", "latency spike", "GPU underutilised", "scale down the dep