k9audit-hook 0.2.0__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.
- k9audit_hook-0.2.0/LICENSE +17 -0
- k9audit_hook-0.2.0/PKG-INFO +13 -0
- k9audit_hook-0.2.0/README.md +725 -0
- k9audit_hook-0.2.0/k9audit_hook.egg-info/PKG-INFO +13 -0
- k9audit_hook-0.2.0/k9audit_hook.egg-info/SOURCES.txt +31 -0
- k9audit_hook-0.2.0/k9audit_hook.egg-info/dependency_links.txt +1 -0
- k9audit_hook-0.2.0/k9audit_hook.egg-info/entry_points.txt +2 -0
- k9audit_hook-0.2.0/k9audit_hook.egg-info/requires.txt +4 -0
- k9audit_hook-0.2.0/k9audit_hook.egg-info/top_level.txt +1 -0
- k9audit_hook-0.2.0/k9log/__init__.py +103 -0
- k9audit_hook-0.2.0/k9log/__main__.py +6 -0
- k9audit_hook-0.2.0/k9log/agents_md_parser.py +78 -0
- k9audit_hook-0.2.0/k9log/alerting.py +582 -0
- k9audit_hook-0.2.0/k9log/autocontract.py +241 -0
- k9audit_hook-0.2.0/k9log/causal_analyzer.py +343 -0
- k9audit_hook-0.2.0/k9log/cli.py +1198 -0
- k9audit_hook-0.2.0/k9log/constraints.py +806 -0
- k9audit_hook-0.2.0/k9log/core.py +344 -0
- k9audit_hook-0.2.0/k9log/governance/__init__.py +32 -0
- k9audit_hook-0.2.0/k9log/governance/action_class.py +65 -0
- k9audit_hook-0.2.0/k9log/governance/types.py +83 -0
- k9audit_hook-0.2.0/k9log/hook.py +145 -0
- k9audit_hook-0.2.0/k9log/hook_post.py +163 -0
- k9audit_hook-0.2.0/k9log/identity.py +145 -0
- k9audit_hook-0.2.0/k9log/langchain_adapter.py +179 -0
- k9audit_hook-0.2.0/k9log/logger.py +403 -0
- k9audit_hook-0.2.0/k9log/openclaw.py +184 -0
- k9audit_hook-0.2.0/k9log/redact.py +185 -0
- k9audit_hook-0.2.0/k9log/report.py +705 -0
- k9audit_hook-0.2.0/k9log/tracer.py +191 -0
- k9audit_hook-0.2.0/k9log/verifier.py +252 -0
- k9audit_hook-0.2.0/pyproject.toml +19 -0
- k9audit_hook-0.2.0/setup.cfg +4 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
GNU AFFERO GENERAL PUBLIC LICENSE
|
|
2
|
+
Version 3, 19 November 2007
|
|
3
|
+
|
|
4
|
+
Copyright (C) 2026 Haotian Liu
|
|
5
|
+
|
|
6
|
+
This program is free software: you can redistribute it and/or modify
|
|
7
|
+
it under the terms of the GNU Affero General Public License as published
|
|
8
|
+
by the Free Software Foundation, either version 3 of the License, or
|
|
9
|
+
(at your option) any later version.
|
|
10
|
+
|
|
11
|
+
This program is distributed in the hope that it will be useful,
|
|
12
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
14
|
+
|
|
15
|
+
For the full license text, see: https://www.gnu.org/licenses/agpl-3.0.txt
|
|
16
|
+
|
|
17
|
+
SPDX-License-Identifier: AGPL-3.0-or-later
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: k9audit-hook
|
|
3
|
+
Version: 0.2.0
|
|
4
|
+
Summary: K9 Audit with Hook Connector — for Claude Code and hook-compatible agents
|
|
5
|
+
Author: Haotian Liu
|
|
6
|
+
License: AGPL-3.0
|
|
7
|
+
Requires-Python: >=3.11
|
|
8
|
+
License-File: LICENSE
|
|
9
|
+
Requires-Dist: click>=8.0
|
|
10
|
+
Requires-Dist: rich>=13.0
|
|
11
|
+
Requires-Dist: requests>=2.28
|
|
12
|
+
Requires-Dist: cryptography>=41.0
|
|
13
|
+
Dynamic: license-file
|