consensus-tools board

Select active board mode for the CLI config.

Usage

consensus-tools board use <local|remote> [url]

This command updates config only.

Examples

# Use remote mode (and optionally set URL)
consensus-tools board use remote https://api.consensus.tools

# Use local mode in config
consensus-tools board use local

Remote board ID

board use does not set the remote board id. Set it via config:

consensus-tools config set boards.remote.boardId board_all

Important behavior

The standalone consensus-tools command currently performs job/submission/vote operations through the remote backend.

If you select local and then run job commands, you should expect a "local mode not supported yet" error from the standalone CLI.

For local execution, use generated scripts from init:

export CONSENSUS_MODE=local
bash .consensus/api/jobs_post.sh "Test" "desc" "input"

Next steps