结构化任务规划与分步执行 V2(异步子代理架构)
Analysis
The skill is openly designed to run background subagents and scheduled monitoring, but that gives it broad ongoing authority and access to local agent session history.
Findings (5)
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
sessions_spawn(... cleanup="keep", mode="run") ... 创建子代理后**立即返回**
The skill explicitly launches subagents that continue running asynchronously and keeps their sessions, so work can proceed after the main session has returned.
使用 sessions_spawn 启动执行子代理 ... task="<步骤 1 的执行 Prompt>"
The generated step prompt is delegated to a subagent for execution. The artifacts require initial user confirmation, but do not show tool-level restrictions, per-step approval, or safeguards for high-impact generated steps.
执行结果:{执行子代理的输出} ... 请返回:通过 / 不通过,并说明原因The verifier subagent is prompted with execution output as context. If that output contains adversarial instructions, it could influence the verifier unless treated strictly as untrusted evidence.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
"permissions": ["read-sessions", "cron", "subagent-spawn"]
The skill declares elevated OpenClaw permissions needed for its design. These are purpose-aligned but materially broaden what the skill can do.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
sessions_file = Path.home() / ".openclaw" / "agents" / "main" / "sessions" / "sessions.json" ... "last_message": str(last_message)[:200]
The script reads the local OpenClaw session index and session files, then returns a snippet of the last message. Agent session history can contain private conversation or tool-output context.
