repomatic-audit — changelog-formatter repomatic-audit, repomatic, community, changelog-formatter, ide skills, github-actions, github-labels, github-workflow, gitignore, mailmap, Claude Code

v1.0.0
GitHub

About this Skill

Perfect for CI/CD Agents needing automated repository maintenance and workflow audits 🏭 Automate repository maintenance, releases, and CI/CD workflows

# Core Topics

kdeldycke kdeldycke
[36]
[7]
Updated: 3/12/2026

Agent Capability Analysis

The repomatic-audit skill by kdeldycke is an open-source community AI agent skill for Claude Code and other IDE workflows, helping agents execute tasks with better context, repeatability, and domain-specific guidance. Optimized for changelog-formatter, github-actions, github-labels.

Ideal Agent Persona

Perfect for CI/CD Agents needing automated repository maintenance and workflow audits

Core Value

Empowers agents to perform comprehensive audits of downstream repositories against the upstream kdeldycke/repomatic reference, catching stale action versions, missing workarounds, and outdated configs using gh api, pyproject.toml, and YAML files

Capabilities Granted for repomatic-audit

Automating workflow audits for thin-caller workflows and header-only workflows
Identifying downstream innovations that could be contributed back to repomatic
Debugging workflow dispatch issues and version pin drift
Validating YAML scalar style and pytest output flags

! Prerequisites & Limits

  • Requires gh api access
  • Limited to downstream repositories only
  • Needs pyproject.toml and YAML files for configuration
Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

repomatic-audit

Install repomatic-audit, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

SKILL.md
Readonly

Context

