configure-argocd-automerge

configure-argocd-automerge is a skill for Claude Code from laurigates/claude-plugins. It costs 44 tokens per session (1,556 once invoked), scanned A, original, MIT.

A setup guide for automatically merging pull requests created by ArgoCD Image Updater. ArgoCD is a deployment tool, and Image Updater changes image versions in a repository.

In plain words
What is it for?
Use it to create or verify the ArgoCD auto-merge GitHub Actions workflow and check its access-token permissions.
Why use it?
It removes the manual step of reviewing and merging routine image-update branches when the repository is configured to allow it.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: names the TodoWrite tool.

Part of the configure-plugin plugin — 48 skills shipped together

Good fit Use it to create or verify the ArgoCD auto-merge GitHub Actions workflow and check its access-token permissions.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/laurigates/claude-plugins/configure-argocd-automerge
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 laurigates/claude-plugins --skill configure-argocd-automerge
Clone the repo
git clone --depth 1 https://github.com/laurigates/claude-plugins

Made for: Claude Code.

Or install configure-plugin, the plugin that ships this one along with the rest of its 48 skills.

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 configure-argocd-automerge

README.md
[![agentmods](https://agentmods.dev/badge/skills/laurigates/claude-plugins/configure-argocd-automerge/github.svg)](https://agentmods.dev/skills/laurigates/claude-plugins/configure-argocd-automerge)
Your own site
<a href="https://agentmods.dev/skills/laurigates/claude-plugins/configure-argocd-automerge"><img src="https://agentmods.dev/badge/skills/laurigates/claude-plugins/configure-argocd-automerge/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 configure-argocd-automerge

Your own site · 80×15
<a href="https://agentmods.dev/skills/laurigates/claude-plugins/configure-argocd-automerge"><img src="https://agentmods.dev/badge/skills/laurigates/claude-plugins/configure-argocd-automerge.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 44 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,556 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Excessive Agency · line 149
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
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.00044 $0.01556
Opus 5 $0.00022 $0.00778
Sonnet 5 $0.00009 $0.00311
Haiku 4.5 $0.00004 $0.00156

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

Security

Grade A, and why

configure-argocd-automerge 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 7d 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.

configure-plugin/skills/configure-argocd-automerge/SKILL.md · 187 lines

How it starts

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

/configure:argocd-automerge

Configure GitHub Actions workflow to automatically create and merge PRs from ArgoCD Image Updater branches.

When to Use This Skill

Use this skill when... Use another approach when...
Setting up auto-merge for ArgoCD Image Updater branches Configuring ArgoCD application definitions
Checking if image-updater-** branches have auto-merge Managing general GitHub Actions workflows (/configure:workflows)
Creating the argocd-automerge.yml workflow from scratch Setting up container builds (/configure:container)
Verifying PAT and permissions for auto-merge workflows Configuring branch protection rules manually
Updating an existing ArgoCD auto-merge workflow Configuring Kubernetes deployments (/configure:skaffold)

Context

  • Workflows dir: !find . -maxdepth 1 -type d -name \'.github/workflows\'
  • Existing automerge workflow: !find . -path '*/.github/workflows/*' -maxdepth 3 \( -name '*argocd*automerge*' -o -name '*automerge*argocd*' \)
  • Image updater branches: !git branch -r --list 'origin/image-updater-*'
  • Auto-merge workflow: !find . -path '*/.github/workflows/*' -maxdepth 3 -name 'argocd-automerge.yml'

Parameters

Parse from command arguments:

  • --check-only: Report status without offering fixes
  • --fix: Create or update workflow automatically

Execution

Execute this ArgoCD auto-merge workflow configuration:

Step 1: Detect existing workflow

  1. Check for .github/workflows/ directory
  2. Search for existing ArgoCD auto-merge workflow files
  3. Check for image-updater-** branch pattern handling in any workflow

Step 2: Check compliance

Validate the workflow against these standards:

Check Standard Severity
Workflow exists argocd-automerge.yml FAIL if missing
checkout action v6 WARN if older
Permissions contents: write, pull-requests: write FAIL if missing
Branch pattern image-updater-** WARN if different
Auto-merge squash merge INFO

Read the full file on GitHub · 187 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. 7d ago First seen · 187 lines · 44 tokens per session scan A 8f7eb34fd2a8

Subscribe to this mod's changes

configure-argocd-automerge is a skill published in the GitHub repository laurigates/claude-plugins (58 stars, last pushed today), licensed MIT. It adds 44 tokens to every session and 1,556 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-09-03.

Related

Other skills, from other repositories

chinese-git-workflow

A reference for configuring Git with Chinese code-hosting services such as Gitee, Coding.net, GitLab China, and CNB, including SSH, HTTPS, credentials, CI, and repository mirroring.

jnMetaCode/superpowers-zh · 69 tokens

baby-sit

Monitor a GitHub pull request until CI is green, diagnose failures, and rerun only evidence-backed flaky GitHub Actions jobs.

langchain-ai/open-swe · 30 tokens

atmos-hooks

Atmos hooks: lifecycle events, hook kinds, command/store/git/security hooks, step/steps hooks, when: conditions, scoping and overrides, toolchain integration, --skip-hooks, and Atmos Pro/local output.

cloudposse/atmos · 46 tokens

atmos-pro

Atmos Pro setup and workflows: settings.pro, GitHub OIDC, affected and inventory uploads, stack locks, pro commit, workflow dispatch, merge queues, and drift detection.

cloudposse/atmos · 38 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

pr-watch

Local PR watcher. Monitors CI status, automatically fixes failing checks by reading failure logs and applying targeted fixes, then optionally merges when all checks pass. Local CLI analog to Claude Code's cloud auto-fix feature.

SethGammon/Citadel · 46 tokens