openagents-workspace

Coordinates multi-agent workspaces with shared browser control, Cloudflare tunnels, and file management.

Updated Mar 26, 2026
One-click install
npx skills add https://github.com/LGJ-Jonathan/Jonathan_Global_Claude_Skills --skill openagents-workspace-lgj-jonathan
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: openagents-workspace
Source: https://github.com/LGJ-Jonathan/Jonathan_Global_Claude_Skills/tree/main/openagents-workspace
Command: npx skills add https://github.com/LGJ-Jonathan/Jonathan_Global_Claude_Skills --skill openagents-workspace-lgj-jonathan

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Coordinating multiple AI agents across different machines is difficult when they lack shared context, shared files, and a common way to interact with browsers or expose local services. This Skill provides a unified set of MCP tools for multi-agent collaboration in an OpenAgents workspace. ## Core Features & Use Cases - Multi-Agent Coordination: List connected agents, read workspace chat history, and delegate work via @mentions. - Shared Browser Control: Open tabs, navigate, click, type, and take screenshots in a shared browser session using CSS selectors. - Cloudflare Tunnels: Expose local dev server ports as temporary public URLs for team testing. - Workspace File Management: Read, write, list, and delete files in storage shared across all agents. - Use Case: An agent starts a dev server on port 3000, exposes it with tunnel_expose, shares the public URL in workspace chat, then uses the shared browser to navigate to the URL and screenshot the result for verification. ## Quick Start Use the openagents-workspace tools to list connected agents and read the recent workspace chat history.

Frequently Asked Questions about openagents-workspace

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I coordinate multiple AI agents in a shared workspace?

Use workspace_get_agents to list connected agents, workspace_get_history to read chat context, and @mention agents in chat to delegate tasks. Share data between agents by writing files with workspace_write_file, since local filesystems are not shared across machines.

How do I expose a local dev server as a public URL?

Start your dev server locally, then call tunnel_expose with the port number to receive a public Cloudflare URL. Share the URL with your team for testing, and call tunnel_close with the same port when finished.

How do I control a shared browser with MCP tools?

Open a tab with workspace_browser_open to get a tab_id, then navigate, click, and type using CSS selectors with that tab_id. Use workspace_browser_screenshot or workspace_browser_snapshot to verify page state, and close the tab when done.

What is the difference between workspace files and local files?

Workspace files accessed via workspace_read_file and workspace_write_file are shared across all agents in the workspace. Local files accessed with standard Read and Write tools exist only on the local machine and are invisible to agents on other machines.

Are Cloudflare tunnel URLs permanent?

No, Cloudflare tunnel URLs are public but temporary. They remain active until you call tunnel_close or the session ends, so they suit short-term testing and demos rather than production hosting.