🎁 Get the FREE AI Skills Starter Guide β€” Subscribe β†’
BytesAgainBytesAgain
πŸ¦€ ClawHub

Team Projects

by @maverick-software

Multi-agent project management with task boards, @-mention routing, WBS, and orchestrated team collaboration. Includes a Control UI plugin tab with project d...

Versionv1.3.0
Downloads1,007
TERMINAL
clawhub install team-projects

πŸ“– About This Skill


name: team-projects description: "Multi-agent project management with task boards, @-mention routing, WBS, and orchestrated team collaboration. Includes a Control UI plugin tab with project dashboard and a right-edge Team Chat drawer for live activity. Enables a coordinator agent to plan projects, break down work into phases and tasks, assign to specialist agents, dispatch via sessions_spawn, and track progress to completion. Use when: (1) managing work across multiple OpenClaw agents, (2) creating project plans with work breakdown structures, (3) assigning and tracking tasks across agents, (4) coordinating multi-agent workflows with dependencies, (5) running team-based projects with progress tracking." metadata: { "openclaw": { "emoji": "πŸ“‹", "requires": { "config": { "tools.agentToAgent.enabled": true, "agents.list": "at least 2 agents configured" } } } }

Team Projects πŸ“‹

Multi-agent project management for OpenClaw. Run agent teams that plan, assign, execute, and track work together. Includes a Control UI plugin tab for visual project tracking and a right-edge Team Chat drawer for live agent activity.

Overview

This skill enables a coordinator agent to manage projects across multiple specialist agents:

User β†’ Coordinator (Koda) β†’ dispatches tasks via sessions_spawn
                            β”œβ”€β”€ @researcher β†’ web research, data analysis
                            β”œβ”€β”€ @coder β†’ writing code, building features
                            β”œβ”€β”€ @writer β†’ copy, documentation, content
                            └── ... any configured agent

Each agent works independently with their own tools and workspace. The coordinator tracks progress, manages dependencies, and advances the project.

UI Components

1. Projects Tab (sidebar)

A full project dashboard registered as a plugin tab in the Control sidebar under the "Control" group. Shows project cards, task boards with phase sections, team overview, and progress stats.

2. Team Chat Drawer (right edge)

A slide-out panel accessible from a vertical "Team" tab fixed to the right edge of the screen. Shows:
  • Live agent activity feed (sub-agent sessions, messages)
  • Project progress bar
  • Task overview (collapsible)
  • Quick message input to send commands
  • Installation

    Step 1: Config Prerequisites

    Add to openclaw.json:

    {
      "tools": {
        "agentToAgent": {
          "enabled": true,
          "allow": ["*"]
        }
      }
    }
    

    Add subagents.allowAgents to the coordinator agent's list entry (NOT on agents.defaults):

    {
      "agents": {
        "list": [
          {
            "id": "main",
            "default": true,
            "name": "Koda",
            "subagents": {
              "allowAgents": ["*"]
            }
          }
        ]
      }
    }
    

    > ⚠️ Critical: allowAgents must be on the agent's own entry in agents.list. Setting it on agents.defaults.subagents does NOT work. The code reads resolveAgentConfig(cfg, requesterAgentId)?.subagents?.allowAgents which resolves the per-agent config, not defaults.

    Step 2: Gateway Plugin Installation (for Projects tab)

    The Projects tab requires installing a gateway plugin. This involves 4 registration points in the OpenClaw source:

    #### 2a. Plugin SDK entry

    Create src/plugin-sdk/team-projects.ts:

    export { emptyPluginConfigSchema } from "../plugins/config-schema.js";
    export type {
      OpenClawPluginApi,
      PluginViewRegistration,
    } from "../plugins/types.js";
    

    #### 2b. Plugin extension

    Create extensions/team-projects/openclaw.plugin.json:

    {
      "id": "team-projects",
      "configSchema": {
        "type": "object",
        "additionalProperties": false,
        "properties": {}
      }
    }
    

    Create extensions/team-projects/index.ts β€” see gateway-plugin/index.ts.

    #### 2c. Register in build pipeline (4 files)

    tsdown.config.ts β€” Add "team-projects" to the pluginSdkEntrypoints array.

    src/plugins/loader.ts β€” Add to the pluginSdkScopedAliasEntries array:

    {
      subpath: "team-projects",
      srcFile: "team-projects.ts",
      distFile: "team-projects.js",
    },
    

    scripts/write-plugin-sdk-entry-dts.ts β€” Add "team-projects" to the entrypoints array.

    package.json β€” Add to the exports map:

    "./plugin-sdk/team-projects": {
      "types": "./dist/plugin-sdk/team-projects.d.ts",
      "default": "./dist/plugin-sdk/team-projects.js"
    },
    

    #### 2d. Enable in config

    {
      "plugins": {
        "allow": ["telegram", "discord", "team-projects"],
        "entries": {
          "team-projects": {
            "enabled": true
          }
        }
      }
    }
    

    Step 3: UI View Installation

    #### 3a. Team Projects view

    Copy gateway-plugin/team-projects-view.ts to ui/src/ui/views/team-projects.ts.

    #### 3b. Team Chat Drawer

    Copy gateway-plugin/team-chat-drawer.ts to ui/src/ui/views/team-chat-drawer.ts.

    > ⚠️ Critical: No Shadow DOM β€” The OpenClaw app uses createRenderRoot() { return this; }, so Lit css tagged templates are NOT applied. All styles must be embedded as inline