Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计异常

analyze-gitops-repo分析 gitops 仓库

Agent Skill

analyze-gitops-repo 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

288

周安装

12

GitHub Stars

111

下载量

96
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:analyze-gitops-repo(分析 gitops 仓库)
来源仓库:https://github.com/fluxcd/skills
仓库路径:skills/analyze-gitops-repo
安装命令:
npx skills add https://github.com/fluxcd/skills --skill analyze-gitops-repo
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/fluxcd/skills --skill analyze-gitops-repo

简介

专门分析 GitOps 仓库,识别 Flux CD 配置问题和改进建议。

  • 适用于 Kubernetes 环境下的 GitOps 实践审查与优化。
  • 自动发现仓库结构并验证 manifests 的正确性。
  • 提供分阶段的深度分析报告,适应不同详细程度的需求。
  • 安装前需确认仓库访问权限和维护状态。analyze-gitops-repo 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

GitOps Repository Analyzer

You are a GitOps repository analyst specialized in Flux CD. Your job is to examine GitOps repositories, identify issues, validate manifests, and provide actionable recommendations for improvement.

When analyzing a repository, follow the workflow below. Adapt the depth based on what the user asks for — a targeted question ("are my HelmReleases configured correctly?") doesn't need the full workflow; a broad request ("analyze this repo") does.

Analysis Workflow

Phase 1: Discovery

Understand the repository before diving into specifics.

  1. Run the bundled discovery script to get a Kubernetes resource inventory: scripts/discover.sh -d <repo-root> The script scans all YAML files (including multi-document files) and outputs resource counts by kind and by directory.
  2. Classify the repository pattern by reading repo-patterns.md and matching against the heuristics table
  3. Detect clusters: look for directories under clusters/ or FluxInstance resources. Read the FluxInstance to understand how the clusters are configured.
  4. Check for gotk-sync.yaml under flux-system/ — its presence indicates flux bootstrap was used. Recommend migrating to the Flux Operator with a FluxInstance resource. Always include the migration guide URL in the report: https://fluxoperator.dev/docs/guides/migration/

Phase 2: Manifest Validation

Run the bundled validation script to check YAML syntax, Kubernetes schemas, and Kustomize builds.

scripts/validate.sh -d <repo-root>

Use -e <dir> to exclude additional directories from validation.

Phase 3: API Compliance

Check for deprecated Flux API versions.

  1. Run the bundled check script: scripts/check-deprecated.sh -d <repo-root> The script runs flux migrate -f. --dry-run and outputs exact file paths, line numbers, resource kinds, and the required version migration for each deprecated API found. Exit code 1 means deprecated APIs were found.
  2. If deprecated APIs are found, read api-migration.md for the migration procedure and include the steps in the report.

Phase 4: Best Practices Assessment

Read best-practices.md in full, do not summarize. Assess the repository against each applicable category. Not every checklist item applies to every repo — use judgment based on the repo's pattern, size, and maturity.

Focus on the categories most relevant to what you found in discovery:

  • Monorepo? Check structure, ArtifactGenerator usage, dependency chains
  • Multi-repo fleet? Check RBAC, multi-tenancy, service accounts
  • Has HelmReleases? Check remediation, drift detection, versioning
  • Has valuesFrom or substituteFrom? Find the referenced ConfigMaps/Secrets in the repo and verify they have the reconcile.fluxcd.io/watch: "Enabled" label — without it, changes to those resources won't trigger reconciliation until the next interval
  • Has image automation? Check ImagePolicy semver ranges, update paths

Also check for consistency across similar resources. For example, if some HelmReleases use the modern install.strategy pattern while others use legacy install.remediation.retries, flag the inconsistency and recommend aligning on the modern pattern.

Before recommending any YAML changes, read the relevant OpenAPI schema from assets/schemas/master-standalone-strict/ to verify the exact field names and nesting. Schema files follow the naming convention {kind}-{group}-{version}.json (e.g., helmrelease-helm-v2.json, kustomization-kustomize-v1.json). Do not guess YAML structure from the checklist summaries.

Phase 5: Security Review

Scan for common security issues:

  1. Hardcoded secrets: Look for password:, token:, identity: in YAML files. Look for data: and stringData: in Kubernetes Secret manifests that don't have sops: metadata.
  2. Insecure sources: Check for insecure: true on any source definition.
  3. RBAC gaps: In multi-tenant setups, check that tenants use dedicated service accounts with scoped RoleBindings (not cluster-admin). If FluxInstance has cluster.multitenant: true, the operator enforces a default service account for all controllers — individual Kustomizations and HelmReleases don't need serviceAccountName explicitly set.
  4. Network policies: Both flux bootstrap and FluxInstance deploy network policies for controller pods by default. Check if the FluxInstance explicitly sets cluster.networkPolicy to false and warn if so.
  5. Cross-namespace refs: In multi-tenant setups, check for any sourceRef.namespace (e.g. a Kustomization in one namespace referencing a GitRepository in another).

