repomatic-audit — cli-tools repomatic-audit, meta-package-manager, community, cli-tools, ide skills, cyclonedx, flatpak, mac-app-store, package-manager, package-manager-cli, Claude Code

v1.0.0

Acerca de este Skill

Perfect for DevOps Agents needing advanced repository analysis and synchronization capabilities with upstream references like kdeldycke/repomatic. 🎁 wraps all package managers with a unifying CLI

# Core Topics

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

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 9/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review
Review Score
9/11
Quality Score
55
Canonical Locale
en
Detected Body Locale
en

Perfect for DevOps Agents needing advanced repository analysis and synchronization capabilities with upstream references like kdeldycke/repomatic. 🎁 wraps all package managers with a unifying CLI

¿Por qué usar esta habilidad?

Empowers agents to perform comprehensive audits of downstream repositories, catching stale action versions, missing workarounds, and outdated configurations, ensuring consistency with upstream references through tools like gh api and base64, and aligning with best practices in package management and workflow optimization.

Mejor para

Perfect for DevOps Agents needing advanced repository analysis and synchronization capabilities with upstream references like kdeldycke/repomatic.

Casos de uso accionables for repomatic-audit

Auditing workflow files for version pin drift and missing triggers
Identifying downstream innovations that could be contributed back to repomatic
Debugging configuration discrepancies between local and upstream reference files
Validating YAML scalar style issues in workflow definitions
Optimizing repository configurations for better workflow synchronization

! Seguridad y limitaciones

  • Requires GitHub API access
  • Limited to downstream repositories only
  • Needs pyproject.toml with [tool.repomatic] section for exclusion configuration
  • Python environment required for execution

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.

Source Boundary

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

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

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 advanced repository analysis and synchronization capabilities with upstream references like kdeldycke/repomatic. 🎁 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 downstream innovations that could be contributed back to repomatic, Debugging configuration discrepancies between local and upstream reference files, Validating YAML scalar style issues in workflow definitions, Optimizing repository configurations for better workflow synchronization.

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 GitHub API access. Limited to downstream repositories only. Needs pyproject.toml with [tool.repomatic] section for exclusion configuration. Python environment required for execution.

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.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Imported Repository Instructions

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

Supporting Evidence

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
Imported Repository Instructions
The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.
Supporting Evidence

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.

Habilidades relacionadas

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

Ver todo

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
Inteligencia Artificial

widget-generator

Logo of f
f

Generar complementos de widgets personalizables para el sistema de feeds de prompts.chat

149.6k
0
Inteligencia Artificial

flags

Logo of vercel
vercel

El Marco de React

138.4k
0
Navegador

pr-review

Logo of pytorch
pytorch

Tensores y redes neuronales dinámicas en Python con fuerte aceleración de GPU

98.6k
0
Desarrollador