New Agent Setup
Analysis
This setup skill is coherent, but it needs review because it handles Discord bot credentials, changes core OpenClaw configuration, creates persistent cron-based agent activity, and grants optional OneDrive access while the registry declares no credentials or config requirements.
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.
Backup `openclaw.json` ... Add agent ... Add Discord account + channel routing + agent routing ... Gateway restart ... `mc register <agent-id>`
The instructions authorize direct edits to core OpenClaw routing/configuration and service restart/register operations, which can affect the broader agent environment.
(crontab -l; echo "<minute>,<minute+10>,... * * * * MC_AGENT=<agent-id> ~/.openclaw/skills/mission-control/mc checkin >> ~/.openclaw/logs/mc-checkin.log 2>&1") | crontab -
The skill creates a persistent scheduled job for the new agent, and the HEARTBEAT workflow also tells the agent to claim and work on pending tasks.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
"channels.discord.accounts": { "<agent-id>": { "token": "<bot-token>" } }The skill instructs the agent to collect and persist a Discord bot token in OpenClaw configuration, even though the registry metadata declares no primary credential or required environment/config paths.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
ln -sf ~/.openclaw/onedrive/<library> ~/.openclaw/workspace-<agent-id>/onedrive/<library>
The optional OneDrive setup links a shared cloud-synced library into the new agent workspace, creating a data boundary between the agent workspace and cloud-visible files.
Datei: `~/.openclaw/workspace-<agent-id>/MEMORY.md` ... Format: `<agent-id>=`agent:<agent-id>:discord:channel:<channel-id>``
The skill creates persistent memory and stores a session routing key for future use by the new agent.
