agentevo-cloud 0.1.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.
Files changed (58) hide show
  1. agentevo_cloud-0.1.0/.gitignore +33 -0
  2. agentevo_cloud-0.1.0/LICENSE +90 -0
  3. agentevo_cloud-0.1.0/PKG-INFO +127 -0
  4. agentevo_cloud-0.1.0/README.md +14 -0
  5. agentevo_cloud-0.1.0/openapi/openapi.v1.json +3008 -0
  6. agentevo_cloud-0.1.0/pyproject.toml +42 -0
  7. agentevo_cloud-0.1.0/src/agentevo_cloud/__init__.py +452 -0
  8. agentevo_cloud-0.1.0/src/agentevo_cloud/analytics.py +238 -0
  9. agentevo_cloud-0.1.0/src/agentevo_cloud/app.py +2091 -0
  10. agentevo_cloud-0.1.0/src/agentevo_cloud/cli.py +124 -0
  11. agentevo_cloud-0.1.0/src/agentevo_cloud/config.py +108 -0
  12. agentevo_cloud-0.1.0/src/agentevo_cloud/db.py +442 -0
  13. agentevo_cloud-0.1.0/src/agentevo_cloud/devices.py +786 -0
  14. agentevo_cloud-0.1.0/src/agentevo_cloud/events.py +363 -0
  15. agentevo_cloud-0.1.0/src/agentevo_cloud/jobs.py +553 -0
  16. agentevo_cloud-0.1.0/src/agentevo_cloud/managed.py +325 -0
  17. agentevo_cloud-0.1.0/src/agentevo_cloud/metering.py +264 -0
  18. agentevo_cloud-0.1.0/src/agentevo_cloud/oidc.py +165 -0
  19. agentevo_cloud-0.1.0/src/agentevo_cloud/openapi.py +44 -0
  20. agentevo_cloud-0.1.0/src/agentevo_cloud/promote.py +215 -0
  21. agentevo_cloud-0.1.0/src/agentevo_cloud/recall.py +449 -0
  22. agentevo_cloud-0.1.0/src/agentevo_cloud/records.py +209 -0
  23. agentevo_cloud-0.1.0/src/agentevo_cloud/revoke.py +213 -0
  24. agentevo_cloud-0.1.0/src/agentevo_cloud/screen.py +240 -0
  25. agentevo_cloud-0.1.0/src/agentevo_cloud/sync.py +343 -0
  26. agentevo_cloud-0.1.0/src/agentevo_cloud/tenants.py +593 -0
  27. agentevo_cloud-0.1.0/src/agentevo_cloud/tokens.py +388 -0
  28. agentevo_cloud-0.1.0/src/agentevo_cloud/webhooks.py +730 -0
  29. agentevo_cloud-0.1.0/src/agentevo_cloud/workers.py +985 -0
  30. agentevo_cloud-0.1.0/tests/test_acceptance_m12.py +278 -0
  31. agentevo_cloud-0.1.0/tests/test_acceptance_m8.py +98 -0
  32. agentevo_cloud-0.1.0/tests/test_analytics.py +307 -0
  33. agentevo_cloud-0.1.0/tests/test_app.py +414 -0
  34. agentevo_cloud-0.1.0/tests/test_app_auth.py +1127 -0
  35. agentevo_cloud-0.1.0/tests/test_app_jobs.py +194 -0
  36. agentevo_cloud-0.1.0/tests/test_app_managed.py +280 -0
  37. agentevo_cloud-0.1.0/tests/test_app_objects.py +650 -0
  38. agentevo_cloud-0.1.0/tests/test_app_sync.py +426 -0
  39. agentevo_cloud-0.1.0/tests/test_cli.py +92 -0
  40. agentevo_cloud-0.1.0/tests/test_compile.py +802 -0
  41. agentevo_cloud-0.1.0/tests/test_devices_ci.py +741 -0
  42. agentevo_cloud-0.1.0/tests/test_events.py +238 -0
  43. agentevo_cloud-0.1.0/tests/test_foundation.py +534 -0
  44. agentevo_cloud-0.1.0/tests/test_jobs.py +457 -0
  45. agentevo_cloud-0.1.0/tests/test_maintenance.py +114 -0
  46. agentevo_cloud-0.1.0/tests/test_managed.py +237 -0
  47. agentevo_cloud-0.1.0/tests/test_metering_records.py +446 -0
  48. agentevo_cloud-0.1.0/tests/test_oidc.py +325 -0
  49. agentevo_cloud-0.1.0/tests/test_openapi.py +91 -0
  50. agentevo_cloud-0.1.0/tests/test_promote.py +344 -0
  51. agentevo_cloud-0.1.0/tests/test_recall.py +326 -0
  52. agentevo_cloud-0.1.0/tests/test_revoke.py +249 -0
  53. agentevo_cloud-0.1.0/tests/test_screen.py +236 -0
  54. agentevo_cloud-0.1.0/tests/test_smoke.py +7 -0
  55. agentevo_cloud-0.1.0/tests/test_sync_mode.py +917 -0
  56. agentevo_cloud-0.1.0/tests/test_sync_push_pull.py +521 -0
  57. agentevo_cloud-0.1.0/tests/test_webhooks.py +683 -0
  58. agentevo_cloud-0.1.0/tests/test_workers.py +480 -0
