Kiro Creator Monitor Daily Brief

PassAudited by ClawScan on May 1, 2026.

Overview

This skill appears purpose-aligned for making a daily creator brief, but it uses third-party service credentials and can be scheduled to deliver results outside your workspace.

Before installing, review the config, enable only the sources and delivery channels you want, use dedicated scoped credentials where possible, and remember that a cron setup will keep running daily until you disable it.

Findings (4)

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

Running the skill will contact configured external sources and may consume API quota or reveal query topics to those services.

Why it was flagged

The script makes outbound API requests to the services named in the skill description. This is expected for a monitoring brief, but users should understand it performs network calls to third-party platforms.

Skill content
url = f"https://api.x.com/2/tweets/search/recent?..." ... "https://api.github.com/repos/{repo}/releases" ... "https://www.reddit.com/r/{sub}/new.json"
Recommendation

Review the configured sources and queries before running, and use only the sources you want monitored.

What this means

If you provide these tokens or passwords, the skill can use them to query X and send messages through the configured delivery channels.

Why it was flagged

The skill requests credentials for X search and optional Telegram, Slack, and email delivery. These credentials match the stated integrations, but they grant access to third-party services.

Skill content
"env": ["X_BEARER_TOKEN", "TELEGRAM_BOT_TOKEN", "TELEGRAM_CHAT_ID", "SLACK_WEBHOOK_URL", "SMTP_HOST", "SMTP_PORT", "SMTP_USER", "SMTP_PASS", "EMAIL_TO"]
Recommendation

Provide only the credentials needed for enabled features, prefer scoped tokens or dedicated webhooks, and leave unused delivery credentials unset.

What this means

Brief content and social drafts may be shared to Telegram, Slack, or email recipients when delivery is enabled.

Why it was flagged

The generated brief can be sent to external messaging or email providers. This is disclosed and purpose-aligned, but it moves output outside the local workspace.

Skill content
Optionally deliver to Telegram/Slack/email
Recommendation

Keep delivery disabled unless needed, verify recipients and webhooks, and avoid adding private feeds or sensitive topics unless you are comfortable sending the resulting brief externally.

NoteHigh Confidence
ASI10: Rogue Agents
What this means

If you add the cron schedule, the skill can run and send briefs repeatedly until the schedule is removed.

Why it was flagged

The example supports recurring scheduled execution with delivery. This is visible and user-configured, not hidden persistence.

Skill content
python3 skills/kiro-creator-monitor-daily-brief/scripts/daily_brief.py \
  --config skills/kiro-creator-monitor-daily-brief/examples/config.json \
  --out-dir outputs/creator-brief \
  --deliver
Recommendation

Only schedule it deliberately, monitor the output directory and delivery channels, and remove the cron job when you no longer want daily runs.