toolgovern-cli 0.1.1__tar.gz → 0.1.2__tar.gz
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.
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/PKG-INFO +5 -4
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/README.md +4 -3
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/pyproject.toml +1 -1
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/.gitignore +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/LICENSE +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/src/toolgovern/__init__.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/src/toolgovern/approval/__init__.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/src/toolgovern/approval/pending_registry.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/src/toolgovern/classifier/__init__.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/src/toolgovern/classifier/credential_access.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/src/toolgovern/classifier/cross_agent_inheritance.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/src/toolgovern/classifier/filesystem_scope.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/src/toolgovern/classifier/index.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/src/toolgovern/classifier/information_flow.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/src/toolgovern/classifier/network_egress.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/src/toolgovern/classifier/shell_risk.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/src/toolgovern/classifier/util.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/src/toolgovern/cli.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/src/toolgovern/mcp_trust/__init__.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/src/toolgovern/middleware/__init__.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/src/toolgovern/middleware/idempotency_cache.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/src/toolgovern/middleware/on_tool_call.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/src/toolgovern/policy/__init__.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/src/toolgovern/policy/load_policy.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/src/toolgovern/policy/validate_policy.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/src/toolgovern/py.typed +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/src/toolgovern/scoping/__init__.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/src/toolgovern/scoping/inheritance_enforcer.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/src/toolgovern/scoping/scope_declaration.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/src/toolgovern/shared/__init__.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/src/toolgovern/shared/paths.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/src/toolgovern/trace/__init__.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/src/toolgovern/trace/canonical_json.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/src/toolgovern/trace/trace_reader.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/src/toolgovern/trace/trace_writer.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/src/toolgovern/types.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/tests/__init__.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/tests/conftest.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/tests/test_classifier_credential_access.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/tests/test_classifier_cross_agent_inheritance.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/tests/test_classifier_filesystem_scope.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/tests/test_classifier_index.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/tests/test_classifier_information_flow.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/tests/test_classifier_network_egress.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/tests/test_classifier_shell_risk.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/tests/test_cli.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/tests/test_mcp_trust.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/tests/test_middleware_on_tool_call.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/tests/test_pending_registry.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/tests/test_policy.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/tests/test_scoping_inheritance_enforcer.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/tests/test_scoping_scope_declaration.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/tests/test_trace_canonical_json.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/tests/test_trace_reader.py +0 -0
- {toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/tests/test_trace_writer.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: toolgovern-cli
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Runtime governance middleware for AI agent tool calls -- gate shell, filesystem, network, and credential access before a tool executes.
|
|
5
5
|
Project-URL: Homepage, https://github.com/RudrenduPaul/toolgovern
|
|
6
6
|
Project-URL: Repository, https://github.com/RudrenduPaul/toolgovern
|
|
@@ -41,7 +41,7 @@ Gate every tool call an AI agent makes -- shell, filesystem, network, credential
|
|
|
41
41
|
it executes, not after something already went wrong.
|
|
42
42
|
|
|
43
43
|
[](../LICENSE)
|
|
44
|
-
[](https://pypi.org/project/toolgovern/)
|
|
44
|
+
[](https://pypi.org/project/toolgovern-cli/)
|
|
45
45
|
|
|
46
46
|
This is the genuine Python port of [`toolgovern`](https://www.npmjs.com/package/toolgovern) and
|
|
47
47
|
[`toolgovern-cli`](https://www.npmjs.com/package/toolgovern-cli) -- not a wrapper around the Node
|
|
@@ -118,13 +118,13 @@ executes is worth doing at all right now.
|
|
|
118
118
|
## Install
|
|
119
119
|
|
|
120
120
|
```bash
|
|
121
|
-
pip install toolgovern
|
|
121
|
+
pip install toolgovern-cli
|
|
122
122
|
```
|
|
123
123
|
|
|
124
124
|
or with [uv](https://docs.astral.sh/uv/):
|
|
125
125
|
|
|
126
126
|
```bash
|
|
127
|
-
uv add toolgovern
|
|
127
|
+
uv add toolgovern-cli
|
|
128
128
|
```
|
|
129
129
|
|
|
130
130
|
Or install straight from this repository:
|
|
@@ -335,3 +335,4 @@ Report a vulnerability per the project's [`SECURITY.md`](https://github.com/Rudr
|
|
|
335
335
|
## License
|
|
336
336
|
|
|
337
337
|
Apache 2.0 -- see [LICENSE](../LICENSE).
|
|
338
|
+
|
|
@@ -4,7 +4,7 @@ Gate every tool call an AI agent makes -- shell, filesystem, network, credential
|
|
|
4
4
|
it executes, not after something already went wrong.
|
|
5
5
|
|
|
6
6
|
[](../LICENSE)
|
|
7
|
-
[](https://pypi.org/project/toolgovern/)
|
|
7
|
+
[](https://pypi.org/project/toolgovern-cli/)
|
|
8
8
|
|
|
9
9
|
This is the genuine Python port of [`toolgovern`](https://www.npmjs.com/package/toolgovern) and
|
|
10
10
|
[`toolgovern-cli`](https://www.npmjs.com/package/toolgovern-cli) -- not a wrapper around the Node
|
|
@@ -81,13 +81,13 @@ executes is worth doing at all right now.
|
|
|
81
81
|
## Install
|
|
82
82
|
|
|
83
83
|
```bash
|
|
84
|
-
pip install toolgovern
|
|
84
|
+
pip install toolgovern-cli
|
|
85
85
|
```
|
|
86
86
|
|
|
87
87
|
or with [uv](https://docs.astral.sh/uv/):
|
|
88
88
|
|
|
89
89
|
```bash
|
|
90
|
-
uv add toolgovern
|
|
90
|
+
uv add toolgovern-cli
|
|
91
91
|
```
|
|
92
92
|
|
|
93
93
|
Or install straight from this repository:
|
|
@@ -298,3 +298,4 @@ Report a vulnerability per the project's [`SECURITY.md`](https://github.com/Rudr
|
|
|
298
298
|
## License
|
|
299
299
|
|
|
300
300
|
Apache 2.0 -- see [LICENSE](../LICENSE).
|
|
301
|
+
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "toolgovern-cli"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.2"
|
|
8
8
|
description = "Runtime governance middleware for AI agent tool calls -- gate shell, filesystem, network, and credential access before a tool executes."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.9"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/src/toolgovern/classifier/credential_access.py
RENAMED
|
File without changes
|
{toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/src/toolgovern/classifier/cross_agent_inheritance.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/src/toolgovern/middleware/idempotency_cache.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/src/toolgovern/scoping/inheritance_enforcer.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{toolgovern_cli-0.1.1 → toolgovern_cli-0.1.2}/tests/test_classifier_cross_agent_inheritance.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|