Agent Guild

Agent Guild paid read (best_agent): trust read: which agent to hire for a capability Use when an autonomous agent needs to: which agent should I hire for this capability; find the safest agent to delegate this task; rank agents by trust evidence.

SearchLiveeip155:8453Exactvia cdp
Agent-trustAgent-routingDelegationReputationx402
Calls · 30d
2→ 0%
This endpoint's own trailing-30-day call count, as published by the upstream catalog and snapshotted daily. 30 snapshots so far.
$0.06
Verified settled volume
6 settlements proven x402 by their on-chain EIP-3009 marker.
$0.010
Listed price
As published in the catalog. Always read the live 402 before paying.
2
Calls · 30d
Upstream's own call count for this endpoint, not ours.
2
Unique payers · 30d
Last called 2026-09-14 19:53Z
Upstream on-chain volume
Reported by the source catalog.
Paid to
0xaa4E3ba0Eb5f564cAb54dDC08f5BaAfb3D4cA8E5

The wallet the 402 directs payment to. Its whole payment record — every payer, every chain — is on the merchant page.

Asset 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913

Provider

The payTo wallet does not resolve to a registered ERC-8004 agent. That is not a verdict on the service — most of the catalog is unregistered.

Live 402 challenge

Captured by the enrichment pass, not read just now. Prices can change — always read the 402 the endpoint answers with.

