Gitea
PassAudited by VirusTotal on May 12, 2026.
Overview
Type: OpenClaw Skill Name: gitea Version: 1.0.0 The skill bundle is benign. It primarily consists of a `SKILL.md` file that describes how to interact with Gitea using the `tea` CLI. All commands demonstrated are standard operations for repository management, pull requests, issues, releases, and webhooks. While the `tea webhooks create` command allows configuring Gitea to send data to arbitrary URLs, this is a legitimate function of the `tea` CLI and Gitea itself. The skill bundle merely documents this capability without providing any instructions for malicious use, attempting prompt injection against the agent, or exhibiting other high-risk behaviors like data exfiltration or obfuscation.
Findings (0)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
If the logged-in account has broad permissions, the agent could perform broad Gitea actions when asked.
The skill expects the user to authenticate the `tea` CLI, so actions run with the permissions of that Gitea account.
Add a login once to get started: `tea login add`
Use a least-privileged Gitea account or token, and specify the intended `--repo` and `--login` when running commands.
A mistaken command could delete or modify important repository data.
The documented CLI examples include destructive repository management, including a forced delete option.
Delete a repository: `tea repos delete --name my-repo --owner myuser --force`
Require explicit user confirmation before destructive or account-mutating commands, especially delete, release, webhook, secret, and variable operations.
The skill will use whatever `tea` executable is available in the user's environment, or fail if it is not installed.
The metadata does not declare the `tea` CLI dependency or provide an install source, even though SKILL.md relies on it.
Required binaries (all must exist): none ... No install spec — this is an instruction-only skill.
Install `tea` from a trusted source and verify the binary before using this skill.
Repository activity may be shared with the configured webhook endpoint.
Webhook creation can send repository event data to an external URL.
Create a webhook: `tea webhooks create https://example.com/hook --events push,pull_request`
Only create webhooks for trusted endpoints and select the minimum required events.
