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.

What this means

If the logged-in account has broad permissions, the agent could perform broad Gitea actions when asked.

Why it was flagged

The skill expects the user to authenticate the `tea` CLI, so actions run with the permissions of that Gitea account.

Skill content
Add a login once to get started: `tea login add`
Recommendation

Use a least-privileged Gitea account or token, and specify the intended `--repo` and `--login` when running commands.

What this means

A mistaken command could delete or modify important repository data.

Why it was flagged

The documented CLI examples include destructive repository management, including a forced delete option.

Skill content
Delete a repository: `tea repos delete --name my-repo --owner myuser --force`
Recommendation

Require explicit user confirmation before destructive or account-mutating commands, especially delete, release, webhook, secret, and variable operations.

What this means

The skill will use whatever `tea` executable is available in the user's environment, or fail if it is not installed.

Why it was flagged

The metadata does not declare the `tea` CLI dependency or provide an install source, even though SKILL.md relies on it.

Skill content
Required binaries (all must exist): none ... No install spec — this is an instruction-only skill.
Recommendation

Install `tea` from a trusted source and verify the binary before using this skill.

What this means

Repository activity may be shared with the configured webhook endpoint.

Why it was flagged

Webhook creation can send repository event data to an external URL.

Skill content
Create a webhook: `tea webhooks create https://example.com/hook --events push,pull_request`
Recommendation

Only create webhooks for trusted endpoints and select the minimum required events.