repomatic-audit — cli-tools repomatic-audit, meta-package-manager, kdeldycke, community, cli-tools, ai agent skill, ide skills, agent automation, cyclonedx, flatpak, mac-app-store, package-manager

v1.0.0
GitHub

About this Skill

Perfect for DevOps Agents needing comprehensive repository audits and workflow optimization. 🎁 wraps all package managers with a unifying CLI

# Core Topics

kdeldycke kdeldycke
[565]
[45]
Updated: 3/23/2026

Quality Score

Top 5%
55
Excellent
Based on code quality & docs
Installation
SYS Universal Install (Auto-Detect)
> npx killer-skills add kdeldycke/meta-package-manager/repomatic-audit
Supports 19+ Platforms
Cursor
Windsurf
VS Code
Trae
Claude
OpenClaw
+12 more

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 cli-tools, cyclonedx, flatpak.

Ideal Agent Persona

Perfect for DevOps Agents needing comprehensive repository audits and workflow optimization.

Core Value

Empowers agents to perform thorough audits of downstream repositories against upstream references, catching stale action versions, missing workarounds, and outdated configs, utilizing tools like `gh api` and analyzing files such as `pyproject.toml` and `.github/workflows/*.yaml`.

Capabilities Granted for repomatic-audit

Auditing workflow files for version pin drift and missing triggers
Identifying outdated integration patterns and missing matrix exclusions in job content
Contributing downstream innovations back to the upstream repository using `gh api`
Analyzing `claude.md` alignment and config files like `renovate.json` for consistency

! Prerequisites & Limits

  • Requires `gh api` access to the upstream repository
  • Only applicable to downstream repositories, not the canonical repository
  • Needs `pyproject.toml` and `.github/workflows/*.yaml` files to be present and properly configured
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 DevOps Agents needing comprehensive repository audits and workflow optimization. 🎁 wraps all package managers with a unifying CLI

How do I install repomatic-audit?

Run the command: npx killer-skills add kdeldycke/meta-package-manager/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: Auditing workflow files for version pin drift and missing triggers, Identifying outdated integration patterns and missing matrix exclusions in job content, Contributing downstream innovations back to the upstream repository using `gh api`, Analyzing `claude.md` alignment and config files like `renovate.json` for consistency.

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 to the upstream repository. Only applicable to downstream repositories, not the canonical repository. Needs `pyproject.toml` and `.github/workflows/*.yaml` files to be present and properly configured.

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/meta-package-manager/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

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
Design

flags

Logo of vercel
vercel

The React Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
AI

antd-commit-msg

Logo of ant-design
ant-design

Generate a single-line commit message for ant-design by reading the projects git staged area and recent commit style. Use when the user asks for a commit message, says msg, commit msg, 写提交信息, or wants

97.8k
0
Design