@@ -0,0 +1,33 @@
1
+ __pycache__/
2
+ *.pyc
3
+ .venv/
4
+ venv/
5
+ .env
6
+ *.db
7
+ *.sqlite*
8
+ /tmp/agentevo_specs/
9
+ .pytest_cache/
10
+ .mypy_cache/
11
+ .ruff_cache/
12
+ dist/
13
+ build/
14
+ *.egg-info/
15
+ .DS_Store
16
+
17
+ # Session/tooling state (not project content)
18
+ .omc/
19
+ .superpowers/
20
+ .claude/
21
+
22
+ # Local runtime data
23
+ .agentevo/
24
+ *.pid
25
+
26
+ # Coverage
27
+ .coverage
28
+ coverage.xml
29
+ htmlcov/
30
+ .gstack/
31
+
32
+ # Local-only Clerk publishable key (never commit)
33
+ website/clerk.config.json
@@ -0,0 +1,90 @@
1
+ Business Source License 1.1
2
+
3
+ Parameters
4
+
5
+ Licensor: Agentevo
6
+ Licensed Work: agentevo-cloud 0.1.0
7
+ Copyright Notice: Copyright (c) 2026 Agentevo
8
+
9
+ Additional Use Grant:
10
+
11
+ You may use the Licensed Work in production solely for your internal
12
+ business purposes, including operating it within your own infrastructure
13
+ (your own VPC, private cloud, or on-premises deployment). You may not use
14
+ the Licensed Work to provide a hosted or managed service to third parties.
15
+
16
+ Change Date: 2030-09-24
17
+
18
+ Change License: Apache License, Version 2.0
19
+
20
+ For information about alternative licensing arrangements for the Licensed
21
+ Work, please contact the Licensor.
22
+
23
+ Notice
24
+
25
+ The Business Source License (this document, or the "License") is not an Open
26
+ Source license. However, the Licensed Work will eventually be made available
27
+ under an Open Source License, as stated in this License.
28
+
29
+ License text copyright (c) 2024 MariaDB plc, All Rights Reserved. "Business
30
+ Source License" is a trademark of MariaDB plc.
31
+
32
+ Terms
33
+
34
+ The Licensor hereby grants you the right to copy, modify, create derivative
35
+ works, redistribute, and make non-production use of the Licensed Work. The
36
+ Licensor may make an Additional Use Grant, above, permitting limited
37
+ production use.
38
+
39
+ Effective on the Change Date, or the fourth anniversary of the first publicly
40
+ available distribution of a specific version of the Licensed Work under this
41
+ License, whichever comes first, the Licensor hereby grants you rights under
42
+ the terms of the Change License, and the rights granted in the paragraph above
43
+ terminate.
44
+
45
+ If your use of the Licensed Work does not comply with the requirements
46
+ currently in effect as described in this License, you must purchase a
47
+ commercial license from the Licensor, its affiliated entities, or authorized
48
+ resellers, or you must refrain from using the Licensed Work.
49
+
50
+ All copies of the original and modified Licensed Work, and derivative works
51
+ of the Licensed Work, are subject to this License. This License applies
52
+ separately for each version of the Licensed Work and the Change Date may vary
53
+ for each version of the Licensed Work released by Licensor.
54
+
55
+ You must conspicuously display this License on each original or modified copy
56
+ of the Licensed Work. If you receive the Licensed Work in original or modified
57
+ form from a third party, the terms and conditions set forth in this License
58
+ apply to your use of that work.
59
+
60
+ Any use of the Licensed Work in violation of this License will automatically
61
+ terminate your rights under this License for the current and all other
62
+ versions of the Licensed Work.
63
+
64
+ This License does not grant you any right in any trademark or logo of
65
+ Licensor or its affiliates (provided that you may use a trademark or logo of
66
+ Licensor as expressly required by this License). TO THE EXTENT PERMITTED BY
67
+ APPLICABLE LAW, THE LICENSED WORK IS PROVIDED ON AN "AS IS" BASIS. LICENSOR
68
+ HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS, EXPRESS OR IMPLIED, INCLUDING
69
+ (WITHOUT LIMITATION) WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
70
+ PURPOSE, NON-INFRINGEMENT, AND TITLE. MariaDB hereby grants you permission to
71
+ use this License's text to license your works, and to refer to it using the
72
+ trademark "Business Source License", as long as you comply with the Covenants
73
+ of Licensor below.
74
+
75
+ Covenants of Licensor
76
+
77
+ In consideration of the right to use this License's text and the "Business
78
+ Source License" name and trademark, Licensor covenants to MariaDB, and to all
79
+ other recipients of the licensed work to be provided by Licensor:
80
+
81
+ To specify as the Change License the GPL Version 2.0 or any later version, or
82
+ a license that is compatible with GPL Version 2.0 or a later version, where
83
+ "compatible" means that software provided under the Change License can be
84
+ included in a program with software provided under GPL Version 2.0 or a later
85
+ version. Licensor may specify additional Change Licenses without limitation.
86
+
87
+ To either: (a) specify an additional grant of rights to use that does not
88
+ impose any additional restriction on the right granted in this License, as the
89
+ Additional Use Grant; or (b) insert the text "None" to specify a Change Date.
90
+ Not to modify this License in any other way.
@@ -0,0 +1,127 @@
1
+ Metadata-Version: 2.5
2
+ Name: agentevo-cloud
3
+ Version: 0.1.0
4
+ Summary: Agentevo SaaS (TZ-3 control plane, TZ-4 managed intelligence): auth, metering, C2 APIs, workers.
5
+ Project-URL: Homepage, https://agentevo.sh
6
+ Author: Agentevo
7
+ License: Business Source License 1.1
8
+
9
+ Parameters
10
+
11
+ Licensor: Agentevo
12
+ Licensed Work: agentevo-cloud 0.1.0
13
+ Copyright Notice: Copyright (c) 2026 Agentevo
14
+
15
+ Additional Use Grant:
16
+
17
+ You may use the Licensed Work in production solely for your internal
18
+ business purposes, including operating it within your own infrastructure
19
+ (your own VPC, private cloud, or on-premises deployment). You may not use
20
+ the Licensed Work to provide a hosted or managed service to third parties.
21
+
22
+ Change Date: 2030-09-24
23
+
24
+ Change License: Apache License, Version 2.0
25
+
26
+ For information about alternative licensing arrangements for the Licensed
27
+ Work, please contact the Licensor.
28
+
29
+ Notice
30
+
31
+ The Business Source License (this document, or the "License") is not an Open
32
+ Source license. However, the Licensed Work will eventually be made available
33
+ under an Open Source License, as stated in this License.
34
+
35
+ License text copyright (c) 2024 MariaDB plc, All Rights Reserved. "Business
36
+ Source License" is a trademark of MariaDB plc.
37
+
38
+ Terms
39
+
40
+ The Licensor hereby grants you the right to copy, modify, create derivative
41
+ works, redistribute, and make non-production use of the Licensed Work. The
42
+ Licensor may make an Additional Use Grant, above, permitting limited
43
+ production use.
44
+
45
+ Effective on the Change Date, or the fourth anniversary of the first publicly
46
+ available distribution of a specific version of the Licensed Work under this
47
+ License, whichever comes first, the Licensor hereby grants you rights under
48
+ the terms of the Change License, and the rights granted in the paragraph above
49
+ terminate.
50
+
51
+ If your use of the Licensed Work does not comply with the requirements
52
+ currently in effect as described in this License, you must purchase a
53
+ commercial license from the Licensor, its affiliated entities, or authorized
54
+ resellers, or you must refrain from using the Licensed Work.
55
+
56
+ All copies of the original and modified Licensed Work, and derivative works
57
+ of the Licensed Work, are subject to this License. This License applies
58
+ separately for each version of the Licensed Work and the Change Date may vary
59
+ for each version of the Licensed Work released by Licensor.
60
+
61
+ You must conspicuously display this License on each original or modified copy
62
+ of the Licensed Work. If you receive the Licensed Work in original or modified
63
+ form from a third party, the terms and conditions set forth in this License
64
+ apply to your use of that work.
65
+
66
+ Any use of the Licensed Work in violation of this License will automatically
67
+ terminate your rights under this License for the current and all other
68
+ versions of the Licensed Work.
69
+
70
+ This License does not grant you any right in any trademark or logo of
71
+ Licensor or its affiliates (provided that you may use a trademark or logo of
72
+ Licensor as expressly required by this License). TO THE EXTENT PERMITTED BY
73
+ APPLICABLE LAW, THE LICENSED WORK IS PROVIDED ON AN "AS IS" BASIS. LICENSOR
74
+ HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS, EXPRESS OR IMPLIED, INCLUDING
75
+ (WITHOUT LIMITATION) WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
76
+ PURPOSE, NON-INFRINGEMENT, AND TITLE. MariaDB hereby grants you permission to
77
+ use this License's text to license your works, and to refer to it using the
78
+ trademark "Business Source License", as long as you comply with the Covenants
79
+ of Licensor below.
80
+
81
+ Covenants of Licensor
82
+
83
+ In consideration of the right to use this License's text and the "Business
84
+ Source License" name and trademark, Licensor covenants to MariaDB, and to all
85
+ other recipients of the licensed work to be provided by Licensor:
86
+
87
+ To specify as the Change License the GPL Version 2.0 or any later version, or
88
+ a license that is compatible with GPL Version 2.0 or a later version, where
89
+ "compatible" means that software provided under the Change License can be
90
+ included in a program with software provided under GPL Version 2.0 or a later
91
+ version. Licensor may specify additional Change Licenses without limitation.
92
+
93
+ To either: (a) specify an additional grant of rights to use that does not
94
+ impose any additional restriction on the right granted in this License, as the
95
+ Additional Use Grant; or (b) insert the text "None" to specify a Change Date.
96
+ Not to modify this License in any other way.
97
+ License-File: LICENSE
98
+ Keywords: agent-memory,ai-agents,guardrails,skills
99
+ Classifier: Development Status :: 3 - Alpha
100
+ Classifier: Intended Audience :: Developers
101
+ Classifier: Programming Language :: Python :: 3
102
+ Classifier: Programming Language :: Python :: 3.12
103
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
104
+ Classifier: Typing :: Typed
105
+ Requires-Python: >=3.12
106
+ Requires-Dist: agentevo-core>=0.1
107
+ Requires-Dist: agentevo-local>=0.1
108
+ Requires-Dist: cryptography>=44
109
+ Requires-Dist: fastapi>=0.115
110
+ Requires-Dist: pyjwt>=2.10
111
+ Requires-Dist: uvicorn>=0.30
112
+ Description-Content-Type: text/markdown
113
+
114
+ # agentevo-cloud
115
+
116
+ Agentevo SaaS planes: control API (TZ-3: auth, tenants, metering, sync) and
117
+ managed intelligence API (TZ-4: tenant-scoped recall, async verify/compile jobs,
118
+ analytics), plus the `agentevo-cloud` operator CLI (`provision`, `serve`,
119
+ `jobs`, `webhooks`).
120
+
121
+ ```sh
122
+ pip install agentevo-cloud
123
+ agentevo-cloud provision --tenant t-1 --name demo --user u-1 --workspace main
124
+ agentevo-cloud serve
125
+ ```
126
+
127
+ Part of the Agentevo monorepo; see the [main README](../../README.md).
@@ -0,0 +1,14 @@
1
+ # agentevo-cloud
2
+
3
+ Agentevo SaaS planes: control API (TZ-3: auth, tenants, metering, sync) and
4
+ managed intelligence API (TZ-4: tenant-scoped recall, async verify/compile jobs,
5
+ analytics), plus the `agentevo-cloud` operator CLI (`provision`, `serve`,
6
+ `jobs`, `webhooks`).
7
+
8
+ ```sh
9
+ pip install agentevo-cloud
10
+ agentevo-cloud provision --tenant t-1 --name demo --user u-1 --workspace main
11
+ agentevo-cloud serve
12
+ ```
13
+
14
+ Part of the Agentevo monorepo; see the [main README](../../README.md).