looptrip 0.1.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.
looptrip/__init__.py ADDED
@@ -0,0 +1,8 @@
1
+ """looptrip — deterministic detection of multi-agent coordination pathologies.
2
+
3
+ A framework-agnostic, zero-LLM, stdlib-only detector that trips at iteration 2
4
+ (the second occurrence of a duplicate-work signature) rather than on the invoice.
5
+ It observes existing OTel GenAI spans and cast.db agent runs; it never gates.
6
+ """
7
+
8
+ __version__ = "0.1.0"
looptrip/__main__.py ADDED
@@ -0,0 +1,5 @@
1
+ """Enable ``python -m looptrip ...`` by delegating to the CLI entry point."""
2
+
3
+ from .cli import main
4
+
5
+ raise SystemExit(main())