!ls .github/workflows/*.yaml 2>/dev/null !grep -h 'uses:.*kdeldycke/repomatic' .github/workflows/*.yaml 2>/dev/null | head -5 !grep -A5 '\[tool.repomatic\]' pyproject.toml 2>/dev/null || echo "No [tool.repomatic] section" ![ -f repomatic/__init__.py ] && echo "CANONICAL_REPO" || echo "DOWNSTREAM"

Instructions

You perform a comprehensive audit of a downstream repository against the upstream kdeldycke/repomatic reference. This goes beyond what repomatic workflow sync handles — it catches stale action versions in custom job content, missing workarounds, outdated configs, and conventions that can be borrowed from upstream.

This skill is for downstream repos only. If the context shows CANONICAL_REPO, tell the user this skill is not applicable.

Scope selection

  • all (default when $ARGUMENTS is empty): Run all audits below.
  • workflows: Audit workflow files only.
  • configs: Audit non-workflow config files only.
  • claude: Audit claude.md alignment only.
  • upstream: Identify downstream innovations that could be contributed back to repomatic.

Fetching reference files

Use gh api repos/kdeldycke/repomatic/contents/{path} --jq '.content' | base64 -d to fetch upstream reference files.

1. Workflow audit (workflows)

Thin-caller workflows

Compare each local thin-caller workflow against its reference. These should be identical (except for files listed in exclude). Flag:

  • Extra triggers (e.g., spurious workflow_dispatch).
  • Missing triggers.
  • Version pin drift (different @vX.Y.Z tag).

Header-only workflows (e.g., tests.yaml)

The header (name, on:, concurrency:) is synced automatically, but custom job content is not. Compare the job content against the reference for:

  • Stale action versions: e.g., actions/checkout, astral-sh/setup-uv, codecov/* — compare pinned versions.
  • Missing workarounds: e.g., the "Force native ARM64 Python on Windows ARM64" step that sets UV_PYTHON.
  • Missing matrix exclusions: e.g., windows-11-arm + Python 3.10 (no native ARM64 build).
  • Outdated integration patterns: e.g., using codecov-action when upstream migrated to codecov-cli via uvx.
  • Missing pytest output flags: e.g., --cov-report=xml, --junitxml=junit.xml needed for codecov-cli.
  • YAML scalar style issues: e.g., run: | where run: > is needed for multi-line single commands.

Excluded workflows

Respect exclude entries from [tool.repomatic] in pyproject.toml. Report excluded files but do not flag them as drift.

2. Config file audit (configs)

Compare these files against the upstream reference:

FileWhat to check
renovate.json5Missing assignees, missing package rules, stale binary versions in postUpgradeTasks
pyproject.toml [tool.typos]Missing default.extend-identifiers for common capitalizations (GitHub, macOS, PyPI, iOS, etc.)
pyproject.toml [tool.bumpversion]Missing ignore_missing_files
pyproject.toml [tool.ruff]Missing or divergent lint rules, preview settings
pyproject.toml [tool.mypy]Missing settings compared to reference
.github/ISSUE_TEMPLATE/Filename conventions (hyphens, not underscores), missing labels
.github/code-of-conduct.mdStale or non-canonical attribution URLs
.github/funding.ymlCompare with reference
.gitignoreCompare with reference
lychee.tomlNote differences (usually project-specific, just flag for review)

Skip files that are intentionally excluded via exclude in [tool.repomatic].

3. claude.md audit (claude)

Fetch the upstream claude.md and identify universally applicable sections that the local claude.md is missing. Focus on:

  • Terminology and spelling rules.
  • Version formatting conventions.
  • Modern typing practices.
  • Python version compatibility caveats.
  • Testing guidelines (e.g., "no test classes" rule).
  • Common maintenance pitfalls.
  • Command-line option conventions.

Do not flag upstream sections that are project-specific (e.g., CLI abstractions, workflow design, release checklists, agent conventions).

4. Upstream contribution opportunities (upstream)

Scan the downstream repo for patterns, workarounds, or configurations that are better than or missing from the upstream reference. These are candidates for contributing back to kdeldycke/repomatic. Look for:

  • Broader test matrices: e.g., more OS variants, extra Python versions, additional architecture coverage that upstream could adopt as defaults.
  • Workarounds for known issues: Steps or configs that fix CI failures or edge cases that upstream hasn't addressed yet.
  • Better tool configurations: e.g., ruff extend-include patterns, pytest addopts, coverage settings that are more complete than upstream.
  • Useful pyproject.toml patterns: e.g., dependency group definitions, build config, or tool settings that could be generalized.
  • Custom workflow steps: Reusable patterns in header-only workflows (e.g., package install verification, environment variable passing) that could become part of the reference workflow.
  • Documentation improvements: claude.md sections, issue templates, or repo metadata patterns that would benefit all downstream repos.

For each candidate, assess:

  1. Generalizability: Would this benefit most downstream repos, or is it project-specific?
  2. Complexity: Is it a simple config change or a significant workflow redesign?
  3. Action: Suggest filing as a GitHub issue or PR at kdeldycke/repomatic, with a draft title and description.

Output format

For each audit area, produce:

  1. A summary table: item, status (MATCH / DRIFT / MISSING / N/A), brief description.
  2. For each issue: what the current state is, what the reference has, and the recommended fix.
  3. Prioritize: group by severity (breaking/functional issues first, then consistency, then cosmetic).

After running

Suggest the user run:

  • /repomatic-sync to fix thin-caller workflow drift automatically.
  • Manual edits for header-only workflow drift and config changes.
  • /repomatic-lint to validate after fixes are applied.

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is repomatic-audit?

Perfect for CI/CD Agents needing automated repository maintenance and workflow audits 🏭 Automate repository maintenance, releases, and CI/CD workflows

How do I install repomatic-audit?

Run the command: npx killer-skills add kdeldycke/repomatic/repomatic-audit. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for repomatic-audit?

Key use cases include: Automating workflow audits for thin-caller workflows and header-only workflows, Identifying downstream innovations that could be contributed back to repomatic, Debugging workflow dispatch issues and version pin drift, Validating YAML scalar style and pytest output flags.

Which IDEs are compatible with repomatic-audit?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for repomatic-audit?

Requires gh api access. Limited to downstream repositories only. Needs pyproject.toml and YAML files for configuration.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add kdeldycke/repomatic/repomatic-audit. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use repomatic-audit immediately in the current project.

Related Skills

Looking for an alternative to repomatic-audit or another community skill for your workflow? Explore these related open-source skills.

View All

widget-generator

Logo of f
f

f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source — self-host for your organization with complete privacy.

149.6k
0
AI

flags

Logo of vercel
vercel

flags is a Next.js feature management skill that enables developers to efficiently add or modify framework feature flags, streamlining React application development.

138.4k
0
Browser

zustand

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI

data-fetching

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI