reeflex-claude 0.0.1__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.
- reeflex_claude-0.0.1/PKG-INFO +20 -0
- reeflex_claude-0.0.1/README.md +10 -0
- reeflex_claude-0.0.1/pyproject.toml +18 -0
- reeflex_claude-0.0.1/setup.cfg +4 -0
- reeflex_claude-0.0.1/src/reeflex_claude/__init__.py +9 -0
- reeflex_claude-0.0.1/src/reeflex_claude.egg-info/PKG-INFO +20 -0
- reeflex_claude-0.0.1/src/reeflex_claude.egg-info/SOURCES.txt +7 -0
- reeflex_claude-0.0.1/src/reeflex_claude.egg-info/dependency_links.txt +1 -0
- reeflex_claude-0.0.1/src/reeflex_claude.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: reeflex-claude
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Reeflex — deterministic governance gate for AI-agent actions, the Claude Code adapter (PreToolUse governance hook). Name reservation; code at github.com/Reeflex-io/reeflex
|
|
5
|
+
License-Expression: Apache-2.0
|
|
6
|
+
Project-URL: Homepage, https://reeflex.io
|
|
7
|
+
Project-URL: Source, https://github.com/Reeflex-io/reeflex
|
|
8
|
+
Requires-Python: >=3.8
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# reeflex-claude
|
|
12
|
+
|
|
13
|
+
Reeflex is a deterministic governance layer for AI-agent actions: it decides
|
|
14
|
+
allow / deny / require_approval on a universal action envelope, using
|
|
15
|
+
classical logic (OPA/Rego) rather than another LLM in the decision path.
|
|
16
|
+
`reeflex-claude` is the Claude Code adapter (PreToolUse governance hook).
|
|
17
|
+
|
|
18
|
+
This is a name-reservation release — the real package ships soon; the
|
|
19
|
+
working code is public at https://github.com/Reeflex-io/reeflex
|
|
20
|
+
(Apache-2.0). See https://reeflex.io
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# reeflex-claude
|
|
2
|
+
|
|
3
|
+
Reeflex is a deterministic governance layer for AI-agent actions: it decides
|
|
4
|
+
allow / deny / require_approval on a universal action envelope, using
|
|
5
|
+
classical logic (OPA/Rego) rather than another LLM in the decision path.
|
|
6
|
+
`reeflex-claude` is the Claude Code adapter (PreToolUse governance hook).
|
|
7
|
+
|
|
8
|
+
This is a name-reservation release — the real package ships soon; the
|
|
9
|
+
working code is public at https://github.com/Reeflex-io/reeflex
|
|
10
|
+
(Apache-2.0). See https://reeflex.io
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "reeflex-claude"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Reeflex — deterministic governance gate for AI-agent actions, the Claude Code adapter (PreToolUse governance hook). Name reservation; code at github.com/Reeflex-io/reeflex"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "Apache-2.0"
|
|
11
|
+
requires-python = ">=3.8"
|
|
12
|
+
|
|
13
|
+
[project.urls]
|
|
14
|
+
Homepage = "https://reeflex.io"
|
|
15
|
+
Source = "https://github.com/Reeflex-io/reeflex"
|
|
16
|
+
|
|
17
|
+
[tool.setuptools.packages.find]
|
|
18
|
+
where = ["src"]
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"""Reeflex — deterministic governance gate for AI-agent actions.
|
|
2
|
+
|
|
3
|
+
reeflex-claude is the Claude Code adapter (PreToolUse governance hook).
|
|
4
|
+
This is a placeholder name-reservation release (0.0.1). It has no
|
|
5
|
+
executable behavior. The working code is public at
|
|
6
|
+
https://github.com/Reeflex-io/reeflex (Apache-2.0). See https://reeflex.io
|
|
7
|
+
"""
|
|
8
|
+
|
|
9
|
+
__version__ = "0.0.1"
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: reeflex-claude
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Reeflex — deterministic governance gate for AI-agent actions, the Claude Code adapter (PreToolUse governance hook). Name reservation; code at github.com/Reeflex-io/reeflex
|
|
5
|
+
License-Expression: Apache-2.0
|
|
6
|
+
Project-URL: Homepage, https://reeflex.io
|
|
7
|
+
Project-URL: Source, https://github.com/Reeflex-io/reeflex
|
|
8
|
+
Requires-Python: >=3.8
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# reeflex-claude
|
|
12
|
+
|
|
13
|
+
Reeflex is a deterministic governance layer for AI-agent actions: it decides
|
|
14
|
+
allow / deny / require_approval on a universal action envelope, using
|
|
15
|
+
classical logic (OPA/Rego) rather than another LLM in the decision path.
|
|
16
|
+
`reeflex-claude` is the Claude Code adapter (PreToolUse governance hook).
|
|
17
|
+
|
|
18
|
+
This is a name-reservation release — the real package ships soon; the
|
|
19
|
+
working code is public at https://github.com/Reeflex-io/reeflex
|
|
20
|
+
(Apache-2.0). See https://reeflex.io
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
reeflex_claude
|