agentauthlayer 0.1.0__tar.gz → 0.1.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.
- {agentauthlayer-0.1.0 → agentauthlayer-0.1.1}/PKG-INFO +5 -25
- {agentauthlayer-0.1.0 → agentauthlayer-0.1.1}/README.md +4 -24
- {agentauthlayer-0.1.0 → agentauthlayer-0.1.1}/agentauthlayer.egg-info/PKG-INFO +5 -25
- {agentauthlayer-0.1.0 → agentauthlayer-0.1.1}/pyproject.toml +1 -1
- {agentauthlayer-0.1.0 → agentauthlayer-0.1.1}/agent_auth/__init__.py +0 -0
- {agentauthlayer-0.1.0 → agentauthlayer-0.1.1}/agent_auth/__main__.py +0 -0
- {agentauthlayer-0.1.0 → agentauthlayer-0.1.1}/agent_auth/agents.py +0 -0
- {agentauthlayer-0.1.0 → agentauthlayer-0.1.1}/agent_auth/audit.py +0 -0
- {agentauthlayer-0.1.0 → agentauthlayer-0.1.1}/agent_auth/auth.py +0 -0
- {agentauthlayer-0.1.0 → agentauthlayer-0.1.1}/agent_auth/cli.py +0 -0
- {agentauthlayer-0.1.0 → agentauthlayer-0.1.1}/agent_auth/client.py +0 -0
- {agentauthlayer-0.1.0 → agentauthlayer-0.1.1}/agent_auth/context.py +0 -0
- {agentauthlayer-0.1.0 → agentauthlayer-0.1.1}/agent_auth/core.py +0 -0
- {agentauthlayer-0.1.0 → agentauthlayer-0.1.1}/agent_auth/delegation.py +0 -0
- {agentauthlayer-0.1.0 → agentauthlayer-0.1.1}/agent_auth/exceptions.py +0 -0
- {agentauthlayer-0.1.0 → agentauthlayer-0.1.1}/agent_auth/models.py +0 -0
- {agentauthlayer-0.1.0 → agentauthlayer-0.1.1}/agent_auth/policy.py +0 -0
- {agentauthlayer-0.1.0 → agentauthlayer-0.1.1}/agent_auth/policy_service.py +0 -0
- {agentauthlayer-0.1.0 → agentauthlayer-0.1.1}/agent_auth/principals.py +0 -0
- {agentauthlayer-0.1.0 → agentauthlayer-0.1.1}/agent_auth/registry.py +0 -0
- {agentauthlayer-0.1.0 → agentauthlayer-0.1.1}/agent_auth/session.py +0 -0
- {agentauthlayer-0.1.0 → agentauthlayer-0.1.1}/agent_auth/storage.py +0 -0
- {agentauthlayer-0.1.0 → agentauthlayer-0.1.1}/agent_auth/tokens.py +0 -0
- {agentauthlayer-0.1.0 → agentauthlayer-0.1.1}/agent_auth/users.py +0 -0
- {agentauthlayer-0.1.0 → agentauthlayer-0.1.1}/agentauthlayer.egg-info/SOURCES.txt +0 -0
- {agentauthlayer-0.1.0 → agentauthlayer-0.1.1}/agentauthlayer.egg-info/dependency_links.txt +0 -0
- {agentauthlayer-0.1.0 → agentauthlayer-0.1.1}/agentauthlayer.egg-info/requires.txt +0 -0
- {agentauthlayer-0.1.0 → agentauthlayer-0.1.1}/agentauthlayer.egg-info/top_level.txt +0 -0
- {agentauthlayer-0.1.0 → agentauthlayer-0.1.1}/setup.cfg +0 -0
- {agentauthlayer-0.1.0 → agentauthlayer-0.1.1}/tests/test_agent_auth_library.py +0 -0
- {agentauthlayer-0.1.0 → agentauthlayer-0.1.1}/tests/test_auth_flow.py +0 -0
- {agentauthlayer-0.1.0 → agentauthlayer-0.1.1}/tests/test_core_first_boundary.py +0 -0
- {agentauthlayer-0.1.0 → agentauthlayer-0.1.1}/tests/test_health.py +0 -0
- {agentauthlayer-0.1.0 → agentauthlayer-0.1.1}/tests/test_iam_policy.py +0 -0
- {agentauthlayer-0.1.0 → agentauthlayer-0.1.1}/tests/test_project_flow.py +0 -0
- {agentauthlayer-0.1.0 → agentauthlayer-0.1.1}/tests/test_sqlite_repos.py +0 -0
- {agentauthlayer-0.1.0 → agentauthlayer-0.1.1}/tests/test_storage.py +0 -0
- {agentauthlayer-0.1.0 → agentauthlayer-0.1.1}/tests/test_tool_registry.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agentauthlayer
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Library-first authentication and authorization SDK for AI agents
|
|
5
5
|
Author: Vaibhav Ahluwalia
|
|
6
6
|
License: MIT
|
|
@@ -25,25 +25,19 @@ A library-first authentication and authorization SDK for AI agents.
|
|
|
25
25
|
|
|
26
26
|
## What this package is
|
|
27
27
|
|
|
28
|
-
`
|
|
28
|
+
`agentauthlayer` is the reusable Python SDK layer of the Agent Auth platform. It is designed for developers who want to:
|
|
29
29
|
- register agents
|
|
30
30
|
- issue and verify access with the Agent Auth control plane
|
|
31
31
|
- sync tool definitions
|
|
32
32
|
- evaluate permissions
|
|
33
33
|
- embed policy enforcement into agent runtimes
|
|
34
34
|
|
|
35
|
-
This package is the
|
|
35
|
+
This package is the developer-facing library, not the full FastAPI server or React admin UI.
|
|
36
36
|
|
|
37
37
|
## Install
|
|
38
38
|
|
|
39
39
|
```bash
|
|
40
|
-
pip install
|
|
41
|
-
```
|
|
42
|
-
|
|
43
|
-
For local development:
|
|
44
|
-
|
|
45
|
-
```bash
|
|
46
|
-
pip install -e .
|
|
40
|
+
pip install agentauthlayer
|
|
47
41
|
```
|
|
48
42
|
|
|
49
43
|
## Quickstart
|
|
@@ -112,20 +106,6 @@ print(decision)
|
|
|
112
106
|
|
|
113
107
|
## Package scope
|
|
114
108
|
|
|
115
|
-
This package
|
|
109
|
+
This package exposes the reusable SDK and policy primitives under `agent_auth/`.
|
|
116
110
|
The full control plane server, admin UI, and demos remain in the same repository but are not part of the SDK package build.
|
|
117
111
|
|
|
118
|
-
## Dev-ready validation checklist
|
|
119
|
-
|
|
120
|
-
Before publishing, verify:
|
|
121
|
-
|
|
122
|
-
```bash
|
|
123
|
-
pip install -e .
|
|
124
|
-
python -c "import agent_auth; print(agent_auth.__all__)"
|
|
125
|
-
python -m build
|
|
126
|
-
pip install dist/*.whl
|
|
127
|
-
```
|
|
128
|
-
|
|
129
|
-
## Repository
|
|
130
|
-
|
|
131
|
-
- Source: <https://github.com/VaibhavAhluwalia/Agent-Auth->
|
|
@@ -4,25 +4,19 @@ A library-first authentication and authorization SDK for AI agents.
|
|
|
4
4
|
|
|
5
5
|
## What this package is
|
|
6
6
|
|
|
7
|
-
`
|
|
7
|
+
`agentauthlayer` is the reusable Python SDK layer of the Agent Auth platform. It is designed for developers who want to:
|
|
8
8
|
- register agents
|
|
9
9
|
- issue and verify access with the Agent Auth control plane
|
|
10
10
|
- sync tool definitions
|
|
11
11
|
- evaluate permissions
|
|
12
12
|
- embed policy enforcement into agent runtimes
|
|
13
13
|
|
|
14
|
-
This package is the
|
|
14
|
+
This package is the developer-facing library, not the full FastAPI server or React admin UI.
|
|
15
15
|
|
|
16
16
|
## Install
|
|
17
17
|
|
|
18
18
|
```bash
|
|
19
|
-
pip install
|
|
20
|
-
```
|
|
21
|
-
|
|
22
|
-
For local development:
|
|
23
|
-
|
|
24
|
-
```bash
|
|
25
|
-
pip install -e .
|
|
19
|
+
pip install agentauthlayer
|
|
26
20
|
```
|
|
27
21
|
|
|
28
22
|
## Quickstart
|
|
@@ -91,20 +85,6 @@ print(decision)
|
|
|
91
85
|
|
|
92
86
|
## Package scope
|
|
93
87
|
|
|
94
|
-
This package
|
|
88
|
+
This package exposes the reusable SDK and policy primitives under `agent_auth/`.
|
|
95
89
|
The full control plane server, admin UI, and demos remain in the same repository but are not part of the SDK package build.
|
|
96
90
|
|
|
97
|
-
## Dev-ready validation checklist
|
|
98
|
-
|
|
99
|
-
Before publishing, verify:
|
|
100
|
-
|
|
101
|
-
```bash
|
|
102
|
-
pip install -e .
|
|
103
|
-
python -c "import agent_auth; print(agent_auth.__all__)"
|
|
104
|
-
python -m build
|
|
105
|
-
pip install dist/*.whl
|
|
106
|
-
```
|
|
107
|
-
|
|
108
|
-
## Repository
|
|
109
|
-
|
|
110
|
-
- Source: <https://github.com/VaibhavAhluwalia/Agent-Auth->
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agentauthlayer
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Library-first authentication and authorization SDK for AI agents
|
|
5
5
|
Author: Vaibhav Ahluwalia
|
|
6
6
|
License: MIT
|
|
@@ -25,25 +25,19 @@ A library-first authentication and authorization SDK for AI agents.
|
|
|
25
25
|
|
|
26
26
|
## What this package is
|
|
27
27
|
|
|
28
|
-
`
|
|
28
|
+
`agentauthlayer` is the reusable Python SDK layer of the Agent Auth platform. It is designed for developers who want to:
|
|
29
29
|
- register agents
|
|
30
30
|
- issue and verify access with the Agent Auth control plane
|
|
31
31
|
- sync tool definitions
|
|
32
32
|
- evaluate permissions
|
|
33
33
|
- embed policy enforcement into agent runtimes
|
|
34
34
|
|
|
35
|
-
This package is the
|
|
35
|
+
This package is the developer-facing library, not the full FastAPI server or React admin UI.
|
|
36
36
|
|
|
37
37
|
## Install
|
|
38
38
|
|
|
39
39
|
```bash
|
|
40
|
-
pip install
|
|
41
|
-
```
|
|
42
|
-
|
|
43
|
-
For local development:
|
|
44
|
-
|
|
45
|
-
```bash
|
|
46
|
-
pip install -e .
|
|
40
|
+
pip install agentauthlayer
|
|
47
41
|
```
|
|
48
42
|
|
|
49
43
|
## Quickstart
|
|
@@ -112,20 +106,6 @@ print(decision)
|
|
|
112
106
|
|
|
113
107
|
## Package scope
|
|
114
108
|
|
|
115
|
-
This package
|
|
109
|
+
This package exposes the reusable SDK and policy primitives under `agent_auth/`.
|
|
116
110
|
The full control plane server, admin UI, and demos remain in the same repository but are not part of the SDK package build.
|
|
117
111
|
|
|
118
|
-
## Dev-ready validation checklist
|
|
119
|
-
|
|
120
|
-
Before publishing, verify:
|
|
121
|
-
|
|
122
|
-
```bash
|
|
123
|
-
pip install -e .
|
|
124
|
-
python -c "import agent_auth; print(agent_auth.__all__)"
|
|
125
|
-
python -m build
|
|
126
|
-
pip install dist/*.whl
|
|
127
|
-
```
|
|
128
|
-
|
|
129
|
-
## Repository
|
|
130
|
-
|
|
131
|
-
- Source: <https://github.com/VaibhavAhluwalia/Agent-Auth->
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|