快速配置新的agent
Analysis
This skill mostly matches its stated purpose, but it deserves review because it stores Feishu bot secrets, changes OpenClaw routing configuration, and restarts the Gateway service.
Findings (3)
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.
saveConfig(config); ... execSync('openclaw config set session.dmScope "per-account-channel-peer"', { stdio: 'pipe' }); ... execSync('openclaw gateway restart', { stdio: 'inherit' });The code writes the OpenClaw config, changes session routing behavior, and restarts Gateway after arguments are provided. These actions are purpose-aligned and disclosed, but they are high-impact and not guarded by code-level confirmation.
"dependencies": { "readline": "^1.3.0" }The package declares an external semver-ranged dependency even though the provided code does not appear to require it. This is not evidence of malicious behavior, but it is unnecessary supply-chain surface if dependencies are installed.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
appSecret: appsecret, ... dmPolicy: options.dmpolicy || 'open', allowFrom: ['*'], enabled: true
The skill persists a Feishu App Secret and defaults the account to an open/wildcard inbound policy. That is expected for bot setup, but it is sensitive account authority and broad by default.
