Frequently Asked Questions

Straight answers. No hedging.

How the bot works

Does the bot phone home to botwir3?

No. Zero network calls to botwir3. The spec hash is computed locally. The gate function runs locally. The ledger writes locally. The only network calls go to the connected platform — Coinbase, Alpaca, eBay, whatever got wired up. botwir3 is not in that loop.

If botwir3 goes offline, does the bot stop?

No. botwir3 could cease to exist tomorrow and every downloaded bot keeps running. The bot is a self-contained Node.js package. The spec, the gate, the ledger — all local. The bot never talked to botwir3 after download. There is nothing to disconnect from.

What telemetry gets sent back to botwir3?

None. Zero telemetry. Zero analytics. Zero logs. Zero phone-home. There is no reporting endpoint in the runtime. There is no analytics SDK. There is no crash reporter. Air-gapped is the only mode. There is nothing to turn off because there is nothing to turn on.

Can the discipline layer be separated from the strategy?

Yes. They're separate modules in separate files. agent.ts is strategy logic. gate.ts contains the discipline logic. ledger.ts is the proof record. Remove the gate and the agent runs standalone. Replace the agent and the gate function still runs its comparison. The architecture is compositional.

Will a downloaded bot work forever without a subscription?

Yes. The runtime is TypeScript compiled to JavaScript. It runs on Node 18+. Zero dependencies on botwir3 servers, APIs, or subscription status. No license key. No expiration. No time bomb. A bot downloaded today runs for as long as Node.js exists.

What happens when a third-party API changes?

Platform adapters depend on external APIs that evolve. If Coinbase updates the API, the adapter stub may need updating. botwir3 publishes adapter updates for active subscribers. Non-subscribers can update the adapter independently — the code is open, the interface is documented.

Security and privacy

Does botwir3 store API keys?

No. API keys are entered into a local config file on the machine running the bot. They never leave that machine. botwir3 never sees, transmits, or stores credentials for any platform.

Can botwir3 access the connected trading accounts?

No. botwir3 has no access to any exchange, broker, or marketplace account. The bot runs locally with locally-stored credentials. The connection is between the bot and the platform — botwir3 is not a party to it.

Is the strategy config file encrypted?

The config file is plain JSON stored locally. It can be encrypted at rest using standard disk encryption (FileVault, BitLocker, LUKS). The spec hash inside the file is a SHA-256 fingerprint — if any field changes, the hash comparison fails and the runtime enters HALT state.

Can someone tamper with the bot while it's running?

If the config file is modified while the bot runs, the gate function compares the spec hash on the next cycle. If the hash does not match, the runtime enters HALT state. The user is responsible for monitoring the bot between cycles.

The gate and discipline

What does the gate actually do?

Every cycle, the agent proposes an action. The gate function compares the proposal against the user's configured spec — action type, magnitude, and tolerance band. If the comparison fails, the runtime does not submit the action to the platform adapter. The user is responsible for verifying execution outcomes independently.

Can the gate be bypassed?

Not through the runtime. The agent function returns a proposal. The gate function runs its comparison. The engine function connects them. There is no code path from agent to execution that skips the gate. A developer who modifies the source code takes responsibility for the modified program. botwir3 does not warrant the behavior of modified code.

What does "discipline proven" mean?

Run botwir3 verify. It reads every entry in the ledger and compares: spec hash, action type, magnitude, tolerance, math. If every entry passes every comparison, the verify command reports clean. The user reviews the output and determines whether the log meets their standard.

What happens when the gate rejects a trade?

The rejection is recorded in the ledger with the reason — OUTSIDE_TOLERANCE, ABOVE_MAXIMUM, COOLDOWN_ACTIVE, etc. The runtime continues to the next cycle. Rejections are normal. They indicate the gate function's comparison returned negative for the proposed action against the configured spec. A bot with zero rejections and a bot with many rejections can both be disciplined — discipline means following the configured rules, not never triggering them.

What is HALT?

HALT is a terminal state that stops the runtime from proposing further actions. Causes: spec hash comparison fails (config was modified), execution result doesn't match projection (something went wrong at the platform level), or three consecutive drift periods (the runtime couldn't find a valid action three cycles in a row). The user is responsible for monitoring open positions independently of the runtime's state.

Pricing and builds

What counts as a "build"?

Creating a new strategy or modifying an existing one in the builder. Each compile counts as one build. Downloading a previously compiled config does not count. Running, stopping, or restarting a bot does not count.

What's the difference between the $99 one-off and the $49 platform?

Same builder. Same guides. Same runtime. Same everything. The $99 is for people who want one bot and no subscription. Build it, download it, done. No account. No recurring charge. No relationship.

The $49 platform fee is for people who want to keep building. It unlocks the same experience — permanently — with 3 free builds per month and the option to add monthly bands for more.

Both paths deliver the same wired runtime. The difference is whether the door stays open after.

Do monthly bands stack on top of the platform fee?

Yes. The $49 platform fee is one-time and includes 3 builds per month. Monthly bands add more capacity: $19.99/mo for up to 10, $29.99/mo for up to 25, and so on. Cancel the band anytime and drop back to 3 free builds per month. The platform access never expires.

What if the monthly band gets cancelled?

Every bot already downloaded keeps running. Every config already compiled keeps working. The builder remains accessible at the free 3 builds/month tier. Nothing stops. Nothing expires. Nothing breaks. The band just controls how many new builds happen per month.

Can someone build 100 bots in a month and then cancel?

Yes. All 100 bots run forever. The configs are local files. The runtime is a local binary. There is no kill switch. The subscription pays for builder access and build capacity, not for the right to run previously downloaded bots.

Platforms and guides

How many platforms are supported?

36 setup guides across 13 categories: crypto exchanges, stock brokers, prediction markets, collectibles, auctions, real estate, vehicles, forex, gaming, e-commerce, sports betting, NFTs, and DeFi. Each guide covers API setup, config, troubleshooting, and monitoring recommendations.

Can the bot trade on platforms without a guide?

Yes. The adapter interface is documented. Any developer can write a custom adapter for any platform with an API. The guide just makes it easier. The bot doesn't know or care which adapter is connected — it proposes actions and the gate function runs its comparison. The adapter translates.

Do all platforms support full automation?

No. Some platforms (Coinbase, Alpaca, Binance, Betfair, Uniswap) support full automated execution. Others (eBay, GOAT, sportsbooks, real estate) operate in signal-only mode — the bot identifies opportunities, the human executes. Each guide specifies which mode applies.

Seven files. Auditable in an afternoon.

Still have questions? hello@botwir3.com

botwir3 — Not financial advice. Not a broker. Software.