Claw Multi Agent

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 multi-agent run could have several child agents searching the web, reading or writing files, or executing code at the same time under your OpenClaw permissions.

Why it was flagged

The skill explicitly gives spawned child agents network, file, and code-execution capability. This is purpose-aligned, but broad parallel tool authority is high-impact and the artifacts do not clearly bound per-agent tool scope or approval.

Skill content
子 Agent 有完整工具:联网搜索、读写文件、执行代码
Recommendation

Use it only for trusted, well-scoped tasks; require explicit confirmation for write, execute, delete, deploy, or account-changing actions and constrain allowed paths/tools where possible.

What this means

Child agents may access the same project files, tools, and configured model/session permissions as the main agent.

Why it was flagged

The code comments state that child agents inherit the main agent's permission boundary, so delegation uses the user's existing OpenClaw authority.

Skill content
Sub-agents run within the same OpenClaw session context and inherit the same permission boundaries as the main agent.
Recommendation

Run this skill in a least-privilege workspace and avoid using it in projects containing secrets or sensitive files unless the task truly requires that access.

What this means

A misleading prior result or prompt-injection text collected during research could affect later analysis or the final report.

Why it was flagged

Sequential pipeline phases directly inject earlier agent outputs into later prompts. That is expected for orchestration, but untrusted or web-derived content in earlier outputs could influence downstream agents.

Skill content
task_text = f"【前序任务输出】\n{dep_output}\n\n【当前任务】\n{task_text}"
Recommendation

Treat sub-agent and web outputs as data, not instructions; review intermediate results for sensitive tasks and add explicit ignore-instructions/quote-as-evidence constraints when chaining phases.

What this means

Generated report content may be saved or shared through Feishu or another chat channel according to the current channel context.

Why it was flagged

The skill documents cross-skill/provider delivery of generated reports into Feishu when available. This is disclosed, but report visibility and workspace permissions are not described in the artifacts.

Skill content
Feishu + has `feishu-all-operations` skill | Create Feishu doc → send link (best UX)
Recommendation

Before using it with confidential content, confirm where reports will be posted, who can access created documents, and whether attachment/doc delivery is appropriate.

What this means

Installing from a moving remote repository can expose you to future repository changes that were not part of this review.

Why it was flagged

The README uses a user-directed remote GitHub install command without pinning a commit or release. This is common for skills, but users should verify provenance.

Skill content
npx --yes skills add https://github.com/zcyynl/claw-multi-agent
Recommendation

Install from a trusted source, prefer pinned releases or commits, and re-review code after updates.