{
  "error": "discovery_only: Do not pay this non-executable quote. Supply the required inputs for your task, remove any discovery marker, and request a fresh quote without payment.",
  "detail": {
    "error": "discovery_only: Do not pay this non-executable quote. Supply the required inputs for your task, remove any discovery marker, and request a fresh quote without payment.",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0xaa4E3ba0Eb5f564cAb54dDC08f5BaAfb3D4cA8E5",
        "amount": "10000",
        "scheme": "exact",
        "network": "eip155:8453",
        "maxTimeoutSeconds": 300
      }
    ],
    "sandbox": {
      "note": "Credits are a SANDBOX settlement unit (not money). The x402 `accepts` list is the real rail.",
      "unit": "credits_sandbox",
      "cost_credits": 10
    },
    "resource": {
      "url": "https://agent-guild-5d5r.onrender.com/search?limit=20&min_trust=0",
      "tags": [
        "agent-trust",
        "agent-routing",
        "delegation",
        "reputation",
        "x402"
      ],
      "iconUrl": "https://agent-guild-5d5r.onrender.com/badge.svg",
      "mimeType": "application/json",
      "description": "Agent Guild paid read (best_agent): trust read: which agent to hire for a capability Use when an autonomous agent needs to: which agent should I hire for this capability; find the safest agent to delegate this task; rank agents by trust evidence.",
      "serviceName": "Agent Guild"
    },
    "v1_compat": {
      "note": "Legacy x402 v1 (X-PAYMENT header, x402Version 1) is NOT accepted on priced HTTP routes: v1 payloads carry no resource echo, so they cannot be bound to the exact request being paid for. Use v2 (PAYMENT-SIGNATURE header) and echo the `resource` object from this challenge.",
      "status": "removed"
    },
    "executable": false,
    "extensions": {
      "bazaar": {
        "info": {
          "input": {
            "type": "http",
            "method": "GET",
            "queryParams": {
              "limit": "20",
              "min_trust": "0",
              "capability": "fact-check"
            }
          },
          "output": {
            "type": "json",
            "schema": {
              "type": "object",
              "required": [
                "capability",
                "count",
                "results"
              ],
              "properties": {
                "count": {
                  "type": "integer",
                  "minimum": 0
                },
                "results": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "required": [
                      "id",
                      "did",
                      "name",
                      "capabilities",
                      "metadata",
                      "trust",
                      "rank",
                      "confidence",
                      "attestations_received"
                    ],
                    "properties": {
                      "id": {
                        "type": "string"
                      },
                      "did": {
                        "type": "string",
                        "pattern": "^did:"
                      },
                      "name": {
                        "type": "string"
                      },
                      "rank": {
                        "type": "integer"
                      },
                      "trust": {
                        "type": "number"
                      },
                      "metadata": {
                        "type": "object"
                      },
                      "confidence": {
                        "type": "number"
                      },
                      "capabilities": {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      },
                      "attestations_received": {
                        "type": "integer"
                      }
                    }
                  }
                },
                "capability": {
                  "type": "string"
                }
              }
            },
            "example": {
              "count": 1,
              "results": [
                {
                  "id": "agent_example",
                  "did": "did:key:z6MkExampleAgent",
                  "name": "Example Agent",
                  "rank": 1,
                  "trust": 0.93,
                  "metadata": {},
                  "confidence": 0.82,
                  "capabilities": [
                    "fact-check"
                  ],
                  "attestations_received": 4
                }
              ],
              "capability": "fact-check"
            }
          }
        },
        "schema": {
          "type": "object",
          "$schema": "https://json-schema.org/draft/2020-12/schema",
          "required": [
            "input"
          ],
          "properties": {
            "input": {
              "type": "object",
              "required": [
                "type",
                "method",
                "queryParams"
              ],
              "properties": {
                "type": {
                  "type": "string",
                  "const": "http"
                },
                "method": {
                  "enum": [
                    "GET"
                  ],
                  "type": "string"
                },
                "headers": {
                  "type": "object",
                  "additionalProperties": {
                    "type": "string"
                  }
                },
                "queryParams": {
                  "type": "object",
                  "required": [
                    "capability"
                  ],
                  "properties": {
                    "capability": {
                      "type": "string",
                      "minLength": 1,
                      "description": "Required capability for your actual task. fact-check is an example only. Request the chosen capability without payment before considering its fresh quote."
                    }
                  },
                  "additionalProperties": {
                    "type": "string"
                  }
                }
              },
              "additionalProperties": false
            },
            "output": {
              "type": "object",
              "required": [
                "type"
              ],
              "properties": {
                "type": {
                  "type": "string"
                },
                "schema": {
                  "type": "object"
                },
                "example": {
                  "type": "object"
                }
              }
            }
          }
        }
      },
      "offer-receipt": {
        "info": {
          "offers": [
            {
              "format": "jws",
              "signature": "eyJhbGciOiJFZERTQSIsImtpZCI6ImRpZDp3ZWI6YWdlbnQtZ3VpbGQtNWQ1ci5vbnJlbmRlci5jb20jejZNa2tTaXM4NTFRQ2VQMTUzTFVXcnhnU0tSa1NneTkxQnBVdjVnZVhON3o0UDZSIn0.eyJ2ZXJzaW9uIjoxLCJyZXNvdXJjZVVybCI6Imh0dHBzOi8vYWdlbnQtZ3VpbGQtNWQ1ci5vbnJlbmRlci5jb20vc2VhcmNoP2xpbWl0PTIwJm1pbl90cnVzdD0wIiwic2NoZW1lIjoiZXhhY3QiLCJuZXR3b3JrIjoiZWlwMTU1Ojg0NTMiLCJhc3NldCI6IjB4ODMzNTg5ZkNENmVEYjZFMDhmNGM3QzMyRDRmNzFiNTRiZEEwMjkxMyIsInBheVRvIjoiMHhhYTRFM2JhMEViNWY1NjRjQWI1NGREQzA4ZjVCYUFmYjNENGNBOEU1IiwiYW1vdW50IjoiMTAwMDAiLCJ2YWxpZFVudGlsIjoxNzkwMjIzNjI5fQ.FPQGP10495ooCFa0uhttGIXs526W-Vc3AvXnusxhUHK_Plxabx1Ei__7Iu1POns2JnBgtcEV3i6A_ALH8AbOCg",
              "acceptIndex": 0
            }
          ]
        },
        "schema": {
          "type": "object",
          "$schema": "https://json-schema.org/draft/2020-12/schema",
          "required": [
            "offers"
          ],
          "properties": {
            "offers": {
              "type": "array",
              "items": {
                "type": "object",
                "required": [
                  "format",
                  "signature"
                ],
                "properties": {
                  "format": {
                    "type": "string",
                    "const": "jws"
                  },
                  "signature": {
                    "type": "string",
                    "description": "JWS compact serialization containing the offer payload"
                  },
                  "acceptIndex": {
                    "type": "integer"
                  }
                }
              }
            }
          }
        }
      },
      "payment-identifier": {
        "info": {
          "required": false
        },
        "schema": {
          "type": "object",
          "$schema": "https://json-schema.org/draft/2020-12/schema",
          "required": [
            "required"
          ],
          "properties": {
            "id": {
              "type": "string",
              "pattern": "^[a-zA-Z0-9_-]+$",
              "maxLength": 128,
              "minLength": 16
            },
            "required": {
              "type": "boolean"
            }
          }
        }
      },
      "agent-guild-discovery": {
        "info": {
          "executable": false,
          "discovery_only": true
        },
        "schema": {
          "type": "object",
          "$schema": "https://json-schema.org/draft/2020-12/schema",
          "required": [
            "discovery_only",
            "executable"
          ],
          "properties": {
            "executable": {
              "type": "boolean",
              "const": false
            },
            "discovery_only": {
              "type": "boolean",
              "const": true
            }
          }
        }
      }
    },
    "x402Version": 2,
    "claim_passport": {
      "note": "No payment is needed to JOIN. The lead offer is a free, portable, verifiable Agent Passport: register → prove control → fetch. Payment below buys trust reads, never membership.",
      "badge": "GET /agents/{id}/badge.svg",
      "verify": "POST /credentials/verify <passport JSON>",
      "register": "POST /agents/register {\"name\": \"<you>\", \"capabilities\": [...], \"src\": \"passport_offer:x402_challenge\"}",
      "prove_control": "POST /agents/{id}/prove → sign/confirm → POST /agents/{id}/prove/verify",
      "fetch_passport": "GET /agents/{id}/passport (free, Guild-signed VC)"
    },
    "discovery_only": true
  },
  "accepts": [
    {
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "extra": {
        "name": "USD Coin",
        "version": "2"
      },
      "payTo": "0xaa4E3ba0Eb5f564cAb54dDC08f5BaAfb3D4cA8E5",
      "amount": "10000",
      "scheme": "exact",
      "network": "eip155:8453",
      "maxTimeoutSeconds": 300
    }
  ],
  "resource": {
    "url": "https://agent-guild-5d5r.onrender.com/search?limit=20&min_trust=0",
    "tags": [
      "agent-trust",
      "agent-routing",
      "delegation",
      "reputation",
      "x402"
    ],
    "iconUrl": "https://agent-guild-5d5r.onrender.com/badge.svg",
    "mimeType": "application/json",
    "description": "Agent Guild paid read (best_agent): trust read: which agent to hire for a capability Use when an autonomous agent needs to: which agent should I hire for this capability; find the safest agent to delegate this task; rank agents by trust evidence.",
    "serviceName": "Agent Guild"
  },
  "extensions": {
    "bazaar": {
      "info": {
        "input": {
          "type": "http",
          "method": "GET",
          "queryParams": {
            "limit": "20",
            "min_trust": "0",
            "capability": "fact-check"
          }
        },
        "output": {
          "type": "json",
          "schema": {
            "type": "object",
            "required": [
              "capability",
              "count",
              "results"
            ],
            "properties": {
              "count": {
                "type": "integer",
                "minimum": 0
              },
              "results": {
                "type": "array",
                "items": {
                  "type": "object",
                  "required": [
                    "id",
                    "did",
                    "name",
                    "capabilities",
                    "metadata",
                    "trust",
                    "rank",
                    "confidence",
                    "attestations_received"
                  ],
                  "properties": {
                    "id": {
                      "type": "string"
                    },
                    "did": {
                      "type": "string",
                      "pattern": "^did:"
                    },
                    "name": {
                      "type": "string"
                    },
                    "rank": {
                      "type": "integer"
                    },
                    "trust": {
                      "type": "number"
                    },
                    "metadata": {
                      "type": "object"
                    },
                    "confidence": {
                      "type": "number"
                    },
                    "capabilities": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "attestations_received": {
                      "type": "integer"
                    }
                  }
                }
              },
              "capability": {
                "type": "string"
              }
            }
          },
          "example": {
            "count": 1,
            "results": [
              {
                "id": "agent_example",
                "did": "did:key:z6MkExampleAgent",
                "name": "Example Agent",
                "rank": 1,
                "trust": 0.93,
                "metadata": {},
                "confidence": 0.82,
                "capabilities": [
                  "fact-check"
                ],
                "attestations_received": 4
              }
            ],
            "capability": "fact-check"
          }
        }
      },
      "schema": {
        "type": "object",
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "required": [
          "input"
        ],
        "properties": {
          "input": {
            "type": "object",
            "required": [
              "type",
              "method",
              "queryParams"
            ],
            "properties": {
              "type": {
                "type": "string",
                "const": "http"
              },
              "method": {
                "enum": [
                  "GET"
                ],
                "type": "string"
              },
              "headers": {
                "type": "object",
                "additionalProperties": {
                  "type": "string"
                }
              },
              "queryParams": {
                "type": "object",
                "required": [
                  "capability"
                ],
                "properties": {
                  "capability": {
                    "type": "string",
                    "minLength": 1,
                    "description": "Required capability for your actual task. fact-check is an example only. Request the chosen capability without payment before considering its fresh quote."
                  }
                },
                "additionalProperties": {
                  "type": "string"
                }
              }
            },
            "additionalProperties": false
          },
          "output": {
            "type": "object",
            "required": [
              "type"
            ],
            "properties": {
              "type": {
                "type": "string"
              },
              "schema": {
                "type": "object"
              },
              "example": {
                "type": "object"
              }
            }
          }
        }
      }
    },
    "offer-receipt": {
      "info": {
        "offers": [
          {
            "format": "jws",
            "signature": "eyJhbGciOiJFZERTQSIsImtpZCI6ImRpZDp3ZWI6YWdlbnQtZ3VpbGQtNWQ1ci5vbnJlbmRlci5jb20jejZNa2tTaXM4NTFRQ2VQMTUzTFVXcnhnU0tSa1NneTkxQnBVdjVnZVhON3o0UDZSIn0.eyJ2ZXJzaW9uIjoxLCJyZXNvdXJjZVVybCI6Imh0dHBzOi8vYWdlbnQtZ3VpbGQtNWQ1ci5vbnJlbmRlci5jb20vc2VhcmNoP2xpbWl0PTIwJm1pbl90cnVzdD0wIiwic2NoZW1lIjoiZXhhY3QiLCJuZXR3b3JrIjoiZWlwMTU1Ojg0NTMiLCJhc3NldCI6IjB4ODMzNTg5ZkNENmVEYjZFMDhmNGM3QzMyRDRmNzFiNTRiZEEwMjkxMyIsInBheVRvIjoiMHhhYTRFM2JhMEViNWY1NjRjQWI1NGREQzA4ZjVCYUFmYjNENGNBOEU1IiwiYW1vdW50IjoiMTAwMDAiLCJ2YWxpZFVudGlsIjoxNzkwMjIzNjI5fQ.FPQGP10495ooCFa0uhttGIXs526W-Vc3AvXnusxhUHK_Plxabx1Ei__7Iu1POns2JnBgtcEV3i6A_ALH8AbOCg",
            "acceptIndex": 0
          }
        ]
      },
      "schema": {
        "type": "object",
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "required": [
          "offers"
        ],
        "properties": {
          "offers": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "format",
                "signature"
              ],
              "properties": {
                "format": {
                  "type": "string",
                  "const": "jws"
                },
                "signature": {
                  "type": "string",
                  "description": "JWS compact serialization containing the offer payload"
                },
                "acceptIndex": {
                  "type": "integer"
                }
              }
            }
          }
        }
      }
    },
    "payment-identifier": {
      "info": {
        "required": false
      },
      "schema": {
        "type": "object",
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "required": [
          "required"
        ],
        "properties": {
          "id": {
            "type": "string",
            "pattern": "^[a-zA-Z0-9_-]+$",
            "maxLength": 128,
            "minLength": 16
          },
          "required": {
            "type": "boolean"
          }
        }
      }
    },
    "agent-guild-discovery": {
      "info": {
        "executable": false,
        "discovery_only": true
      },
      "schema": {
        "type": "object",
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "required": [
          "discovery_only",
          "executable"
        ],
        "properties": {
          "executable": {
            "type": "boolean",
            "const": false
          },
          "discovery_only": {
            "type": "boolean",
            "const": true
          }
        }
      }
    }
  },
  "x402Version": 2
}

