Agents

Workflow

flowchart TD
    Team(["👥 Team"])

    subgraph Install["① Install agents"]
        direction LR
        I1["Hermes Agent<br/>015-phosphorous"]
        I2["PicoClaw<br/>017-chlorine"]
        I3["OpenClaw<br/>018-argon"]
    end

    subgraph Write["② Write tasks to 000-inbox/task.md"]
        direction LR
        F1["015-phosphorous"]
        F2["017-chlorine"]
        F3["018-argon"]
    end

    subgraph FS["③ Shared file system (000-inbox)"]
        direction LR
        S3[("S3 / Filesync")]
        MCP[("MCP / Fileserver")]
    end

    subgraph PickUp["④ Agents pick up their tasks"]
        direction LR
        A1["Hermes Agent<br/>015-phosphorous"]
        A2["PicoClaw<br/>017-chlorine"]
        A3["OpenClaw<br/>018-argon"]
    end

    Team --> Install
    Install --> Write
    F1 --> FS
    F2 --> FS
    F3 --> FS
    FS --> S3
    FS --> MCP
    S3 --> A1
    MCP --> A2
    S3 --> A3

    classDef agent fill:#dbeafe,stroke:#1e40af,color:#1e3a8a
    classDef file fill:#fef3c7,stroke:#b45309,color:#7c2d12
    classDef iface fill:#ede9fe,stroke:#6d28d9,color:#4c1d95
    class I1,I2,I3,A1,A2,A3 agent
    class F1,F2,F3 file
    class S3,MCP iface