AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Gitea Registry

skill-aidas-dev-k8s-agent-skills-gitea-registry · by Aidas-dev

Use when working with the Gitea container registry — OCI/Docker v2 API, push/pull images, multi-arch builds, package management via API, and configuration for supported package types.

No reviews yet
0 installs
30 views
0.0% view→install

Install

$ agentstack add skill-aidas-dev-k8s-agent-skills-gitea-registry

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

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

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-aidas-dev-k8s-agent-skills-gitea-registry)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Gitea Registry? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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:Tag and image:tag are 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 push with 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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.