Install
$ agentstack add skill-aidas-dev-k8s-agent-skills-gitea-registry ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ● Network access Used
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Gitea Container Registry (v1.26)
OCI-compatible registry using Docker Registry API v2. Supports Docker images, Helm charts, and all OCI artifacts.
Auth
docker login git.example.com
# Username: gitea username
# Password: personal access token (NOT account password for 2FA users)
Image Naming
{registry}/{owner}/{image}:{tag}
Examples: git.example.com/testuser/myapp:latest, git.example.com/myorg/backend:v1.2.3
Push / Pull
docker tag myapp:latest git.example.com/testuser/myapp:latest
docker push git.example.com/testuser/myapp:latest
docker pull git.example.com/testuser/myapp:latest
Multi-Arch
docker buildx build --platform linux/amd64,linux/arm64 \
-t git.example.com/testuser/myapp:latest --push .
API
# List packages for owner
curl -H "Authorization: token " \
https://git.example.com/api/v1/packages/testuser
# Delete package version
curl -X DELETE -H "Authorization: token " \
https://git.example.com/api/v1/packages/testuser/container/myapp/1.0.0
Supported Package Types
alpine, cargo, chef, composer, conan, conda, container, cran, debian, generic, go, helm, maven, npm, nuget, pub, pypi, rpm, rubygems, swift, vagrant, terraform (v1.26+).
Config
[packages]
ENABLED = true
LIMIT_SIZE_CONTAINER = -1 # No size limit for container images
Common Mistakes
- Tag case — Tags are case-insensitive.
image:Tagandimage:tagare the same image. - Auth for 2FA users — Always use a personal access token as password, not account password.
- Delete needs all segments — REST delete endpoint requires owner, type, name, and version.
- Helm chart push — Use
helm pushwith OCI format:helm push mychart-1.0.0.tgz oci://git.example.com/myorg.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Aidas-dev
- Source: Aidas-dev/k8s-agent-skills
- License: MIT
- Homepage: https://git.kubexa.tech/Aidas/k8s-agent-skills
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.