Safe Config Workflow

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.

ConcernMedium Confidence
ASI02: Tool Misuse and Exploitation
What this means

The agent could change more of the OpenClaw configuration than the user specifically requested, potentially affecting Gateway behavior, channels, sessions, or authentication settings.

Why it was flagged

The skill directs the agent to run an automatic repair command against the OpenClaw config and treats small fixes as not requiring user involvement. This is purpose-aligned, but the exact scope of automatic changes is not bounded beyond the doctor tool.

Skill content
步骤 2: 检查 + 自动修复
openclaw doctor --fix ... 小问题 ... 不麻烦用户
Recommendation

Require explicit user approval before applying doctor --fix changes, show a clear diff before and after, and provide an easy restore path from the backup.

ConcernMedium Confidence
ASI03: Identity and Privilege Abuse
What this means

Authentication or session-related configuration values could be exposed in chat output, diffs, logs, or memory if they appear in the config.

Why it was flagged

The skill explicitly covers session and authentication configuration and instructs the agent to report old and new config values, but it does not include redaction rules for tokens, secrets, or auth-related values.

Skill content
修改模型/会话/认证配置 ... 字段:XXX ... 原值:"XXX" ... 新值:"XXX"
Recommendation

Add rules to never display, copy, or persist secrets; redact token-like values in diffs and summaries; and ask the user before touching auth/session settings.

What this means

Private configuration details could persist across future tasks and influence later agent behavior without the user realizing it.

Why it was flagged

The skill mandates persistent learning in MEMORY.md and frames it as a lasting knowledge base, but does not define what may be stored, how long it persists, or how sensitive config values are excluded.

Skill content
把学到的正确配置值记录到 MEMORY.md ... 形成知识库,永久避免
Recommendation

Store only nonsensitive schema lessons, not actual user config values; redact secrets; define the memory file location and retention; and get user consent before writing persistent notes.

NoteHigh Confidence
ASI08: Cascading Failures
What this means

Testing or applying config changes at the wrong time could temporarily interrupt Gateway service.

Why it was flagged

The test guide acknowledges that some config tests and restarts can temporarily break Gateway availability. This is disclosed and includes backup/restore steps, so it is a note rather than a standalone concern.

Skill content
⚠️ 警告:这会导致 Gateway 暂时无法运行 ... openclaw gateway restart
Recommendation

Run disruptive tests only during a safe maintenance window, keep backups, and verify Gateway status after every change.