ephorai 0.0.1.dev0__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.
@@ -0,0 +1,19 @@
1
+ Metadata-Version: 2.4
2
+ Name: ephorai
3
+ Version: 0.0.1.dev0
4
+ Summary: Capability governance for AI agent tools — name reservation; first release in active development.
5
+ Author: Aaron E. Pinto
6
+ Author-email: Aaron E. Pinto <aaronepinto@icloud.com>
7
+ License-Expression: MIT
8
+ Classifier: Development Status :: 1 - Planning
9
+ Requires-Python: >=3.12
10
+ Description-Content-Type: text/markdown
11
+
12
+ # ephorai
13
+
14
+ Capability governance for AI agent tools — declare a tool once, grant it once;
15
+ get schema filtering, argument guards, response projection, disclosure gating,
16
+ human approvals, and a tamper-evident audit trail on any agent SDK or MCP server.
17
+
18
+ **This is a name-reservation placeholder.** The first real release is in active
19
+ development. Contact: aaronepinto@icloud.com
@@ -0,0 +1,8 @@
1
+ # ephorai
2
+
3
+ Capability governance for AI agent tools — declare a tool once, grant it once;
4
+ get schema filtering, argument guards, response projection, disclosure gating,
5
+ human approvals, and a tamper-evident audit trail on any agent SDK or MCP server.
6
+
7
+ **This is a name-reservation placeholder.** The first real release is in active
8
+ development. Contact: aaronepinto@icloud.com
@@ -0,0 +1,13 @@
1
+ [project]
2
+ name = "ephorai"
3
+ version = "0.0.1.dev0"
4
+ description = "Capability governance for AI agent tools — name reservation; first release in active development."
5
+ readme = "README.md"
6
+ license = "MIT"
7
+ authors = [{ name = "Aaron E. Pinto", email = "aaronepinto@icloud.com" }]
8
+ requires-python = ">=3.12"
9
+ classifiers = ["Development Status :: 1 - Planning"]
10
+
11
+ [build-system]
12
+ requires = ["uv_build>=0.11,<0.12"]
13
+ build-backend = "uv_build"
@@ -0,0 +1,7 @@
1
+ """ephorai — capability governance for AI agent tools.
2
+
3
+ Name-reservation placeholder: the first real release is in active
4
+ development and will replace this package.
5
+ """
6
+
7
+ __version__ = "0.0.1.dev0"