# Send Openclaw Workspace Pro to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "openclaw-workspace-pro",
    "name": "Openclaw Workspace Pro",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/Eugene9D/openclaw-workspace-pro",
    "canonicalUrl": "https://clawhub.ai/Eugene9D/openclaw-workspace-pro",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/openclaw-workspace-pro",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-workspace-pro",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "CHANGELOG.md",
      "CONTRIBUTING.md",
      "README.md",
      "SKILL.md",
      "install.sh",
      "package.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "openclaw-workspace-pro",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T18:42:08.249Z",
      "expiresAt": "2026-05-07T18:42:08.249Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-workspace-pro",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-workspace-pro",
        "contentDisposition": "attachment; filename=\"openclaw-workspace-pro-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "openclaw-workspace-pro"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/openclaw-workspace-pro"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/openclaw-workspace-pro",
    "downloadUrl": "https://openagent3.xyz/downloads/openclaw-workspace-pro",
    "agentUrl": "https://openagent3.xyz/skills/openclaw-workspace-pro/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openclaw-workspace-pro/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openclaw-workspace-pro/agent.md"
  }
}
```
## Documentation

### OpenClaw Workspace Pro

Enterprise workspace setup for long-running OpenClaw agents.

### What It Does

Transforms your OpenClaw workspace with production-ready patterns:

🗂 Artifact Workflow - Standardized output structure for reports, code, data, and exports
🔒 Secrets Management - Secure .env pattern, removes plaintext credentials
🧠 Memory Compaction - Prevents context bloat with systematic archival workflow
📦 Long-Running Patterns - Container reuse, checkpoint strategy, continuity protocols
🛡 Security Baseline - Network allowlists, safe credential handling

Based on OpenAI's Shell + Skills + Compaction best practices.

### Installation

clawhub install openclaw-workspace-pro

Or manual:

cd /data/.openclaw/workspace
git clone https://github.com/Eugene9D/openclaw-workspace-pro.git
cd openclaw-workspace-pro
./install.sh

### Directory Structure

workspace/
├── artifacts/           # Standardized output location
│   ├── reports/        # Analysis, summaries, documentation
│   ├── code/           # Generated scripts, apps, configs
│   ├── data/           # Cleaned datasets, processed files
│   └── exports/        # API responses, database dumps
├── memory/
│   └── archive/        # Compressed memory summaries
├── .env                # Secrets (gitignored)
└── .gitignore          # Security

### Documentation Added

AGENTS.md enhancements - Artifact workflow, long-run patterns, secrets management
MEMORY-COMPACTION.md - Weekly/monthly maintenance workflow
TOOLS.md additions - Network security allowlist

### Templates

.env.example - Secrets template
.gitignore - Protect credentials

### Artifacts Pattern

When producing deliverables:

# Reports
/data/.openclaw/workspace/artifacts/reports/YYYY-MM-DD-project-name.md

# Code
/data/.openclaw/workspace/artifacts/code/YYYY-MM-DD-script-name.py

# Data
/data/.openclaw/workspace/artifacts/data/YYYY-MM-DD-dataset.csv

Benefits:

Clear review boundaries
Easy retrieval
Version tracking
Prevents file sprawl

### Secrets Management

Before Workspace Pro:

# TOOLS.md
API_KEY=sk-abc123xyz...  ❌ Plaintext, exposed in git

After Workspace Pro:

# .env (gitignored)
API_KEY=sk-abc123xyz...

# TOOLS.md
API Key: $API_KEY  ✅ Reference only

### Memory Compaction

Prevents context bloat in long-running agents:

Weekly (when needed):

Review daily logs from past 7-14 days
Extract key insights → update MEMORY.md
Remove outdated info

Monthly:

Archive daily logs >30 days to memory/archive/YYYY-MM-summary.md
Delete raw files after archival

See MEMORY-COMPACTION.md for full workflow.

### The Problem

Default OpenClaw workspaces:

❌ Files scattered everywhere (no structure)
❌ API keys in plaintext (security risk)
❌ Memory grows indefinitely (context limits)
❌ No artifact review boundaries
❌ Manual maintenance (prone to drift)

### The Solution

Workspace Pro implements OpenAI's recommended patterns:

✅ Standardized artifact workflow
✅ Secure secrets management
✅ Systematic memory compaction
✅ Long-running agent patterns
✅ Clear operational workflows

### Real Impact

Security: Eliminates credential exposure
Organization: Clear deliverable handoff points
Scalability: Handles months of continuous operation
Maintenance: Defined schedules prevent drift

Based on production patterns from:

OpenAI's long-running agent recommendations
Glean's enterprise skill deployments
OpenClaw community best practices

### Environment Variables (.env)

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

### Network Security

Edit TOOLS.md network allowlist:

### Approved Domains
- *.googleapis.com (YouTube API)
- api.brave.com (search)
- tasks.playrockets.com (Vikunja)

Add new domains with security review.

### Requirements

OpenClaw 2026.2.9+
Workspace directory: /data/.openclaw/workspace
Shell access (for installation)

### Upgrading

cd /data/.openclaw/workspace/openclaw-workspace-pro
git pull
./install.sh

### Uninstall

Workspace Pro is non-destructive. To remove:

# Remove added files (safe, preserves your data)
rm -rf artifacts/ memory/archive/
rm .env .gitignore MEMORY-COMPACTION.md

# Restore AGENTS.md, TOOLS.md from backup
cp AGENTS.md.backup AGENTS.md
cp TOOLS.md.backup TOOLS.md

### Support

Issues: https://github.com/Eugene9D/openclaw-workspace-pro/issues
Discussions: https://discord.com/invite/clawd
ClawHub: https://clawhub.ai/skills/openclaw-workspace-pro

### License

MIT License - See LICENSE file

### Credits

Based on patterns from:

OpenAI Shell + Skills + Compaction
OpenClaw community practices
Glean enterprise skill deployments

Built by Eugene Devyatyh for the OpenClaw ecosystem.

Version: 1.0.0
Updated: 2026-02-13
Compatibility: OpenClaw 2026.2.9+
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Eugene9D
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T18:42:08.249Z
- Expires at: 2026-05-07T18:42:08.249Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/openclaw-workspace-pro)
- [Send to Agent page](https://openagent3.xyz/skills/openclaw-workspace-pro/agent)
- [JSON manifest](https://openagent3.xyz/skills/openclaw-workspace-pro/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/openclaw-workspace-pro/agent.md)
- [Download page](https://openagent3.xyz/downloads/openclaw-workspace-pro)