A SKILL.md Edit Is a Production Change — Even When No Code Changed

OpenClaw skills are not passive documentation. They change when tools are invoked and how work is performed. A local skill in your workspace has the highest loading precedence, so it can silently replace a bundled or managed version — without touching application code. That makes any edit to a SKILL.md a production change, even if no code changed.
Why It Matters
OpenClaw's skills documentation notes that the skills watcher is enabled by default. A modified SKILL.md can refresh the session snapshot on the next agent turn. The security guidance explicitly recommends treating skill folders as trusted code — because they can request filesystem access, network calls, credential handling, or approval workflows.
Audit Before You Change
Before you modify any skill, capture what the agent can actually load. Run these commands and save the output:
openclaw skills list --json
openclaw skills check --agent main --json
openclaw skills info SKILL_NAME --agent main --json
These give you the effective sources and hashes — useful as release evidence. Keep skill roots under version control and review any new filesystem, network, credential, or approval-related instructions in the diff.
Disable Mid-Session Changes
If you don't want skills swapped mid-session, the documented configuration supports disabling automatic watching:
{
"skills": {
"load": {
"watch": false
}
}
}
Test Like It's Production
When you do activate reviewed changes, start a controlled new session and run one bounded task. Confirm the expected tool sequence, permissions, and final outcome. A successful load only proves the skill is eligible — not that its behavior is safe.
The Takeaway
Which files in your OpenClaw setup can currently change agent behavior without passing your normal code-review process? Treat every SKILL.md like a production deployment: audit, version, test, and record what you changed.
📖 Read the full source: r/clawdbot
👀 See Also

Security Alert: Malicious Code in LiteLLM May Steal API Keys
A critical security vulnerability has been identified in LiteLLM that could expose API keys. Users of OpenClaw or nanobot may be affected and should check the GitHub issues linked in the source.

Claude models vulnerable to invisible Unicode character hijacking, especially with tool access
Testing shows Claude Sonnet 4 is 71.2% compliant with hidden instructions embedded in invisible Unicode characters when tools are enabled, with Opus 4 reaching 100% compliance on Unicode Tags encoding. Tool access dramatically increases vulnerability across all Claude models.

Malware Found in OpenClaw Community Skills — Crypto Theft Alert

Using Claude to audit OpenClaw setup reveals security issues
A developer used Claude to review their OpenClaw installation and discovered the bot was writing API keys in clear text in memory and JSON files, along with other security concerns.