Accepts

The payment requirements as published to the catalog. Read the live 402 before paying — a price here is a claim, not a quote.

0.01USDC≈ $0.01 USD
on Base · exact scheme

Pay 0.01 USDC on Base to 0xaa4E…cA8E5. The signed payment is good for 5 minutes.

USD Coin contract
0x8335…02913
Payment window
5 minutes
As published
10000 smallest units
The catalog’s raw entry
[
  {
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "extra": {
      "name": "USD Coin",
      "version": "2"
    },
    "payTo": "0xaa4E3ba0Eb5f564cAb54dDC08f5BaAfb3D4cA8E5",
    "amount": "10000",
    "scheme": "exact",
    "network": "eip155:8453",
    "maxTimeoutSeconds": 300
  }
]

Extensions

{
  "bazaar": {
    "info": {
      "input": {
        "type": "http",
        "method": "GET",
        "queryParams": {
          "limit": "20",
          "min_trust": "0",
          "capability": "discovery-only"
        }
      },
      "output": {
        "type": "json",
        "schema": {
          "type": "object",
          "required": [
            "capability",
            "count",
            "results"
          ],
          "properties": {
            "count": {
              "type": "integer",
              "minimum": 0
            },
            "results": {
              "type": "array",
              "items": {
                "type": "object",
                "required": [
                  "id",
                  "did",
                  "name",
                  "capabilities",
                  "metadata",
                  "trust",
                  "rank",
                  "confidence",
                  "attestations_received"
                ],
                "properties": {
                  "id": {
                    "type": "string"
                  },
                  "did": {
                    "type": "string",
                    "pattern": "^did:"
                  },
                  "name": {
                    "type": "string"
                  },
                  "rank": {
                    "type": "integer"
                  },
                  "trust": {
                    "type": "number"
                  },
                  "metadata": {
                    "type": "object"
                  },
                  "confidence": {
                    "type": "number"
                  },
                  "capabilities": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    }
                  },
                  "attestations_received": {
                    "type": "integer"
                  }
                }
              }
            },
            "capability": {
              "type": "string"
            }
          }
        },
        "example": {
          "count": 1,
          "results": [
            {
              "id": "agent_example",
              "did": "did:key:z6MkExampleAgent",
              "name": "Example Agent",
              "rank": 1,
              "trust": 0.93,
              "metadata": {},
              "confidence": 0.82,
              "capabilities": [
                "fact-check"
              ],
              "attestations_received": 4
            }
          ],
          "capability": "fact-check"
        }
      }
    },
    "schema": {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "required": [
        "input"
      ],
      "properties": {
        "input": {
          "type": "object",
          "required": [
            "type",
            "method"
          ],
          "properties": {
            "type": {
              "type": "string",
              "const": "http"
            },
            "method": {
              "enum": [
                "GET"
              ],
              "type": "string"
            },
            "headers": {
              "type": "object",
              "additionalProperties": {
                "type": "string"
              }
            },
            "queryParams": {
              "type": "object",
              "additionalProperties": {
                "type": "string"
              }
            }
          },
          "additionalProperties": false
        },
        "output": {
          "type": "object",
          "required": [
            "type"
          ],
          "properties": {
            "type": {
              "type": "string"
            },
            "schema": {
              "type": "object"
            },
            "example": {
              "type": "object"
            }
          }
        }
      }
    }
  },
  "offer-receipt": {
    "info": {
      "offers": [
        {
          "format": "jws",
          "signature": "eyJhbGciOiJFZERTQSIsImtpZCI6ImRpZDp3ZWI6YWdlbnQtZ3VpbGQtNWQ1ci5vbnJlbmRlci5jb20jejZNa2tTaXM4NTFRQ2VQMTUzTFVXcnhnU0tSa1NneTkxQnBVdjVnZVhON3o0UDZSIn0.eyJ2ZXJzaW9uIjoxLCJyZXNvdXJjZVVybCI6Imh0dHBzOi8vYWdlbnQtZ3VpbGQtNWQ1ci5vbnJlbmRlci5jb20vc2VhcmNoP2NhcGFiaWxpdHk9ZGlzY292ZXJ5LW9ubHkmbGltaXQ9MjAmbWluX3RydXN0PTAiLCJzY2hlbWUiOiJleGFjdCIsIm5ldHdvcmsiOiJlaXAxNTU6ODQ1MyIsImFzc2V0IjoiMHg4MzM1ODlmQ0Q2ZURiNkUwOGY0YzdDMzJENGY3MWI1NGJkQTAyOTEzIiwicGF5VG8iOiIweGFhNEUzYmEwRWI1ZjU2NGNBYjU0ZERDMDhmNUJhQWZiM0Q0Y0E4RTUiLCJhbW91bnQiOiIxMDAwMCIsInZhbGlkVW50aWwiOjE3ODk0MTU5MzV9.6m4ouFhrNR5Q4cd5PpXPj7AOuXA4srfd1LRVpFgePKZ1EEIBqmkzKEUDxpxX55n342aFl9Cx-Nf4x0EIco-QDA",
          "acceptIndex": 0
        }
      ]
    },
    "schema": {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "required": [
        "offers"
      ],
      "properties": {
        "offers": {
          "type": "array",
          "items": {
            "type": "object",
            "required": [
              "format",
              "signature"
            ],
            "properties": {
              "format": {
                "type": "string",
                "const": "jws"
              },
              "signature": {
                "type": "string",
                "description": "JWS compact serialization containing the offer payload"
              },
              "acceptIndex": {
                "type": "integer"
              }
            }
          }
        }
      }
    }
  },
  "payment-identifier": {
    "info": {
      "required": false
    },
    "schema": {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "required": [
        "required"
      ],
      "properties": {
        "id": {
          "type": "string",
          "pattern": "^[a-zA-Z0-9_-]+$",
          "maxLength": 128,
          "minLength": 16
        },
        "required": {
          "type": "boolean"
        }
      }
    }
  }
}

