Growth Loop Orchestrator

Security checks across malware telemetry and agentic risk

Overview

This appears to be a benign local growth-planning skill, with disclosed but review-worthy recommendations around public sharing/indexing and minor packaging gaps.

This skill looks safe to use as a local planning/report generator. Before installing or using it, be aware that some generated recommendations favor public-by-default sharing and search indexing, so require explicit privacy review before implementing those ideas. Also note that several documented helper scripts are missing from the package, and generated report/metrics files may remain in the local data directory.

VirusTotal

66/66 vendors flagged this skill as clean.

View on VirusTotal

Risk analysis

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.

#
ASI08: Cascading Failures
Low
What this means

If a generated plan is implemented directly, private or sensitive outputs could become public or search-indexed by default.

Why it was flagged

The content-loop template recommends public-by-default outputs and search indexing. This is aligned with growth-loop design, but if implemented without privacy review it could cause user-created content to propagate publicly.

Skill content
- **Default**: Public (opt-out)
- **Indexing**: Automatic SEO optimization
...
- [ ] Make outputs public by default
- [ ] Submit to search engines
Recommendation

Require explicit user opt-in, content classification, and approval before making outputs public or submitting them for indexing.

#
ASI04: Agentic Supply Chain Vulnerabilities
Info
What this means

Users may expect commands to exist or later obtain unreviewed helper files outside this artifact set.

Why it was flagged

SKILL.md documents helper scripts that are not included in the supplied file manifest/source. This is a packaging/provenance gap, not evidence of malicious behavior.

Skill content
./scripts/optimize-loop.sh --loop-id <id> ...
./scripts/generate-report.sh --type loops|funnel|portfolio ...
./scripts/simulate-loop.sh --design <file> ...
Recommendation

Use only the included reviewed scripts unless the missing helpers are supplied and reviewed; update documentation or the manifest to match the package.

#
ASI06: Memory and Context Poisoning
Low
What this means

Growth metrics or report outputs may persist locally after the task is complete.

Why it was flagged

The metrics workflow writes persistent local dashboard data. This is expected for reporting, but users should be aware that generated metrics remain on disk.

Skill content
DATA_DIR="${GROWTH_DATA_DIR:-$SKILL_DIR/data}"
METRICS_FILE="$DATA_DIR/METRICS-$(date +%Y%m%d).json"
cat > "$METRICS_FILE" << EOF
Recommendation

Avoid putting sensitive raw user behavior data into generated reports unless needed, and manage retention or cleanup of the data directory.