stopgate 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.
stopgate/__init__.py ADDED
@@ -0,0 +1,12 @@
1
+ """Stopgate — stop watching your agent.
2
+
3
+ A local-first safety envelope for coding agents. Detection is by PROVENANCE and
4
+ DATAFLOW, never keywords: every tool result is tagged trusted/untrusted, an
5
+ untrusted read taints the session, high-risk actions near untrusted content
6
+ escalate, and outbound bytes are matched (by rolling hash) against secrets read
7
+ earlier in the session.
8
+
9
+ Stopgate makes zero network calls of its own. Standard library only.
10
+ """
11
+
12
+ __version__ = "0.1.0"