From 6aaabcafb236c8d23759358f09c2a7e647d36c18 Mon Sep 17 00:00:00 2001 From: agessaman Date: Sat, 6 Sep 2025 12:07:59 -0700 Subject: [PATCH] Remove outdated bot_cli.py - Remove bot_cli.py as it was incompatible with current architecture - CLI was trying to call non-existent methods on MeshCoreBot class - Add bot_cli.py to .gitignore to prevent future commits - Update README.md to remove CLI references - Bot management can be done through config.ini file editing --- .gitignore | 1 + README.md | 13 ------------- 2 files changed, 1 insertion(+), 13 deletions(-) diff --git a/.gitignore b/.gitignore index c2e363b..017cfb8 100644 --- a/.gitignore +++ b/.gitignore @@ -120,6 +120,7 @@ Thumbs.db config.ini *.db mctomqtt.py +bot_cli.py # Local documentation and development files docs/local/ diff --git a/README.md b/README.md index ccfbfa5..c97941d 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,6 @@ A Python bot that connects to MeshCore mesh networks via serial port or BLE. The - **Scheduled Messages**: Send messages at configured times - **Direct Message Support**: Respond to private messages - **Logging**: Console and file logging with configurable levels -- **CLI Management**: Command-line interface for bot management ## Requirements @@ -100,18 +99,6 @@ colored_output = true # Enable colored console output python meshcore_bot.py ``` -### CLI Management - -The bot includes a CLI for management: - -```bash -# Interactive mode -python bot_cli.py --interactive - -# Command line mode -python bot_cli.py status -python bot_cli.py send general "Hello everyone!" -``` ### Available Commands