wowbits-cli 0.1.0a1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
cli/.env ADDED
@@ -0,0 +1 @@
1
+ WOWBITS_ROOT_DIR=/Users/pankajmoolrajani/wowbits
cli/__init__.py ADDED
@@ -0,0 +1,12 @@
1
+ """
2
+ WowBits CLI Package
3
+
4
+ Command-line interface for managing agents, skills, connectors, and other WowBits resources.
5
+ """
6
+
7
+ from .wowbits import main, create_parser
8
+ from .setup import run_setup
9
+
10
+ __all__ = [
11
+ "run_setup",
12
+ ]