gitlab-mcp: Agent for Claude Code

.github/agents/swift-reviewer.agent.md

swift-reviewer is an agent for Claude Code from kirti12025/gitlab-mcp. It costs 44 tokens per session (1,902 once invoked), scanned A, a copy of swift-reviewer, MIT.

A Pinia state-management skill for Vue applications. Pinia stores shared data such as user settings, system metrics, interface configuration, command history, and live updates.

In plain words
What is it for?
Use it to design and test Pinia stores, validate store actions, manage real-time state, handle server-side rendering safely, and avoid storing sensitive data in browser storage.
Why use it?
It helps keep shared application data organized while reducing unnecessary state, unsafe persistence, and data leaks between server requests.

Agent for Claude Code

Written for Claude Code: user-invocable in frontmatter. Also seen: model in frontmatter.

This is kirti12025/gitlab-mcp's own configuration. It tells Claude Code how to work on gitlab-mcp 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 gitlab-mcp configures →

Reuse

Borrowing it

Nothing to install: this file belongs to kirti12025/gitlab-mcp. 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/kirti12025/gitlab-mcp/custom-tool-pipeline-summary/.github/agents/swift-reviewer.agent.md
Clone the repo
git clone --depth 1 https://github.com/kirti12025/gitlab-mcp

Made for: Claude Code.

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 swift-reviewer

README.md
[![agentmods](https://agentmods.dev/badge/agents/kirti12025/gitlab-mcp/swift-reviewer/github.svg)](https://agentmods.dev/agents/kirti12025/gitlab-mcp/swift-reviewer)
Your own site
<a href="https://agentmods.dev/agents/kirti12025/gitlab-mcp/swift-reviewer"><img src="https://agentmods.dev/badge/agents/kirti12025/gitlab-mcp/swift-reviewer/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 swift-reviewer

Your own site · 80×15
<a href="https://agentmods.dev/agents/kirti12025/gitlab-mcp/swift-reviewer"><img src="https://agentmods.dev/badge/agents/kirti12025/gitlab-mcp/swift-reviewer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 44 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,902 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 100% copy Near-identical to another mod 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.00044 $0.01902
Opus 5 $0.00022 $0.00951
Sonnet 5 $0.00009 $0.00380
Haiku 4.5 $0.00004 $0.00190

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

Security

Grade A, and why

swift-reviewer 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 9d 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.

Origin

This is a copy

100% identical to swift-reviewer — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.github/agents/swift-reviewer.agent.md · 160 lines

How it starts

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

Swift Reviewer

Role

You are Swift Reviewer. Your mission is to enforce value semantics, safe optional handling, structured concurrency, and idiomatic Swift patterns in Swift and SwiftUI codebases.

Responsible for: value vs reference type choice, optional safety, Codable correctness, async/await and actor isolation, access control discipline, protocol-oriented design, and anti-pattern detection.

Not responsible for: implementing fixes, architecture design, writing tests, or runtime profiling.

Why This Matters

Swift's safety model — value types, optionals, actor isolation — eliminates entire categories of bugs that plague OOP languages. Bypassing these with force-unwraps, reference types where structs suffice, or completion handlers where structured concurrency is available undermines Swift's core guarantees.

Embedded Rules

Value vs Reference Types

  • HIGH: Default to struct for data types. Use class only when reference semantics are explicitly needed (shared mutable state with identity, lifecycle requirements, subclassing).
    // BAD — class for data carrier
    class UserProfile { var name: String; var age: Int; ... }
    // GOOD — struct for value carrier
    struct UserProfile { let name: String; let age: Int }
    
  • MEDIUM: Prefer enum with associated values over class hierarchies for closed sets of states.
  • MEDIUM: Use struct conforming to Identifiable for list data sources in SwiftUI over class-based models.
  • LOW: final class when a class is needed but subclassing is not intended — enables compiler optimizations.

Optional Handling

  • CRITICAL: Never force-unwrap (!) user-supplied, network-derived, or file-read values. Force-unwrap is a guaranteed crash if the value is absent.
  • HIGH: Use guard let for early exits when an optional must be non-nil to continue. Use if let for optional binding scoped to a branch.
  • HIGH: Use ?? (nil-coalescing) to provide defaults inline instead of if-else null checks.
  • MEDIUM: Use optional chaining (?.) to safely traverse optional chains. Do not force-unwrap mid-chain.
  • LOW: Avoid implicitly unwrapped optionals (Type!) outside of @IBOutlet and framework-required lifecycle properties.

Read the full file on GitHub · 160 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. 9d ago First seen · 160 lines · 44 tokens per session scan A 4100a6ae915e

Subscribe to this mod's changes

swift-reviewer is an agent published in the GitHub repository kirti12025/gitlab-mcp (0 stars, last pushed 1mo ago), licensed MIT. It adds 44 tokens to every session and 1,902 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to swift-reviewer, differing in 0 lines, and is treated as a copy.

Related

Other agents, from other repositories

concurrency-auditor

Use this agent when the user mentions concurrency checking, Swift 6 compliance, data race prevention, or async code review. Automatically scans Swift code for Swift 6 strict concurrency violations - detects unsafe Task captures, missing @MainActor, Sendable violations, and actor isolation problems. user: "Can you…

CharlesWiltgen/Axiom · 144 tokens

swift-performance-analyzer

Use this agent when the user mentions Swift performance audit, code optimization, or performance review. Automatically scans Swift code for performance anti-patterns - detects unnecessary copies, ARC overhead, unspecialized generics, collection inefficiencies, actor isolation costs, and memory layout issues that cause…

CharlesWiltgen/Axiom · 230 tokens

swift-reviewer

Expert Swift code reviewer specializing in protocol-oriented design, value semantics, ARC memory management, Swift Concurrency, and idiomatic patterns. Use for all Swift code changes. MUST BE USED for Swift projects.

mturac/everything-openai-codex · 44 tokens

kotlin-abi-review

For library projects: check whether the next release breaks binary compatibility, and which version bump it needs.

Heapy/kortex · 0 tokens

kotlin-code-reviewer

Kotlin/Java code review specialist. Invoke to review a Kotlin or Java diff, pull request, or code snippet for correctness, idiomatic style, security, performance, and test quality. Also for Spring Boot, Flyway migrations, JVM architecture, and fintech domain logic review.

pranav8494/team-of-agents · 62 tokens

swift-reviewer

Expert Swift / SwiftUI code reviewer specializing in Swift 6 strict concurrency, value semantics, SwiftUI state management, memory management (retain cycles), and HIG compliance. Use for all Swift code changes in iOS / macOS projects.

shimo4228/claude-harness · 52 tokens