Fullrun

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

A mistaken or overbroad optimization could change campaigns, budgets, or other ad settings and affect advertising spend or performance.

Why it was flagged

This exposes a single CLI action that can automatically make Google Ads account changes, without documenting per-change user approval, dry-run output, rollback, or precise campaign/budget scope.

Skill content
`fullrun run` — Trigger a full AI-powered optimization run. The agent triages the account and fixes the highest-priority issues automatically.
Recommendation

Require explicit user confirmation and a reviewed change plan before running `fullrun run`; prefer diagnostic commands first and limit actions to specified campaigns or budgets.

What this means

If the API key has broad access, the skill may be able to view and modify more Google Ads data or campaigns than the user intended.

Why it was flagged

The required API key is paired with account-wide read and automatic write operations, but the artifacts do not define the credential scope, account boundary, or least-privilege model.

Skill content
requires:
  bins: [fullrun]
  env: [FULLRUN_API_KEY]
...
`fullrun campaigns:list` — All campaigns ... `fullrun run` — ... fixes the highest-priority issues automatically.
Recommendation

Use the most restricted key or account permissions available, verify which Google Ads account is connected, and avoid broad production access unless the user explicitly approves it.

What this means

Users must trust that the npm package they install is the intended Fullrun CLI before giving it an API key and ad-account authority.

Why it was flagged

The setup instructs users to install a global CLI package by name only. No pinned version, install spec, homepage, or reviewed package contents are provided in the artifact set.

Skill content
npm install -g fullrun
Recommendation

Verify the npm package publisher, version, and documentation before installation; consider pinning a known-good version and installing in a controlled environment.