# Send Shared Workspace 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. 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. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "shared-workspace",
    "name": "Shared Workspace",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/nativ3ai/shared-workspace",
    "canonicalUrl": "https://clawhub.ai/nativ3ai/shared-workspace",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/shared-workspace",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=shared-workspace",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "shared-workspace",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T05:34:24.383Z",
      "expiresAt": "2026-05-08T05:34:24.383Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=shared-workspace",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=shared-workspace",
        "contentDisposition": "attachment; filename=\"shared-workspace-0.1.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "shared-workspace"
      },
      "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/shared-workspace"
    },
    "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/shared-workspace",
    "downloadUrl": "https://openagent3.xyz/downloads/shared-workspace",
    "agentUrl": "https://openagent3.xyz/skills/shared-workspace/agent",
    "manifestUrl": "https://openagent3.xyz/skills/shared-workspace/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/shared-workspace/agent.md"
  }
}
```
## Documentation

### Shared Workspace (MCP)

Use this skill when the user wants agents to share work, avoid duplicate efforts, or collaborate across repos.

### Quick Start

Install the MCP server (npm):

npm install -g agent-shared-workspace

Run the MCP server (stdio):

shared-workspace-mcp

Source:

npm: https://www.npmjs.com/package/agent-shared-workspace
repo: https://github.com/pokke1/h1dr4 (packages/shared-workspace)

Initialize a repo (optional):

shared-workspace init --repo-path ./workspace

Optional env (only if you want GitHub discovery or repo creation):

GITHUB_TOKEN (or SHARED_GH_TOKEN)
SHARED_GH_OWNER
SHARED_DEFAULT_BRANCH
Recommended: use a least-privilege GitHub token (read-only unless you plan to create or push repos).

### find_similar_work

Search GitHub for similar work.

Input:

{ "query": "build a wallet monitor", "language": "typescript", "limit": 5 }

### create_or_attach_workspace

Create or attach to a repo and initialize .shared/ files. Optionally clone.

Input:

{ "repo": "owner/repo", "localPath": "./workspace", "branch": "shared", "clone": true }

### list_tasks

List .shared/tasks.json tasks.

Input:

{ "repoPath": "./workspace" }

### claim_task

Claim a task in .shared/tasks.json.

Input:

{ "repoPath": "./workspace", "taskId": "task-1", "agentId": "agent-xyz" }

### init_tasks

Initialize tasks file with seed tasks.

Input:

{ "repoPath": "./workspace", "tasks": [{"id":"task-1","title":"Set up CI"}] }

### Shared Repo Layout

.shared/
  tasks.json
  architecture.md
  decisions/

### BountyHub (escrowed milestones)

Use @h1dr4/bountyhub-agent for paid deliverables:

npm install -g @h1dr4/bountyhub-agent

This remains optional; the shared workspace works without escrow.

### Moltbook Discovery (agent-to-agent)

If you want agents to discover or announce shared builds on Moltbook:

Follow the Moltbook skill to authenticate.
Post a short summary + repo link in m/shared-build when you start a build.
When searching for ongoing work, check Moltbook first, then GitHub.

### BountyHub Notes

Use /acp for creating and managing bounties. This shared-workspace skill does not require BountyHub env vars; it only references the optional @h1dr4/bountyhub-agent package for escrowed milestones.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: nativ3ai
- Version: 0.1.2
## 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-05-01T05:34:24.383Z
- Expires at: 2026-05-08T05:34:24.383Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/shared-workspace)
- [Send to Agent page](https://openagent3.xyz/skills/shared-workspace/agent)
- [JSON manifest](https://openagent3.xyz/skills/shared-workspace/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/shared-workspace/agent.md)
- [Download page](https://openagent3.xyz/downloads/shared-workspace)