Evoagentx

PassAudited by VirusTotal on May 12, 2026.

Overview

Type: OpenClaw Skill Name: evoagentx Version: 1.0.1 The skill is classified as suspicious primarily due to its reliance on an external PowerShell script, `evoagentx.ps1`, for all core functionalities (installation, status, execution), which is not provided for analysis. While the `SKILL.md` instructions themselves do not contain malicious prompt injection or direct harmful commands, the execution of an unknown script represents a significant security blind spot and a risky capability. The hardcoded Windows Python path in `SKILL.md` is also an unusual, though not directly malicious, detail.

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 user could end up relying on a local script or package version whose contents are not shown in the submitted artifact.

Why it was flagged

The skill depends on an external pip package and tells users to run a PowerShell helper, but the supplied artifact set only contains SKILL.md. This is aligned with installation guidance, but users should verify the helper source and package version before running commands.

Skill content
metadata: {"openclaw": {"requires": {"bins": ["python3.12"], "pip": ["evoagentx"], "python_path": "C:\\Users\\z\\AppData\\Local\\Programs\\Python\\Python312\\python.exe"} ...
.\evoagentx.ps1 -Action install
Recommendation

Use only a verified EvoAgentX package and a trusted evoagentx.ps1 helper; prefer pinned package versions and inspect the helper before running it.

What this means

Broadly worded goals may lead to workflows that do more than the user expected if not reviewed.

Why it was flagged

The framework is intended to construct workflows from free-form goals. This is the stated purpose, but goal-driven automation should be reviewed before allowing actions that could affect files, accounts, or external services.

Skill content
Run: `.\evoagentx.ps1 -Action run -Goal "your goal"`
...
- Auto-constructs workflows from goals
Recommendation

Use specific goals, review generated workflows where possible, and avoid granting access to sensitive tools or accounts unless needed.

What this means

Using an API key may incur costs or expose account-level access to the EvoAgentX workflow.

Why it was flagged

The skill asks users to provide LLM provider credentials. That is expected for an AI-agent framework, but those credentials can spend quota or access provider-side account resources.

Skill content
- OpenAI API key (or Claude, DeepSeek, etc)
...
$env:OPENAI_API_KEY = "sk-..."
Recommendation

Use a scoped or limited API key where possible, monitor usage, and do not paste keys into untrusted terminals or shared logs.

What this means

Information given to workflows may be remembered or reused later depending on EvoAgentX configuration.

Why it was flagged

The framework advertises persistent memory and feedback-driven evolution. This is purpose-aligned, but long-term memory can retain or reuse sensitive context if users do not understand storage and retention behavior.

Skill content
- Self-evolution based on feedback
- Memory (short-term + long-term)
Recommendation

Avoid entering secrets or sensitive documents into workflows until memory storage, retention, and deletion controls are understood.