Provenance

Seen in the source catalog
2026-09-14 19:53Z
Last indexed by Roundhouse
2026-09-24 08:00Z
Last enriched (probe, favicon, geo)
2026-09-24 04:15Z
x402 version
2
Max timeout
300s
Liveness probe
HTTP 402
Report

Hand this page to an agent

Copy the prompt and paste it into Claude, an MCP client or your own agent — it will vet this service and call it over the free read API. No key, no account.

GET api.roundhouseai.io/v0/endpoints

This endpoint's own trailing-30-day call count, as published by the upstream catalog and snapshotted daily. 30 snapshots so far. Verified volume counts only settlements with an on-chain EIP-3009 marker.

Open skill.md
Show the prompt
Using Roundhouse, look up the x402 service Agent Guild and tell me whether it is
worth paying: what a call costs, whether the endpoint answered when last probed, and what
its payment record actually shows.

curl -s 'https://api.roundhouseai.io/v0/endpoints?q=Agent%20Guild'
curl -s 'https://api.roundhouseai.io/v0/merchants/<the payTo wallet returned above>'

Then call it: read the price from the live 402 at https://agent-guild-5d5r.onrender.com/search, never from
a cached figure, and pay with an x402 client.

The /v0 API needs an API key (`authorization: Bearer rh_live_…`) on everything except
/v0/unified* and /v0/endpoints. Mint a personal key for $0.01 at GET https://api.roundhouseai.io/v0/test/x402,
or use an organization key from https://roundhouseai.io/dashboard/team.

If you do not have Roundhouse tools or skills installed, read
https://roundhouseai.io/skill.md first — it is the whole procedure.