Recipe Review Overdue Tasks

PassAudited by VirusTotal on May 11, 2026.

Overview

Type: OpenClaw Skill Name: recipe-review-overdue-tasks Version: 1.0.12 The skill bundle is a straightforward recipe for managing Google Tasks using the 'gws' utility. The instructions in SKILL.md are limited to listing task lists and tasks to identify overdue items, with no evidence of malicious execution, data exfiltration, or prompt injection.

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

The agent may see task-list names and incomplete task details, including due dates, for the configured Google account.

Why it was flagged

These commands access Google Tasks through the local gws setup. That is purpose-aligned, but it uses the privileges of whichever Google account/profile gws is configured to use.

Skill content
List task lists: `gws tasks tasklists list --format table`; List tasks with status: `gws tasks tasks list --params '{"tasklist": "TASKLIST_ID", "showCompleted": false}' --format table`
Recommendation

Use this only with a trusted gws configuration for the intended Google account, and confirm you are comfortable exposing those tasks to the agent.

What this means

If the local gws tool or gws-tasks skill is untrusted or misconfigured, the actual account access may differ from what this simple recipe describes.

Why it was flagged

The recipe depends on preinstalled external tooling and a companion skill. The recipe itself does not install code, but its behavior depends on those components being legitimate.

Skill content
requires:
  bins:
    - gws
  skills:
    - gws-tasks
Recommendation

Keep gws and gws-tasks installed from trusted sources and review their permissions before using this recipe.