caucus-mcp 1.3.0__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.
- caucus/__init__.py +12 -0
- caucus/claude_agent.py +875 -0
- caucus/disklog.py +271 -0
- caucus/export.py +150 -0
- caucus/hub.py +1715 -0
- caucus/hub_connector.py +714 -0
- caucus/logging_setup.py +54 -0
- caucus/mcp_bridge.py +1047 -0
- caucus/models.py +480 -0
- caucus/ratelimit.py +65 -0
- caucus/state.py +1756 -0
- caucus/ui/assets/index-C6ssEd-g.js +259 -0
- caucus/ui/assets/index-CDaMHK6V.css +1 -0
- caucus/ui/index.html +15 -0
- caucus/urlguard.py +80 -0
- caucus/watch.py +309 -0
- caucus_mcp-1.3.0.dist-info/METADATA +532 -0
- caucus_mcp-1.3.0.dist-info/RECORD +21 -0
- caucus_mcp-1.3.0.dist-info/WHEEL +4 -0
- caucus_mcp-1.3.0.dist-info/entry_points.txt +5 -0
- caucus_mcp-1.3.0.dist-info/licenses/LICENSE +21 -0
caucus/__init__.py
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"""Caucus: a supervised message hub for multiple agents (any MCP client)."""
|
|
2
|
+
|
|
3
|
+
from importlib.metadata import PackageNotFoundError, version
|
|
4
|
+
|
|
5
|
+
try:
|
|
6
|
+
# Single source of truth: the version declared in pyproject.toml, read from
|
|
7
|
+
# the installed package metadata. Nothing else hardcodes it.
|
|
8
|
+
__version__ = version("caucus-mcp")
|
|
9
|
+
except PackageNotFoundError: # running from a source tree with no install
|
|
10
|
+
__version__ = "0.0.0+unknown"
|
|
11
|
+
|
|
12
|
+
__all__ = ["__version__"]
|