Skip to main content
在 Manus 中运行任何 Skill
一键导入
GitHub 仓库

bron-skills

bron-skills 收录了来自 bronlabs 的 5 个 skills,并提供仓库级职业覆盖和站内 skill 详情页。

已收集 skills
5
Stars
0
更新
2026-06-03
Forks
1
职业覆盖
2 个职业分类 · 已分类 100%
仓库浏览

这个仓库中的 skills

bron-address-book
软件开发工程师

Manage saved addresses (the address book) on the Bron treasury platform. Use when the user wants to list saved addresses, save a new one, delete one, or look up a record id to use as `toAddressBookRecordId` in a withdrawal. State-changing actions (create, delete) require human-in-the-loop confirmation.

2026-06-03
bron-tx-send
软件开发工程师

Create, approve, decline, or cancel transactions on the Bron treasury platform. Use whenever the user wants to send funds, broadcast a withdrawal, allowance, bridge, stake/unstake operation, or move money between accounts. Drives the Bron transaction state machine (signing-required → signing → signed → broadcasted → completed) end-to-end. Mandatory human-in-the-loop on every state-changing call. Live state via the long-poll `bron_tx_wait_for_state` MCP tool (universal) or `bron tx subscribe` + Monitor (CLI; preferred for multi-tx fan-out).

2026-06-03
bron-balances-read
软件开发工程师

Read account balances on the Bron treasury platform. Use when the user asks "what's in account X", "show me balances", "what's our USD position", "list all non-zero positions", etc. Read-only — no state changes, no confirmation needed. Knows how to project to specific columns, fold USD totals in via `--embed prices`, and pipe to jq for custom aggregations.

2026-06-01
bron-tx-read
软件开发工程师

Read and analyse transactions on the Bron treasury platform. Use when the user asks "show me my last transactions", "what was the volume last week", "what did this swap actually trade", "find the deposit from address X", "summarise activity for account Y", "did this withdrawal complete?", etc. Read-only — no state changes, no confirmation needed. Knows the transaction-vs-events mental model (transactions are sagas, events carry real money movement) and how to drive `bron tx list` / `bron tx events` with `--embed events` for accurate per-asset / per-USD analysis. For state changes (creating, approving, cancelling) use `bron-tx-send`. For live streaming, use `bron-tx-subscribe`.

2026-06-01
bron-tx-subscribe
网络与计算机系统管理员

Stream live transaction updates from the Bron treasury platform in real time via the bron CLI's WebSocket transport. Use when the user wants to "watch" many transactions in parallel, react to status changes across the workspace, build a live dashboard, or run an operator-style session over several minutes. For single-tx wait-for-completion, prefer the `bron_tx_wait_for_state` MCP tool from `bron-tx-send` — it's universal across MCP clients and doesn't need a bash background process. Same filters as `bron tx list`. Read-only, transparent auto-reconnect, no state changes. Pair with the `Monitor` tool so each pushed frame wakes the agent immediately — no polling, no manual `tail`.

2026-05-02