Workspace Praxis

Shares files and delegates tasks between agents via a common workspace.

1|Updated Feb 25, 2026
One-click install
npx skills add https://github.com/nomeforme/connectome-monorepo --skill workspace-praxis
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: Workspace Praxis
Source: https://github.com/nomeforme/connectome-monorepo/tree/main/skills/agent-spawning/collaboration
Command: npx skills add https://github.com/nomeforme/connectome-monorepo --skill workspace-praxis

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Shared filesystem, file attachments (attach_file), delegation, and artifact management. Read this skill when creating files, generating images, or sending file output to users.

Core Features & Use Cases

  • Shared workspace mounted at /workspace/shared/ — a Docker volume shared across agents for immediate readability of artifacts.
  • Delegation branches context from your stream to a forked workspace, enabling parallel and isolated task execution.
  • Attachments and artifacts: files created during tasks live in /workspace/shared/ and can be attached to messages for delivery.

Quick Start

Create a shared artifact in /workspace/shared, then delegate subtasks to other agents to collaborate on the work.

Frequently Asked Questions about Workspace Praxis

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

FAQPage Schema
How do I share files across agents without polluting the original context?

To share files across agents without polluting the original context, use a shared workspace mounted at /workspace/shared/ and enable delegation to branch context into a forked workspace for isolated task execution.

What is the best way to attach generated artifacts to chat messages?

Attaching generated artifacts to chat messages requires deterministic file creation in /workspace/shared/ and using attachment workflows to deliver those files directly to the user.

How do I delegate tasks to other agents for parallel execution?

Delegating tasks to other agents for parallel execution involves branching context from your stream to a forked workspace, which allows tasks to be distributed and executed in isolation.

Does workflow branching support artifact persistence for auditability?

Workflow branching supports artifact persistence for auditability by ensuring deterministic file creation and attachment workflows, which guarantees reproducibility across distributed agent tasks.

When should I use a shared filesystem for agent collaboration?

You should use a shared filesystem for agent collaboration when creating files, generating images, or sending file output to users, as it provides a Docker volume shared across agents for immediate readability.