reeflex 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-0.0.1/PKG-INFO +19 -0
- reeflex-0.0.1/README.md +9 -0
- reeflex-0.0.1/pyproject.toml +18 -0
- reeflex-0.0.1/setup.cfg +4 -0
- reeflex-0.0.1/src/reeflex/__init__.py +8 -0
- reeflex-0.0.1/src/reeflex.egg-info/PKG-INFO +19 -0
- reeflex-0.0.1/src/reeflex.egg-info/SOURCES.txt +7 -0
- reeflex-0.0.1/src/reeflex.egg-info/dependency_links.txt +1 -0
- reeflex-0.0.1/src/reeflex.egg-info/top_level.txt +1 -0
reeflex-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: reeflex
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Reeflex — deterministic governance gate for AI-agent actions. 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
|
|
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
|
+
|
|
17
|
+
This is a name-reservation release — the real package ships soon; the
|
|
18
|
+
working code is public at https://github.com/Reeflex-io/reeflex
|
|
19
|
+
(Apache-2.0). See https://reeflex.io
|
reeflex-0.0.1/README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# reeflex
|
|
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
|
+
|
|
7
|
+
This is a name-reservation release — the real package ships soon; the
|
|
8
|
+
working code is public at https://github.com/Reeflex-io/reeflex
|
|
9
|
+
(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"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Reeflex — deterministic governance gate for AI-agent actions. 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"]
|
reeflex-0.0.1/setup.cfg
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"""Reeflex — deterministic governance gate for AI-agent actions.
|
|
2
|
+
|
|
3
|
+
This is a placeholder name-reservation release (0.0.1). It has no
|
|
4
|
+
executable behavior. The working code is public at
|
|
5
|
+
https://github.com/Reeflex-io/reeflex (Apache-2.0). See https://reeflex.io
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
__version__ = "0.0.1"
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: reeflex
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Reeflex — deterministic governance gate for AI-agent actions. 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
|
|
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
|
+
|
|
17
|
+
This is a name-reservation release — the real package ships soon; the
|
|
18
|
+
working code is public at https://github.com/Reeflex-io/reeflex
|
|
19
|
+
(Apache-2.0). See https://reeflex.io
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
reeflex
|