Openclaw Workspace Pro

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.

What this means

The one-command installer may fail or leave only partial setup completed, especially before creating the promised .gitignore and .env files.

Why it was flagged

The install script depends on template files that are not listed in the supplied file manifest, which lists only templates/AGENTS-additions.md, templates/MEMORY-COMPACTION.md, and templates/TOOLS-additions.md.

Skill content
cp "$SKILL_DIR/templates/gitignore" "$WORKSPACE_DIR/.gitignore" ... cp "$SKILL_DIR/templates/env.example" "$WORKSPACE_DIR/.env"
Recommendation

Verify the package includes templates/gitignore and templates/env.example before installing, or create/review those files manually.

What this means

Future agent runs may access the listed services without asking first, which could be broader than some users want.

Why it was flagged

The skill installs guidance that pre-approves network access to several domains and service classes. This is disclosed as a network security allowlist, but it affects future agent tool-use decisions.

Skill content
**Only access these domains without asking first:**
- `*.googleapis.com`, `oauth2.googleapis.com` ...
- `api.telegram.org` ...
- Standard package managers
Recommendation

Review and narrow the allowlist in TOOLS.md after installation, especially messaging services and package-manager access.

What this means

The workspace may contain API keys or tokens that future agents and scripts can use.

Why it was flagged

The skill expects users to place service credentials in a local .env file. This is appropriate for the stated secrets-management purpose and no artifact shows credential leakage.

Skill content
After installation, populate `.env`:

# Example: YouTube API
YOUTUBE_API_KEY=your_key_here
YOUTUBE_OAUTH_CLIENT_ID=your_id_here

# Example: Task Management
VIKUNJA_API_TOKEN=your_token_here
Recommendation

Only add credentials you intend the workspace agent to use, keep .env out of version control, and scope tokens to the minimum needed permissions.

What this means

Long-term memory files may preserve sensitive context, while old raw logs may be deleted after summary.

Why it was flagged

The skill creates a persistent memory workflow that summarizes, archives, and deletes older logs. This is central to the stated memory-compaction purpose but affects retention and reuse of workspace context.

Skill content
Update MEMORY.md with distilled insights ... Create monthly summary in `memory/archive/` ... Delete raw daily logs >30 days (after archival confirmation)
Recommendation

Review MEMORY-COMPACTION.md before following it, exclude sensitive data from long-term summaries, and confirm backups or retention needs before deleting logs.

NoteHigh Confidence
ASI10: Rogue Agents
What this means

The skill's workflow rules can continue influencing future agent sessions until removed or edited.

Why it was flagged

The installer persistently modifies workspace-level agent guidance. This is disclosed and backed up, but it changes future agent behavior beyond a single invocation.

Skill content
cat "$SKILL_DIR/templates/AGENTS-additions.md" >> "$WORKSPACE_DIR/AGENTS.md" ... cat "$SKILL_DIR/templates/TOOLS-additions.md" >> "$WORKSPACE_DIR/TOOLS.md"
Recommendation

Review the appended AGENTS.md and TOOLS.md sections after installation and keep the generated backups so you can revert if needed.