feat: add kiro.dev/kiro-cli - #52151
Conversation
|
Warning Rate limit exceeded
Your organization is not enrolled in usage-based pricing. Contact your admin to enable usage-based pricing to continue reviews beyond the rate limit, or try again in 11 minutes and 0 seconds. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (2)
📝 WalkthroughWalkthroughRegisters a new package Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes Poem
🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
📝
|
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@registry.yaml`:
- Around line 53282-53299: The registry entry for the kiro-cli/http package is
missing a checksum block for integrity verification; update the registry.yaml
entry that contains the url
"https://prod.download.cli.kiro.dev/stable/{{.Version}}/kirocli-{{.Arch}}-linux-musl.zip"
and the files "kiro-cli" / "kiro-cli-chat" to include a checksum section (e.g.,
a checksum: block with type: http and url(s) pointing to the upstream manifest
or per-artifact checksum files) or an alternate verification method per your
package policy; consult the package maintainer to determine the correct
manifest/checksum source (since the manifest currently returns 403) and add the
checksum block to the overrides and base entry so all platforms (including the
darwin override using "Kiro%20CLI.dmg") are covered.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: defaults
Review profile: CHILL
Plan: Pro
Run ID: f36b789b-0ee0-4140-ba62-8552410c0be2
📒 Files selected for processing (3)
pkgs/kiro.dev/kiro-cli/pkg.yamlpkgs/kiro.dev/kiro-cli/registry.yamlregistry.yaml
| url: https://prod.download.cli.kiro.dev/stable/{{.Version}}/kirocli-{{.Arch}}-linux-musl.zip | ||
| format: zip | ||
| files: | ||
| - name: kiro-cli | ||
| src: kirocli/kiro-cli | ||
| - name: kiro-cli-chat | ||
| src: kirocli/kiro-cli-chat | ||
| replacements: | ||
| amd64: x86_64 | ||
| arm64: aarch64 | ||
| overrides: | ||
| - goos: darwin | ||
| url: https://prod.download.cli.kiro.dev/stable/{{.Version}}/Kiro%20CLI.dmg | ||
| format: dmg | ||
| files: | ||
| - name: kiro-cli | ||
| src: Kiro CLI.app/Contents/MacOS/kiro-cli | ||
| supported_envs: |
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
set -euo pipefail
VERSION="2.0.0"
BASE_STABLE="https://prod.download.cli.kiro.dev/stable/${VERSION}"
BASE_VERSIONED="https://prod.download.cli.kiro.dev/${VERSION}"
# Stable versioned path currently used by URL templates
curl -fsSL "${BASE_STABLE}/manifest.json" | jq -C '.'
curl -fsSL "${BASE_STABLE}/manifest.json" \
| jq -r '.. | objects | select(has("sha256")) | [.name, .sha256] | `@tsv`'
# Candidate fully-versioned endpoint (if available)
curl -fsSL "${BASE_VERSIONED}/manifest.json" | jq -C '.'
curl -fsSL "${BASE_VERSIONED}/manifest.json" \
| jq -r '.. | objects | select(has("sha256")) | [.name, .sha256] | `@tsv`'Repository: aquaproj/aqua-registry
Length of output: 115
🏁 Script executed:
# Read the registry.yaml file around the specified lines to see full context and EOF
wc -l registry.yaml
tail -20 registry.yaml
# Also check lines around 53282-53299
sed -n '53275,53305p' registry.yaml | cat -ARepository: aquaproj/aqua-registry
Length of output: 1639
🏁 Script executed:
# Check if the schema exists and what it requires for checksums
cat .ai/aqua/json-schema/registry.json | head -200Repository: aquaproj/aqua-registry
Length of output: 132
🏁 Script executed:
# Search for checksum patterns in registry.yaml to see how they're typically used
rg "checksum:" registry.yaml -A 5 | head -100Repository: aquaproj/aqua-registry
Length of output: 2488
🏁 Script executed:
# Look for kiro-cli entries to see the full context
rg "kiro.dev/kiro-cli" registry.yaml -B 10 -A 30Repository: aquaproj/aqua-registry
Length of output: 1381
🏁 Script executed:
# Check if schema or guidelines docs exist elsewhere
fd -i "schema" . --type f
fd -i "registry" . --type f -path "*/schema*"Repository: aquaproj/aqua-registry
Length of output: 234
🏁 Script executed:
# Search for other http-type entries to see if they typically have checksums
rg 'type: http' registry.yaml -A 15 | grep -E "(type: http|checksum:)" | head -50Repository: aquaproj/aqua-registry
Length of output: 1071
Add checksum verification for kiro-cli downloads.
This entry lacks a checksum field, while other type: http entries in the registry include checksums for integrity verification. The upstream endpoint at https://prod.download.cli.kiro.dev does not expose a publicly accessible manifest with per-version checksums (returned 403).
Verify with the package maintainer how checksums for these artifacts should be sourced and add a checksum block (with type: http pointing to the manifest URL or individual checksum files, or alternative verification method).
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@registry.yaml` around lines 53282 - 53299, The registry entry for the
kiro-cli/http package is missing a checksum block for integrity verification;
update the registry.yaml entry that contains the url
"https://prod.download.cli.kiro.dev/stable/{{.Version}}/kirocli-{{.Arch}}-linux-musl.zip"
and the files "kiro-cli" / "kiro-cli-chat" to include a checksum section (e.g.,
a checksum: block with type: http and url(s) pointing to the upstream manifest
or per-artifact checksum files) or an alternate verification method per your
package policy; consult the package maintainer to determine the correct
manifest/checksum source (since the manifest currently returns 403) and add the
checksum block to the overrides and base entry so all platforms (including the
darwin override using "Kiro%20CLI.dmg") are covered.
This MR contains the following updates: | Package | Update | Change | |---|---|---| | [aquaproj/aqua-registry](https://github.com/aquaproj/aqua-registry) | minor | `v4.494.1` → `v4.508.0` | MR created with the help of [el-capitano/tools/renovate-bot](https://gitlab.com/el-capitano/tools/renovate-bot). **Proposed changes to behavior should be submitted there as MRs.** --- ### Release Notes <details> <summary>aquaproj/aqua-registry (aquaproj/aqua-registry)</summary> ### [`v4.508.0`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.508.0) [Compare Source](aquaproj/aqua-registry@v4.507.0...v4.508.0) [Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.508.0) | [Merge Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.508.0) | <aquaproj/aqua-registry@v4.507.0...v4.508.0> #### 🎉 New Packages [#​53316](aquaproj/aqua-registry#53316) [runs-on/cli](https://github.com/runs-on/cli) - CLI for RunsOn [@​tvd0x2a](https://github.com/tvd0x2a) [#​53298](aquaproj/aqua-registry#53298) [anthropics/anthropic-cli](https://github.com/anthropics/anthropic-cli) - The CLI for the Claude API [@​tak848](https://github.com/tak848) #### Fixes [#​53323](aquaproj/aqua-registry#53323) add `github_release_attestations` to where `github_immutable_release` is [@​scop](https://github.com/scop) #### Security [#​53324](aquaproj/aqua-registry#53324) jreleaser/jreleaser/standalone: SLSA provenance config [@​scop](https://github.com/scop) ### [`v4.507.0`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.507.0) [Compare Source](aquaproj/aqua-registry@v4.506.0...v4.507.0) [Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.507.0) | [Merge Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.507.0) | <aquaproj/aqua-registry@v4.506.0...v4.507.0> #### 🎉 New Packages [#​53232](aquaproj/aqua-registry#53232) [racket-lang.org/racket-minimal](https://github.com/racket-lang.org/racket-minimal): Minimal Racket distribution [#​53227](aquaproj/aqua-registry#53227) [crates.io/wasmi\_cli](https://crates.io/crates/wasmi_cli): WebAssembly interpreter [@​2xdevv](https://github.com/2xdevv) #### Fixes [#​53217](aquaproj/aqua-registry#53217) aristocratos/btop: Support btop v1.4.7 [#​53266](aquaproj/aqua-registry#53266) steipete/gogcli: Rename to openclaw/gogcli #### Security [#​34119](aquaproj/aqua-registry#34119) jreleaser/jreleaser: SLSA provenance config [@​scop](https://github.com/scop) ### [`v4.506.0`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.506.0) [Compare Source](aquaproj/aqua-registry@v4.505.0...v4.506.0) [Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.506.0) | [Merge Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.506.0) | <aquaproj/aqua-registry@v4.505.0...v4.506.0> #### 🎉 New Packages [#​53191](aquaproj/aqua-registry#53191) [spinframework/spin](https://github.com/spinframework/spin) - Developer tool for building and running serverless WebAssembly applications [@​2xdevvc](https://github.com/2xdevvc) [#​53156](aquaproj/aqua-registry#53156) [salesforce/reactive-grpc/protoc-gen-reactor-grpc](https://github.com/salesforce/reactive-grpc) - Reactor-gRPC is a set of gRPC bindings for reactive programming with Reactor [@​altaiezior](https://github.com/altaiezior) #### Fixes [#​53201](aquaproj/aqua-registry#53201) pnpm/pnpm: GitHub artifact attestations config and drop darwin/amd64 support [@​scop](https://github.com/scop) ### [`v4.505.0`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.505.0) [Compare Source](aquaproj/aqua-registry@v4.504.0...v4.505.0) [Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.505.0) | [Merge Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.505.0) | <aquaproj/aqua-registry@v4.504.0...v4.505.0> #### 🎉 New Packages [#​53147](aquaproj/aqua-registry#53147) [boostsecurityio/bagel](https://github.com/boostsecurityio/bagel): bagel, a CLI that inventories security-relevant metadata on developer workstations [#​53136](aquaproj/aqua-registry#53136) [opencontainers/umoci](https://github.com/opencontainers/umoci) - umoci modifies Open Container images [@​2xdevv](https://github.com/2xdevv) [#​53118](aquaproj/aqua-registry#53118) [levibostian/decaf](https://github.com/levibostian/decaf) - Calm & reliable automated deployments. No more coffee breaks to deploy your code [@​levibostian](https://github.com/levibostian) [#​53105](aquaproj/aqua-registry#53105) [fillmore-labs/scopeguard](https://github.com/fillmore-labs/scopeguard): A Go static analyzer that identifies variables with unnecessarily wide scope and suggests moving them to tighter scopes #### Fixes [#​53143](aquaproj/aqua-registry#53143) anthropics/claude-code: Fix `gnu` to `glibc` [#​53134](aquaproj/aqua-registry#53134) Update microsoft/edit for the v2.0.0 release asset layout and add the newly published macOS artifact [@​garysassano](https://github.com/garysassano) ### [`v4.504.0`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.504.0) [Compare Source](aquaproj/aqua-registry@v4.503.0...v4.504.0) [Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.504.0) | [Merge Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.504.0) | <aquaproj/aqua-registry@v4.503.0...v4.504.0> #### 🎉 New Packages [#​53067](aquaproj/aqua-registry#53067) [elixir-lsp/elixir-ls](https://github.com/elixir-lsp/elixir-ls) - A frontend-independent IDE "smartness" server for Elixir. Implements the "Language Server Protocol" standard and provides debugger support via the "Debug Adapter Protocol" [@​AlternateRT](https://github.com/AlternateRT) [#​53056](aquaproj/aqua-registry#53056) [remoteoss/dexter](https://github.com/remoteoss/dexter) - A fast, full-featured Elixir LSP optimized for large codebases [@​AlternateRT](https://github.com/AlternateRT) [#​53028](aquaproj/aqua-registry#53028) [entireio/git-sync](https://github.com/entireio/git-sync): Mirror git refs from a source remote to a target remote without a local checkout. Packfiles stream directly over Smart HTTP and an in-memory object store #### Fixes [#​53027](aquaproj/aqua-registry#53027) Re-scaffold owenlamont/ryl [#​51570](aquaproj/aqua-registry#51570) dagu-org/dagu: Transfer the repository to dagucloud/dagu [#​50517](aquaproj/aqua-registry#50517) errata-ai/vale: Transfer the repository to vale-cli/vale #### Security [#​53022](aquaproj/aqua-registry#53022) grafana/flint: GitHub artifact attestations config [@​scop](https://github.com/scop) [#​53021](aquaproj/aqua-registry#53021) endevco/aube: GitHub artifact attestations config [@​scop](https://github.com/scop) [#​53020](aquaproj/aqua-registry#53020) FairwindsOps/nova: cosign config [@​scop](https://github.com/scop) ### [`v4.503.0`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.503.0) [Compare Source](aquaproj/aqua-registry@v4.502.0...v4.503.0) [Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.503.0) | [Merge Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.503.0) | <aquaproj/aqua-registry@v4.502.0...v4.503.0> #### 🎉 New Packages [#​52982](aquaproj/aqua-registry#52982) [tursodatabase/turso-cli](https://github.com/tursodatabase/turso-cli) - Command line interface to the Turso Cloud [@​kabaodao](https://github.com/kabaodao) [#​52971](aquaproj/aqua-registry#52971) [grafana/flint](https://github.com/grafana/flint) - Flint is a fast linter runner that keeps local and CI checks consistent with one binary, one config, and only the tools your repo declares [@​zeitlinger](https://github.com/zeitlinger) ### [`v4.502.0`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.502.0) [Compare Source](aquaproj/aqua-registry@v4.501.0...v4.502.0) [Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.502.0) | [Merge Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.502.0) | <aquaproj/aqua-registry@v4.501.0...v4.502.0> #### 🎉 New Packages [#​52943](aquaproj/aqua-registry#52943) [phrase/phrase-cli](https://github.com/phrase/phrase-cli) - CLI for the Phrase API [@​dsychin](https://github.com/dsychin) [#​52913](aquaproj/aqua-registry#52913) [Feel-ix-343/markdown-oxide](https://github.com/Feel-ix-343/markdown-oxide) - PKM Markdown Language Server [@​TyceHerrman](https://github.com/TyceHerrman) [#​52880](aquaproj/aqua-registry#52880) [OpenAPITools/openapi-generator](https://github.com/OpenAPITools/openapi-generator) - OpenAPI Generator allows generation of API client libraries (SDK generation), server stubs, documentation and configuration automatically given an OpenAPI Spec (v2, v3) [@​ogaclejapan](https://github.com/ogaclejapan) #### Fixes [#​52947](aquaproj/aqua-registry#52947) Re-scaffold CircleCI-Public/circleci-cli. Use darwin/arm64 binaries #### Security [#​52877](aquaproj/aqua-registry#52877) UpCloudLtd/upcloud-cli: v3.32.0 is missing GH artifact attestations [@​scop](https://github.com/scop) #### Documentation [#​52944](aquaproj/aqua-registry#52944) Include link in MR template to docs for package execution [@​dsychin](https://github.com/dsychin) ### [`v4.501.0`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.501.0) [Compare Source](aquaproj/aqua-registry@v4.500.0...v4.501.0) [Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.501.0) | [Merge Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.501.0) | <aquaproj/aqua-registry@v4.500.0...v4.501.0> #### 🎉 New Packages [#​52722](aquaproj/aqua-registry#52722) [IohannRabeson/tmignore-rs](https://github.com/IohannRabeson/tmignore-rs) - Makes Time Machine respect .gitignore files [@​TyceHerrman](https://github.com/TyceHerrman) [#​52723](aquaproj/aqua-registry#52723) [versity/versitygw](https://github.com/versity/versitygw) - A simple to deploy but feature rich S3 object storage server for your filesystem [@​TyceHerrman](https://github.com/TyceHerrman) [#​52729](aquaproj/aqua-registry#52729) [matthart1983/netwatch](https://github.com/matthart1983/netwatch) - Real-time network diagnostics in your terminal. One command, zero config, instant visibility [@​TyceHerrman](https://github.com/TyceHerrman) [#​52816](aquaproj/aqua-registry#52816) [solarwinds/swo-cli](https://github.com/solarwinds/swo-cli) - Standalone command line tool to retrieve and search recent app server logs from SolarWinds Observability [@​nirojan](https://github.com/nirojan) #### Fixes [#​52789](aquaproj/aqua-registry#52789) lycheeverse/lychee: Support lychee 0.24.0 or later [@​gaato](https://github.com/gaato) [#​52821](aquaproj/aqua-registry#52821) Fix pnpm v11 assets [@​TyceHerrman](https://github.com/TyceHerrman) [#​52858](aquaproj/aqua-registry#52858) Support WebAssembly/wabt 1.0.38 or later [@​thedaneeffect](https://github.com/thedaneeffect) [#​52737](aquaproj/aqua-registry#52737) jdx/pitchfork: Transfer the repository to endevco/pitchfork ### [`v4.500.0`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.500.0) [Compare Source](aquaproj/aqua-registry@v4.499.0...v4.500.0) [Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.500.0) | [Merge Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.500.0) | <aquaproj/aqua-registry@v4.499.0...v4.500.0> #### 🎉 New Packages [#​52682](aquaproj/aqua-registry#52682) [jonwiggins/xmloxide](https://github.com/jonwiggins/xmloxide) - A pure Rust reimplementation of libxml2 [@​zeitlinger](https://github.com/zeitlinger) [#​52681](aquaproj/aqua-registry#52681) [google/google-java-format](https://github.com/google/google-java-format) - Reformats Java source code to comply with Google Java Style [@​zeitlinger](https://github.com/zeitlinger) #### Fixes [#​52663](aquaproj/aqua-registry#52663) [#​52690](aquaproj/aqua-registry#52690) tstack/lnav: Support lnav v0.14.0 [@​TyceHerrman](https://github.com/TyceHerrman) #### Security [#​52701](aquaproj/aqua-registry#52701) bmf-san/ggc: Cosign config [@​scop](https://github.com/scop) #### Documentation [#​52848](aquaproj/aqua-registry#52848) Replace deprecated cmdx references [@​TyceHerrman](https://github.com/TyceHerrman) ### [`v4.499.0`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.499.0) [Compare Source](aquaproj/aqua-registry@v4.498.0...v4.499.0) [Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.499.0) | [Merge Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.499.0) | <aquaproj/aqua-registry@v4.498.0...v4.499.0> #### 🎉 New Packages [#​52642](aquaproj/aqua-registry#52642) [smol-machines/smolvm](https://github.com/smol-machines/smolvm) - Tool to build & run portable, lightweight, self-contained virtual machines [@​TyceHerrman](https://github.com/TyceHerrman) #### Fixes [#​52680](aquaproj/aqua-registry#52680) tombi-toml/tombi: Release artifacts format change [@​cailloumajor](https://github.com/cailloumajor) #### Documentation [#​52629](aquaproj/aqua-registry#52629) Clarify argd scaffold package support [@​TyceHerrman](https://github.com/TyceHerrman) ### [`v4.498.0`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.498.0) [Compare Source](aquaproj/aqua-registry@v4.497.0...v4.498.0) [Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.498.0) | [Merge Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.498.0) | <aquaproj/aqua-registry@v4.497.0...v4.498.0> #### 🎉 New Packages [#​52578](aquaproj/aqua-registry#52578) [lazywalker/rgrc](https://github.com/lazywalker/rgrc) - rgrc - Rusty Generic Colouriser - just like grc but fast [@​TyceHerrman](https://github.com/TyceHerrman) [#​52557](aquaproj/aqua-registry#52557) [tak848/ccgate](https://github.com/tak848/ccgate) - LLM-powered PermissionRequest hook for Claude Code [@​izumin5210](https://github.com/izumin5210) [#​52520](aquaproj/aqua-registry#52520) [grafana/gcx](https://github.com/grafana/gcx) - A CLI for managing Grafana Cloud resources. Optimized for agentic usage [@​yaroot](https://github.com/yaroot) #### Fixes [#​52531](aquaproj/aqua-registry#52531) awslabs/kubernetes-iteration-toolkit: Rename to awslabs/eks-perf-tests [#​52512](aquaproj/aqua-registry#52512) elixir-lang/expert: Rename to expert-lsp/expert ### [`v4.497.0`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.497.0) [Compare Source](aquaproj/aqua-registry@v4.496.0...v4.497.0) [Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.497.0) | [Merge Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.497.0) | <aquaproj/aqua-registry@v4.496.0...v4.497.0> #### 🎉 New Packages [#​52476](aquaproj/aqua-registry#52476) [ricoberger/grafana-kubernetes-plugin](https://github.com/ricoberger/grafana-kubernetes-plugin) - The Grafana Kubernetes Plugin allows you to explore your Kubernetes resources and logs directly within Grafana [@​monotek](https://github.com/monotek) #### Security [#​52458](aquaproj/aqua-registry#52458) controlplaneio-fluxcd/flux-operator-mcp: GitHub Artifact Attestations config [@​scop](https://github.com/scop) [#​52457](aquaproj/aqua-registry#52457) controlplaneio-fluxcd/flux-operator: GitHub Artifact Attestations config [@​scop](https://github.com/scop) #### Fixes [#​52425](aquaproj/aqua-registry#52425) go-delve/delve: Use GitHub release binaries for >= 1.26.2 [@​scop](https://github.com/scop) ### [`v4.496.0`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.496.0) [Compare Source](aquaproj/aqua-registry@v4.495.0...v4.496.0) [Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.496.0) | [Merge Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.496.0) | <aquaproj/aqua-registry@v4.495.0...v4.496.0> #### 🎉 New Packages [#​52322](aquaproj/aqua-registry#52322) [endevco/aube](https://github.com/endevco/aube) - A fast Node.js package manager [@​jdx](https://github.com/jdx) [#​52237](aquaproj/aqua-registry#52237) [controlplaneio-fluxcd/flux-operator/flux-operator-mcp](https://github.com/controlplaneio-fluxcd/flux-operator) - GitOps on Autopilot Mode [@​monotek](https://github.com/monotek) [#​52229](aquaproj/aqua-registry#52229) [LargeModGames/spotatui](https://github.com/LargeModGames/spotatui) - A fully standalone Spotify client for the terminal. Native streaming included, no daemon required [@​yudai-nkt](https://github.com/yudai-nkt) #### Security [#​52316](aquaproj/aqua-registry#52316) graelo/pumas: GitHub artifact attestations config [@​scop](https://github.com/scop) #### Fixes [#​52272](aquaproj/aqua-registry#52272) Re-scaffold skim-rs/skim. Windows Support [#​52247](aquaproj/aqua-registry#52247) vmware-tanzu/velero: Rename to velero-io/velero ### [`v4.495.0`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.495.0) [Compare Source](aquaproj/aqua-registry@v4.494.1...v4.495.0) [Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.495.0) | [Merge Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.495.0) | <aquaproj/aqua-registry@v4.494.1...v4.495.0> #### 🎉 New Packages [#​52202](aquaproj/aqua-registry#52202) [android-sms-gateway/cli](https://github.com/android-sms-gateway/cli) - A command-line interface for working with SMS Gateway for Android [@​Ash258](https://github.com/Ash258) [#​52151](aquaproj/aqua-registry#52151) [kiro.dev/kiro-cli](https://kiro.dev/docs/cli/installation/) - Kiro CLI is an agentic coding tool that lives in your terminal [@​garysassano](https://github.com/garysassano) [#​51667](aquaproj/aqua-registry#51667) [controlplaneio-fluxcd/flux-operator](https://github.com/controlplaneio-fluxcd/flux-operator) - Flux Operator CLI allows you to manage the Flux Operator resources in your Kubernetes clusters. It provides a convenient way to interact with the operator and perform various operations [@​monotek](https://github.com/monotek) [#​50599](aquaproj/aqua-registry#50599) [dependency-check/DependencyCheck](https://github.com/dependency-check/DependencyCheck) - OWASP dependency-check is a software composition analysis utility that detects publicly disclosed vulnerabilities in application dependencies [@​kapitoshka438](https://github.com/kapitoshka438) #### Fixes [#​52149](aquaproj/aqua-registry#52149) Re-scaffold jreleaser/jreleaser/standalone [#​52129](aquaproj/aqua-registry#52129) sigstore/cosign: Support cosign v2.6.3 [@​tmeijn](https://github.com/tmeijn) </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever MR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this MR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this MR, check this box --- This MR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xMzYuMiIsInVwZGF0ZWRJblZlciI6IjQzLjE1MC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJSZW5vdmF0ZSBCb3QiLCJhdXRvbWF0aW9uOmJvdC1hdXRob3JlZCIsImRlcGVuZGVuY3ktdHlwZTo6bWlub3IiXX0=-->
Check List
argd scommand when adding new packagesThis adds
kiro.dev/kiro-clito the aqua registry.pkgs/kiro.dev/kiro-cli/registry.yamlpkgs/kiro.dev/kiro-cli/pkg.yaml2.0.0Current package scope:
Known limitations:
stable/latest/manifest.json, while the versioned manifest endpoint was not usable as a stable per-version aqua checksum sourceaqua,argd, andconftestwere unavailableregistry.yamllocally for the same reasonSummary by CodeRabbit