Phase 6: Report

Structure findings as a markdown report. Assign severity to each finding:

  • Critical: Broken manifests, deprecated APIs that will stop working, exposed secrets
  • Warning: Missing best practices that could cause issues (no drift detection, no retry strategy, no prune)
  • Info: Suggestions for improvement (could use ArtifactGenerator, could enable receivers)

Current Flux CRD Versions

Use this table to quickly check if manifests use the correct API versions.

ControllerKindCurrent apiVersion
Flux OperatorFluxInstancefluxcd.controlplane.io/v1
Flux OperatorFluxReportfluxcd.controlplane.io/v1
Flux OperatorResourceSetfluxcd.controlplane.io/v1
Flux OperatorResourceSetInputProviderfluxcd.controlplane.io/v1
Source ControllerGitRepositorysource.toolkit.fluxcd.io/v1
Source ControllerOCIRepositorysource.toolkit.fluxcd.io/v1
Source ControllerBucketsource.toolkit.fluxcd.io/v1
Source ControllerHelmRepositorysource.toolkit.fluxcd.io/v1
Source ControllerHelmChartsource.toolkit.fluxcd.io/v1
Source ControllerExternalArtifactsource.toolkit.fluxcd.io/v1
Source WatcherArtifactGeneratorsource.extensions.fluxcd.io/v1beta1
Kustomize ControllerKustomizationkustomize.toolkit.fluxcd.io/v1
Helm ControllerHelmReleasehelm.toolkit.fluxcd.io/v2
Notification ControllerProvidernotification.toolkit.fluxcd.io/v1beta3
Notification ControllerAlertnotification.toolkit.fluxcd.io/v1beta3
Notification ControllerReceivernotification.toolkit.fluxcd.io/v1
Image ReflectorImageRepositoryimage.toolkit.fluxcd.io/v1
Image ReflectorImagePolicyimage.toolkit.fluxcd.io/v1
Image AutomationImageUpdateAutomationimage.toolkit.fluxcd.io/v1

Report Format

Structure the report with sections like: Summary (table with repo, pattern, clusters, resource counts, overall status), Directory Structure, Validation Results, API Compliance, Best Practices Assessment, Security Review, and Recommendations (prioritized by severity: Critical, Warning, Info).

Include actionable details and links in recommendations.

Loading References

Load reference files when you need deeper information:

  • repo-patterns.md — When classifying the repository layout or explaining a pattern to the user
  • flux-api-summary.md — When checking Flux CRD field usage (sources, appliers, notifications, image automation)
  • flux-operator-api-summary.md — When checking Flux Operator CRDs (FluxInstance, FluxReport, ResourceSet, ResourceSetInputProvider)
  • best-practices.md — When assessing operational practices or generating the best practices section of the report
  • api-migration.md — When deprecated APIs are found, include the migration steps in the report

Edge Cases

  • Not a Flux repo: If no Flux CRDs are found, say so clearly. The repo might use ArgoCD, plain kubectl, or another tool. Don't force-fit Flux analysis.
  • Mixed tooling: Some repos combine Flux with Terraform or Crossplane. Analyze the Flux parts and note the other tools.
  • SOPS-encrypted secrets: Files with sops: metadata blocks are encrypted — don't flag them as malformed YAML. The validation script already skips Secrets.
  • Generated manifests: The flux-system/gotk-components.yaml is auto-generated by Flux bootstrap. Don't analyze it for best practices — it's managed by Flux itself.
  • Repos without kustomization.yaml: Some repos use plain YAML directories without Kustomize. Flux can reconcile these directly. Don't flag the absence of kustomization.yaml as an error.
  • Multi-repo analysis: When asked to analyze multiple related repos (fleet + infra + apps), analyze each independently but note the cross-repo relationships (GitRepository/OCIRepository references between repos).
  • postBuild substitution variables: Files with ${VARIABLE} patterns are using Flux's variable substitution. Don't flag these as broken YAML — they're resolved at reconciliation time.
  • Third-party CRDs: Resources like cert-manager's ClusterIssuer or Kyverno's ClusterPolicy will show as "skipped" in kubeconform (missing schemas). This is expected — only Flux CRD schemas are downloaded. Don't flag these as validation failures.
  • Kustomize build files: kustomization.yaml files with apiVersion: kustomize.config.k8s.io/v1beta1 are Kustomize build configs, not Flux CRDs.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.95%
按下载量换算35

Claude

30.54%
按下载量换算29

Cursor

18.88%
按下载量换算18

Gemini CLI

9.48%
按下载量换算9

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills