tududi

PassAudited by VirusTotal on May 12, 2026.

Overview

Type: OpenClaw Skill Name: tududi Version: 1.0.1 The skill is designed to interact with a self-hosted task manager (`tududi`) using a user-provided URL and API token. All `curl` commands in `SKILL.md` are directed to the configured `$TUDUDI_URL` and use the `$TUDUDI_API_TOKEN` for authentication, which is consistent with the stated purpose. There is no evidence of data exfiltration to external, unrelated endpoints, malicious execution, persistence mechanisms, or prompt injection attempts to subvert the agent's intended behavior.

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

Anyone using this skill should know the agent can act through the configured tududi API token.

Why it was flagged

The skill requires a bearer token for the user's tududi instance. This is expected for the integration, but it gives the agent delegated access to the user's task-management account.

Skill content
`TUDUDI_API_TOKEN` - API token from tududi Settings → API Tokens
Recommendation

Use a token intended for automation if tududi supports it, store it securely in the skill environment, and revoke it if the skill is no longer needed.

What this means

The agent could create, update, archive, or delete tasks and inbox items in the configured tududi instance.

Why it was flagged

The skill documents direct API calls, including deletion of tasks and inbox items. These operations are aligned with task management, but they can permanently change user data if invoked incorrectly.

Skill content
curl -s -X DELETE $TUDUDI_URL/api/v1/task/{uid} \
  -H "Authorization: Bearer $TUDUDI_API_TOKEN"
Recommendation

Review requested task changes before allowing delete or bulk-update actions, and keep backups or recovery options for important task data.

What this means

A user may not realize from the registry metadata alone that setup requires a tududi URL and API token.

Why it was flagged

The registry metadata does not declare the environment variables and API token that SKILL.md says are needed. This is a metadata completeness issue rather than evidence of hidden behavior.

Skill content
Required env vars: none; Primary credential: none
Recommendation

Confirm the skill configuration includes only the intended TUDUDI_URL and TUDUDI_API_TOKEN for the tududi instance you want the agent to manage.