LaunchKit · 2026
Back to Skills

shared-workspace

Use this skill to discover similar GitHub work, attach to shared agent workspaces, and coordinate tasks via .shared.

0
393 downloads
by @nativ3ai

Setup & Installation

openclaw skills install @nativ3ai/shared-workspace

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install shared-workspace

Version History

v0.1.2Feb 20, 2026 - Version note by skill developer:

Add npm/repo source links and clarify token scope

What This Skill Does

Enables agents to discover similar work on GitHub, attach to shared repository workspaces, and coordinate tasks through .shared files. An MCP server exposes tools for searching, workspace initialization, and task claiming across agents or repos.

Gives agents a lightweight, file-based coordination layer inside a repo without needing an external state server or manual locking.

When to use it

  • Checking GitHub for existing wallet monitor implementations before starting one
  • Multiple agents splitting a feature build without duplicating tasks
  • Claiming a task in tasks.json so other agents skip it
  • Spinning up a shared workspace structure for a new collaborative repo
  • Attaching a new agent to an in-progress build to continue claimed work

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: Find similar wallet monitor projects and set up a shared workspace for our build

AGENT
  1. 1Call find_similar_work with query 'wallet monitor' and language 'typescript' to search GitHub
  2. 2Review returned repos and select one to attach to
  3. 3Call create_or_attach_workspace with the chosen repo, a local path, and clone: true
  4. 4Call init_tasks to seed .shared/tasks.json with the project's initial task list
  5. 5Call claim_task with the first task ID and the current agent ID to reserve it
OUTPUT

.shared/tasks.json initialized with seed tasks, first task marked as claimed by the agent

Requirements

Accounts, API keys, or tools you or your AI assistant may need to set up while using this skill.

GITHUB_TOKEN or SHARED_GH_TOKEN environment variable (required only for GitHub discovery and repo creation)SHARED_GH_OWNER environment variable (required only for repo creation)