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

关于此技能

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

# 核心主题

kdeldycke kdeldycke
[565]
[45]
更新于: 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

核心价值

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.

适用 Agent 类型

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

赋予的主要能力 · 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

! 使用限制与门槛

  • 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.

实验室 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

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

如何安装 repomatic-audit?

运行命令:npx killer-skills add kdeldycke/meta-package-manager。支持 Cursor、Windsurf、VS Code、Claude Code 等 19+ IDE/Agent。

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。

repomatic-audit 支持哪些 IDE 或 Agent?

该技能兼容 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。可使用 Killer-Skills CLI 一条命令通用安装。

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。

安装步骤

  1. 1. 打开终端

    在你的项目目录中打开终端或命令行。

  2. 2. 执行安装命令

    运行:npx killer-skills add kdeldycke/meta-package-manager。CLI 会自动识别 IDE 或 AI Agent 并完成配置。

  3. 3. 开始使用技能

    repomatic-audit 已启用,可立即在当前项目中调用。

! 参考页模式

此页面仍可作为安装与查阅参考,但 Killer-Skills 不再把它视为主要可索引落地页。请优先阅读上方评审结论,再决定是否继续查看上游仓库说明。

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

安装 repomatic-audit,这是一款面向AI agent workflows and automation的 AI Agent Skill。支持 Claude Code、Cursor、Windsurf,一键安装。

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.

相关技能

寻找 repomatic-audit 的替代方案 (Alternative) 或可搭配使用的同类 community Skill?探索以下相关开源技能。

查看全部

openclaw-release-maintainer

Logo of openclaw
openclaw

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

333.8k
0
AI

widget-generator

Logo of f
f

为prompts.chat的信息反馈系统生成可定制的插件小部件

149.6k
0
AI

flags

Logo of vercel
vercel

React 框架

138.4k
0
浏览器

pr-review

Logo of pytorch
pytorch

Python中具有强大GPU加速的张量和动态神经网络

98.6k
0
开发者工具