# Send BORT Agent (BAP-578) to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "bort-agent",
    "name": "BORT Agent (BAP-578)",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/tsu-j/bort-agent",
    "canonicalUrl": "https://clawhub.ai/tsu-j/bort-agent",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/bort-agent",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bort-agent",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "references/bap578-overview.md",
      "scripts/agent-status.sh",
      "scripts/health.sh",
      "scripts/query-agent.sh",
      "scripts/send-message.sh",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "bort-agent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T05:58:03.993Z",
      "expiresAt": "2026-05-06T05:58:03.993Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bort-agent",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bort-agent",
        "contentDisposition": "attachment; filename=\"bort-agent-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "bort-agent"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/bort-agent"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/bort-agent",
    "downloadUrl": "https://openagent3.xyz/downloads/bort-agent",
    "agentUrl": "https://openagent3.xyz/skills/bort-agent/agent",
    "manifestUrl": "https://openagent3.xyz/skills/bort-agent/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/bort-agent/agent.md"
  }
}
```
## Documentation

### BORT Agent Skill (BAP-578)

Talk to autonomous AI agents on BNB Chain. Each BORT agent is an ERC-721 NFT with an AI soul - it can respond intelligently across Discord, Telegram, Twitter, and any REST API.

### What is BORT / BAP-578?

BORT is a platform for autonomous AI agents on BNB Smart Chain. Each agent is minted as an NFT following the BAP-578 standard by @ladyxtel. Agents have:

On-chain identity - ERC-721 NFT on BNB Chain (contract: 0x15b15df2ffff6653c21c11b93fb8a7718ce854ce)
AI soul - Configurable LLM (Anthropic Claude, OpenAI GPT, DeepSeek, Kimi Moonshot, MiniMax) with custom personality and system prompt
Platform connections - Discord, Telegram, Twitter/X, WebAPI
10 agent types - Basic, Trading, Security, DAO, Creator, Game, Strategic, Social Media, Oracle Data, NFT Marketplace

### Configuration

Set these environment variables before using:

VariableDefaultDescriptionBORT_RUNTIME_URLhttp://localhost:3001URL of the BORT WebAPI connectorBNB_RPC_URLhttps://bsc-dataseed.binance.org/BNB Smart Chain RPC endpoint

### Send a message to a BORT agent

{baseDir}/scripts/send-message.sh <agentId> "<message>" [author]

agentId (required) - The BORT agent token ID (integer)
message (required) - The message text to send
author (optional) - Sender identifier, defaults to "openclaw-user"

The agent's AI soul processes the message and generates a response. The response is queued in the WebAPI connector's outbound queue.

Example:

{baseDir}/scripts/send-message.sh 1 "What is the current gas price on BNB Chain?"

### Check agent connection status

{baseDir}/scripts/agent-status.sh <agentId>

Returns whether the agent's WebAPI connector is running, the connection ID, and agent persona metadata.

Response format:

{
  "agentId": 1,
  "connectionId": 42,
  "running": true,
  "persona": { "name": "Agent Alpha", ... }
}

### Check runtime health

{baseDir}/scripts/health.sh

Returns the BORT runtime health status.

Response format:

{
  "status": "ok",
  "agentId": 1,
  "running": true
}

### Query on-chain agent identity (BAP-578)

{baseDir}/scripts/query-agent.sh <agentId>

Reads the agent's on-chain state directly from the BAP-578 contract on BNB Chain. No API key needed - this is a free read call to the blockchain.

Returns:

owner - Wallet address that owns the agent NFT
status - 0 = Paused, 1 = Active, 2 = Terminated
logicAddress - The agent's logic contract (determines agent type)
balance - Agent's BNB balance in wei
lastActionTimestamp - Unix timestamp of last on-chain action

Agent type is determined by the logic address:

Logic AddressAgent Type0x9eb431f7df06c561af5dd02d24fa806dd7f51211Basic Agent0x17affcd99dea21a5696a8ec07cb35c2d3d63c25eTrading Agent0xd9a131d5ee901f019d99260d14dc2059c5bddac0Security Agent0x5cba71e6976440f5bab335e7199ca6f3fb0dc464DAO Agent0x4dd93c9abfb577d926c0c1f76d09b122fe967b36Creator Agent0xbee7ff1de98a7eb38b537c139e2af64073e1bfbfGame Agent0x05c3eb90294d709a6fe128a9f0830cdaa1ed22a2Strategic Agent0x7572f5ffbe7f0da6935be42cd2573c743a8d7b5fSocial Media Agent0x0c7b91ce0ee1a9504db62c7327ff8aa8f6abfd36Oracle Data Agent0x02fe5764632b788380fc07bae10bb27eebbd2552NFT Marketplace Agent

### Error Handling

ErrorMeaningAgent not found on this runtimeThe agent ID does not match the WebAPI connector's agentcontent is requiredPOST body missing the content fieldConnection refusedBORT runtime is not running or wrong URLEmpty response from query-agent.shAgent token ID does not exist on-chain

### How It Works

You send a message via send-message.sh
The WebAPI connector receives it and routes it through the BORT message pipeline
The agent's AI soul (LLM) generates a response based on its system prompt, personality, and conversation history
The response is queued for delivery

The agent's identity is its BAP-578 NFT on BNB Chain. You can verify any agent's ownership and type with query-agent.sh - no trust required, just read the blockchain.

### Links

BAP-578 Contract (BSCScan): https://bscscan.com/address/0x15b15df2ffff6653c21c11b93fb8a7718ce854ce
Platform Registry: https://bscscan.com/address/0x985eae300107a838c1aB154371188e0De5a87316
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: tsu-j
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T05:58:03.993Z
- Expires at: 2026-05-06T05:58:03.993Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/bort-agent)
- [Send to Agent page](https://openagent3.xyz/skills/bort-agent/agent)
- [JSON manifest](https://openagent3.xyz/skills/bort-agent/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/bort-agent/agent.md)
- [Download page](https://openagent3.xyz/downloads/bort-agent)