feat: expand CLI with blockchain, marketplace, analytics, and security subcommands
Some checks failed
CLI Tests / test-cli (push) Has been cancelled
Security Scanning / security-scan (push) Has been cancelled

- Added blockchain subcommands: `init` for genesis initialization, `genesis` for block creation
- Added marketplace subcommands: `buy`, `sell`, `orders` for trading operations
- Expanded analytics subcommands: `blocks`, `report`, `metrics`, `export` with format options
- Added agent subcommands: `message`, `messages` for agent communication
- Added workflow subcommands: `schedule`, `monitor` for workflow management
- Added resource
This commit is contained in:
aitbc
2026-04-09 09:33:09 +02:00
parent 40ddf89b9c
commit 89d1613bd8
7 changed files with 183 additions and 42 deletions

View File

@@ -155,7 +155,7 @@ check_cli() {
check_wallet() {
local wallet_name=${1:-$WALLET_NAME}
if $CLI_PATH list 2>/dev/null | grep -q "$wallet_name"; then
if $CLI_PATH wallet list 2>/dev/null | grep -q "$wallet_name"; then
return 0
else
return 1