Gitea

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

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.