qwen-web-arwaky: Skill for Claude Code

.agents/skills/setup-ci-quality-gates/SKILL.md

setup-ci-quality-gates is a skill for Claude Code, Codex from rakaarwaky/qwen-web-arwaky. It costs 79 tokens per session (2,752 once invoked), scanned A, original, MIT.

A recipe for setting up continuous integration, the automated checks that run when code changes, for a workspace containing Rust, Python, and TypeScript. It also describes rules that stop unverified changes from being merged and several automated code-review services.

In plain words
What is it for?
Use it to configure GitHub Actions, branch-protection rules, the repository’s own linter, and integrations with CodeRabbit, Codacy, cubic, and Repowise.
Why use it?
It creates consistent checks for formatting, linting, tests, security, and builds, while reducing the chance that broken or non-compliant code reaches the main branch.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

This is rakaarwaky/qwen-web-arwaky's own configuration. It tells Claude Code and Codex how to work on qwen-web-arwaky itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything qwen-web-arwaky configures →

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is output=$(./target/release/lint-arwaky-cli check . 2>&1) || { echo "$output"; exit 1; }.

Reuse

Borrowing it

Nothing to install: this file belongs to rakaarwaky/qwen-web-arwaky. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/rakaarwaky/qwen-web-arwaky/main/.agents/skills/setup-ci-quality-gates/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/rakaarwaky/qwen-web-arwaky

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 setup-ci-quality-gates

README.md
[![agentmods](https://agentmods.dev/badge/skills/rakaarwaky/qwen-web-arwaky/setup-ci-quality-gates/github.svg)](https://agentmods.dev/skills/rakaarwaky/qwen-web-arwaky/setup-ci-quality-gates)
Your own site
<a href="https://agentmods.dev/skills/rakaarwaky/qwen-web-arwaky/setup-ci-quality-gates"><img src="https://agentmods.dev/badge/skills/rakaarwaky/qwen-web-arwaky/setup-ci-quality-gates/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 setup-ci-quality-gates

Your own site · 80×15
<a href="https://agentmods.dev/skills/rakaarwaky/qwen-web-arwaky/setup-ci-quality-gates"><img src="https://agentmods.dev/badge/skills/rakaarwaky/qwen-web-arwaky/setup-ci-quality-gates.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 79 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,752 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00079 $0.02752
Opus 5 $0.00039 $0.01376
Sonnet 5 $0.00016 $0.00550
Haiku 4.5 $0.00008 $0.00275

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

Security

Grade A, and why

setup-ci-quality-gates scanned grade A with 1 finding 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 11d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

| `test` | `cargo nextest run --workspace --lib --tests -j 2` | needs: build; install nextest via curl |
.agents/skills/setup-ci-quality-gates/SKILL.md · 265 lines

How it starts

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

CI Quality Gates System

Replicate the CI setup used by this repo: quality gates enforced by GitHub Actions + a branch-protection ruleset, architecture enforcement via the project's own linter (self-lint), and four AI review layers (CodeRabbit, Codacy, cubic, Repowise). This is a copy-and-extend blueprint, not a one-off checklist — adapt names and paths to the target repo.

Language-agnostic. The pattern (quality gates → branch protection → AI review) applies to any language. The commands below are this repo's Rust flavor; substitute per language:

Concern Rust Python TypeScript/JS
Format cargo fmt --check ruff format --check prettier --check
Lint cargo clippy -D warnings ruff check + mypy eslint + tsc --noEmit
Tests cargo nextest run pytest vitest / jest
Security deps cargo audit bandit + pip-audit npm audit / eslint-plugin-security
Build cargo build --release python -m build tsc / vite build

The self-lint job is the one part that is inherently project-specific: it runs this linter (lint-arwaky-cli) on the repo's own multi-language workspace (crates/, modules/, packages/).

Architecture overview

PR opened / pushed
   │
   ├─ CI workflow (.github/workflows/ci.yml)
   │    ├─ Format  (cargo fmt --check)
   │    ├─ Clippy  (cargo clippy -D warnings)
   │    ├─ Build   (cargo build --release)
   │    ├─ Tests   (cargo nextest run)
   │    └─ Self-Lint (lint-arwaky-cli check .  == 0 violations)
   │
   ├─ Codacy Static Code Analysis (app.codacy.com)
   ├─ CodeRabbit (app.coderabbit.ai) — change review
   ├─ cubic AI reviewer (www.cubic.dev) — ultrareview
   └─ Repowise bot (.repowise/bot.yaml) — health gate advisory
   │
   └─ Ruleset "Protect main" (GitHub rulesets)
        ├─ required_status_checks: Format, Clippy, Build, Tests,
        │    Self-Lint, Codacy Static Code Analysis
        ├─ strict: true (must be up to date)
        ├─ non_fast_forward + deletion: blocked
        └─ auto-merge workflow (squash) merges when all pass

Read the full file on GitHub · 265 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. 11d ago First seen · 265 lines · 79 tokens per session scan A f119e7f20095

Subscribe to this mod's changes

setup-ci-quality-gates is a skill published in the GitHub repository rakaarwaky/qwen-web-arwaky (13 stars, last pushed yesterday), licensed MIT. It adds 79 tokens to every session and 2,752 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). 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

gemini-review

Google Gemini CLI code review with Gemini 2.5 Pro, 1M token context, CI/CD integration.

alinaqi/maggy · 26 tokens

squid-implement-night

Run the full agent-team pipeline end-to-end for one feature whose Tasks Plan is already approved by /squid-plan, handing the human a validated, ready-to-squash-merge PR. Trigger after /squid-plan.

iusztinpaul/squid · 52 tokens

pr-babysitter

Monitors or repairs an open GitHub PR: CI failures, conflicts, review threads, and merge readiness, reporting state changes. Use when asked to "watch this PR", "fix CI", "resolve conflicts", or "address review comments". For PR metadata use pr-creator; for npm release PRs use autoship.

mblode/agent-skills · 72 tokens

tech-debt-ci-review

Codex adapter for deep technical-debt and CI-stability audits. Use when asked to find test theater, flaky tests, missing or mis-scoped tests, brittle CI/toolchain behavior, structural debt blocking green PRs, or a remediation order for opencode-swarm.

ZaxbyHub/opencode-swarm · 61 tokens

aster-review-ci

Run aster code reviews non-interactively in CI, GitHub Actions, or from another agent. Covers aster review --pr, --json, --stream, --comment, diff-from-stdin, token handling, and filtering findings. Use when wiring aster into a pipeline, posting PR comments, or parsing review output programmatically.

Zfinix/aster · 75 tokens

review

Review before merge. Stage-1 spec-compliance gate, then risk-selected Stage-2 review axes from the canonical set. analyst always runs, callers can pin extra always-on axes, and explicit deep review runs the full 16-axis set. Run after /test. Do NOT invoke code-qualities-assessment, doc-accuracy, golden-principles, or…

rjmurillo/ai-agents · 97 tokens