agenticdome-python-sdk 1.2.11__tar.gz → 1.2.13__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 (101) hide show
  1. agenticdome_python_sdk-1.2.13/CONTRIBUTING.md +55 -0
  2. agenticdome_python_sdk-1.2.13/LICENSE +202 -0
  3. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/MANIFEST.in +4 -0
  4. agenticdome_python_sdk-1.2.13/NOTICE +12 -0
  5. {agenticdome_python_sdk-1.2.11/agenticdome_python_sdk.egg-info → agenticdome_python_sdk-1.2.13}/PKG-INFO +21 -14
  6. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/README.md +15 -12
  7. agenticdome_python_sdk-1.2.13/SECURITY.md +19 -0
  8. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13/agenticdome_python_sdk.egg-info}/PKG-INFO +21 -14
  9. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/agenticdome_python_sdk.egg-info/SOURCES.txt +23 -0
  10. agenticdome_python_sdk-1.2.13/docs/frameworks/README.md +43 -0
  11. agenticdome_python_sdk-1.2.13/docs/frameworks/agno.md +46 -0
  12. agenticdome_python_sdk-1.2.13/docs/frameworks/autogen.md +45 -0
  13. agenticdome_python_sdk-1.2.13/docs/frameworks/aws-bedrock.md +49 -0
  14. agenticdome_python_sdk-1.2.13/docs/frameworks/claude-agent-sdk.md +47 -0
  15. agenticdome_python_sdk-1.2.13/docs/frameworks/crewai.md +51 -0
  16. agenticdome_python_sdk-1.2.13/docs/frameworks/custom-python.md +62 -0
  17. agenticdome_python_sdk-1.2.13/docs/frameworks/google-adk.md +46 -0
  18. agenticdome_python_sdk-1.2.13/docs/frameworks/langgraph.md +49 -0
  19. agenticdome_python_sdk-1.2.13/docs/frameworks/llamaindex.md +52 -0
  20. agenticdome_python_sdk-1.2.13/docs/frameworks/microsoft-agent-framework.md +47 -0
  21. agenticdome_python_sdk-1.2.13/docs/frameworks/microsoft-ai-foundry.md +48 -0
  22. agenticdome_python_sdk-1.2.13/docs/frameworks/openai-agents.md +52 -0
  23. agenticdome_python_sdk-1.2.13/docs/frameworks/pydanticai.md +51 -0
  24. agenticdome_python_sdk-1.2.13/docs/frameworks/smolagents.md +46 -0
  25. agenticdome_python_sdk-1.2.13/docs/mcp-integration.md +302 -0
  26. agenticdome_python_sdk-1.2.13/docs/performance-evidence.md +43 -0
  27. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/examples/PRODUCTION_INTEGRATION.md +15 -16
  28. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/examples/README.md +16 -16
  29. agenticdome_python_sdk-1.2.13/examples/mcp_gateway_action_firewall.py +108 -0
  30. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/pyproject.toml +7 -3
  31. agenticdome_python_sdk-1.2.13/tests/test_framework_guides.py +124 -0
  32. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/tests/test_local_simulation.py +15 -15
  33. agenticdome_python_sdk-1.2.13/tests/test_mcp_launch_example.py +16 -0
  34. agenticdome_python_sdk-1.2.11/LICENSE +0 -14
  35. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/agenticdome_python_sdk.egg-info/dependency_links.txt +0 -0
  36. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/agenticdome_python_sdk.egg-info/entry_points.txt +0 -0
  37. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/agenticdome_python_sdk.egg-info/requires.txt +0 -0
  38. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/agenticdome_python_sdk.egg-info/top_level.txt +0 -0
  39. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/agenticdome_sdk/__init__.py +0 -0
  40. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/agenticdome_sdk/_framework_firewall.py +0 -0
  41. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/agenticdome_sdk/_mode.py +0 -0
  42. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/agenticdome_sdk/agno.py +0 -0
  43. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/agenticdome_sdk/autogen.py +0 -0
  44. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/agenticdome_sdk/aws_bedrock.py +0 -0
  45. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/agenticdome_sdk/claude.py +0 -0
  46. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/agenticdome_sdk/client.py +0 -0
  47. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/agenticdome_sdk/crewai.py +0 -0
  48. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/agenticdome_sdk/demo.py +0 -0
  49. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/agenticdome_sdk/google_adk.py +0 -0
  50. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/agenticdome_sdk/identity.py +0 -0
  51. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/agenticdome_sdk/langgraph.py +0 -0
  52. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/agenticdome_sdk/llamaindex.py +0 -0
  53. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/agenticdome_sdk/mcp_host.py +0 -0
  54. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/agenticdome_sdk/microsoft_agent_framework.py +0 -0
  55. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/agenticdome_sdk/microsoft_ai_foundry.py +0 -0
  56. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/agenticdome_sdk/openai_agents.py +0 -0
  57. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/agenticdome_sdk/proof.py +0 -0
  58. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/agenticdome_sdk/pydantic.py +0 -0
  59. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/agenticdome_sdk/simulation.py +0 -0
  60. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/agenticdome_sdk/smolagents.py +0 -0
  61. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/examples/attack_demo.py +0 -0
  62. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/examples/crewai_agenticdome_firewall.py +0 -0
  63. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/examples/frameworks/README.md +0 -0
  64. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/examples/frameworks/_shared.py +0 -0
  65. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/examples/frameworks/agno.py +0 -0
  66. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/examples/frameworks/autogen.py +0 -0
  67. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/examples/frameworks/aws_bedrock.py +0 -0
  68. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/examples/frameworks/claude_agent_sdk.py +0 -0
  69. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/examples/frameworks/crewai.py +0 -0
  70. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/examples/frameworks/custom_python.py +0 -0
  71. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/examples/frameworks/google_adk.py +0 -0
  72. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/examples/frameworks/langgraph.py +0 -0
  73. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/examples/frameworks/llamaindex.py +0 -0
  74. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/examples/frameworks/mcp.py +0 -0
  75. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/examples/frameworks/microsoft_agent_framework.py +0 -0
  76. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/examples/frameworks/microsoft_ai_foundry.py +0 -0
  77. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/examples/frameworks/openai_agents.py +0 -0
  78. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/examples/frameworks/pydanticai.py +0 -0
  79. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/examples/frameworks/smolagents.py +0 -0
  80. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/examples/langgraph_agenticdome_firewall.py +0 -0
  81. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/examples/local_simulation_gallery.py +0 -0
  82. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/setup.cfg +0 -0
  83. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/setup.py +0 -0
  84. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/tests/test_agno_integration.py +0 -0
  85. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/tests/test_attack_demo.py +0 -0
  86. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/tests/test_autogen_integration.py +0 -0
  87. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/tests/test_aws_bedrock_integration.py +0 -0
  88. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/tests/test_claude_integration.py +0 -0
  89. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/tests/test_client.py +0 -0
  90. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/tests/test_crewai_integration.py +0 -0
  91. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/tests/test_execution_broker.py +0 -0
  92. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/tests/test_google_adk_integration.py +0 -0
  93. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/tests/test_identity_context.py +0 -0
  94. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/tests/test_langgraph_integration.py +0 -0
  95. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/tests/test_llamaindex_integration.py +0 -0
  96. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/tests/test_mcp_host_integration.py +0 -0
  97. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/tests/test_microsoft_agent_framework_integration.py +0 -0
  98. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/tests/test_microsoft_ai_foundry_integration.py +0 -0
  99. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/tests/test_openai_agents_integration.py +0 -0
  100. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/tests/test_pydanticai_integration.py +0 -0
  101. {agenticdome_python_sdk-1.2.11 → agenticdome_python_sdk-1.2.13}/tests/test_smolagents_integration.py +0 -0
@@ -0,0 +1,55 @@
1
+ # Contributing to the AgenticDome Python SDK
2
+
3
+ Thank you for evaluating or contributing to the public AgenticDome Python SDK source.
4
+
5
+ ## Development environment
6
+
7
+ From the SDK root:
8
+
9
+ ```bash
10
+ python3 -m venv .venv
11
+ source .venv/bin/activate
12
+ python -m pip install --upgrade pip setuptools wheel
13
+ python -m pip install -e ".[dev]"
14
+ ```
15
+
16
+ Dependency installation may require network access. Once dependencies are installed, the public test suite does not require AgenticDome credentials or connections to live AgenticDome or third-party services:
17
+
18
+ ```bash
19
+ python -m pytest -q
20
+ ```
21
+
22
+ ## Build verification
23
+
24
+ Create the public wheel and source distribution, then validate their package metadata:
25
+
26
+ ```bash
27
+ python -m build
28
+ python -m twine check dist/*
29
+ ```
30
+
31
+ These commands validate public source artifacts only. Live runtime certification and package publication are operated separately by AgenticDome.
32
+
33
+ ## Adding or updating a framework example
34
+
35
+ 1. Add or update the dependency-light example under `examples/frameworks/`.
36
+ 2. Demonstrate one allowed action and one blocked action without executing a real tool.
37
+ 3. Register the framework in the public demo catalog when it is a new integration.
38
+ 4. Add or update the corresponding adapter test under `tests/`.
39
+ 5. Update the framework gallery and production integration playbook when the public attachment point changes.
40
+
41
+ Examples must use public SDK interfaces, placeholder credentials, and synthetic data. Do not publish private endpoints, tenant evidence, detection rules, internal policy logic, or release-runner implementation.
42
+
43
+ ## Pull requests
44
+
45
+ - Keep changes focused and explain the user-visible security behavior.
46
+ - Add regression tests for changed behavior and update customer documentation where required.
47
+ - Run `python -m pytest -q`, `python -m build`, and `python -m twine check dist/*` before requesting review.
48
+ - Expect security-sensitive changes to require maintainer review and possible design changes before merge.
49
+ - By submitting a contribution, you agree that it is provided under the repository's Apache-2.0 license.
50
+
51
+ ## Security and support
52
+
53
+ Do not include tenant credentials, customer data or private runtime evidence in issues or contributions. Use the public [issue tracker](https://github.com/agenticdome/agenticdome-python-sdk/issues) for reproducible SDK defects that contain no sensitive information.
54
+
55
+ Report suspected vulnerabilities privately to **info@agenticdome.io**. Do not open a public issue for a security vulnerability; follow [SECURITY.md](SECURITY.md).
@@ -0,0 +1,202 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright [yyyy] [name of copyright owner]
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
@@ -1,10 +1,14 @@
1
1
  include README.md
2
+ include CONTRIBUTING.md
3
+ include SECURITY.md
2
4
  include LICENSE
5
+ include NOTICE
3
6
  include pyproject.toml
4
7
  include setup.py
5
8
 
6
9
  recursive-include examples *.py
7
10
  recursive-include examples *.md
11
+ recursive-include docs *.md
8
12
  recursive-include tests *.py
9
13
  global-exclude __pycache__
10
14
  global-exclude *.py[cod]
@@ -0,0 +1,12 @@
1
+ AgenticDome Python SDK
2
+ Copyright 2026 AgenticDome
3
+
4
+ The SDK client is open source; it requires a paid AgenticDome tenant for live enforcement.
5
+
6
+ The Apache License 2.0 in this distribution applies only to the SDK client,
7
+ public examples, tests, and documentation included in this repository. It does
8
+ not license the AgenticDome sidecar, management console, policy engine, threat
9
+ intelligence, or server-side decision logic, which are separate proprietary
10
+ products and services.
11
+
12
+ This NOTICE is informational and does not modify the Apache License 2.0.
@@ -1,14 +1,17 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agenticdome-python-sdk
3
- Version: 1.2.11
3
+ Version: 1.2.13
4
4
  Summary: Official Python SDK for AgenticDome security guardrails, DLP, tool authorization, and multi-agent delegation enforcement.
5
5
  Author: AgenticDome
6
- License: Proprietary
6
+ License-Expression: Apache-2.0
7
7
  Project-URL: Homepage, https://www.agenticdome.io
8
8
  Project-URL: Repository, https://github.com/agenticdome/agenticdome-python-sdk
9
9
  Project-URL: Documentation, https://github.com/agenticdome/agenticdome-python-sdk#readme
10
+ Project-URL: Framework Integration Guides, https://github.com/agenticdome/agenticdome-python-sdk/tree/main/docs/frameworks
11
+ Project-URL: MCP Integration Guide, https://github.com/agenticdome/agenticdome-python-sdk/blob/main/docs/mcp-integration.md
10
12
  Project-URL: Issues, https://github.com/agenticdome/agenticdome-python-sdk/issues
11
13
  Project-URL: Examples, https://github.com/agenticdome/agenticdome-python-sdk/tree/main/examples
14
+ Project-URL: Security, https://github.com/agenticdome/agenticdome-python-sdk/security/policy
12
15
  Keywords: agentguard,agenticdome,ai-security,agent-security,guardrails,a2a,mcp,zero-trust,runtime-security
13
16
  Classifier: Development Status :: 5 - Production/Stable
14
17
  Classifier: Intended Audience :: Developers
@@ -25,6 +28,7 @@ Classifier: Programming Language :: Python :: 3.12
25
28
  Requires-Python: >=3.9
26
29
  Description-Content-Type: text/markdown
27
30
  License-File: LICENSE
31
+ License-File: NOTICE
28
32
  Requires-Dist: requests>=2.31.0
29
33
  Requires-Dist: urllib3>=2.0.0
30
34
  Provides-Extra: crewai
@@ -109,9 +113,10 @@ Dynamic: license-file
109
113
 
110
114
  [![PyPI version](https://img.shields.io/pypi/v/agenticdome-python-sdk.svg)](https://pypi.org/project/agenticdome-python-sdk/)
111
115
  [![Python Versions](https://img.shields.io/pypi/pyversions/agenticdome-python-sdk.svg)](https://pypi.org/project/agenticdome-python-sdk/)
112
- [![License: Proprietary](https://img.shields.io/badge/License-Proprietary-blue.svg)](#license)
116
+ [![CI](https://github.com/agenticdome/agenticdome-python-sdk/actions/workflows/ci.yml/badge.svg)](https://github.com/agenticdome/agenticdome-python-sdk/actions/workflows/ci.yml)
117
+ [![License: Apache-2.0](https://img.shields.io/badge/License-Apache--2.0-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0)
113
118
 
114
- [Source and examples](https://github.com/agenticdome/agenticdome-python-sdk) · [Issue tracker](https://github.com/agenticdome/agenticdome-python-sdk/issues) · [PyPI package](https://pypi.org/project/agenticdome-python-sdk/)
119
+ [Source and examples](https://github.com/agenticdome/agenticdome-python-sdk) · [Framework integration guides](https://github.com/agenticdome/agenticdome-python-sdk/tree/main/docs/frameworks) · [MCP integration guide](https://github.com/agenticdome/agenticdome-python-sdk/blob/main/docs/mcp-integration.md) · [Issue tracker](https://github.com/agenticdome/agenticdome-python-sdk/issues) · [Security policy](https://github.com/agenticdome/agenticdome-python-sdk/blob/main/SECURITY.md) · [PyPI package](https://pypi.org/project/agenticdome-python-sdk/)
115
120
 
116
121
  > **Production-grade security guardrails, DLP, tool authorization, and cryptographically verified multi-agent delegation for Python autonomous AI runtimes.**
117
122
 
@@ -150,7 +155,7 @@ agenticdome-demo --list-frameworks
150
155
  agenticdome-demo --framework all --scenario both
151
156
  ```
152
157
 
153
- You can also open the [framework example gallery](examples/README.md) and run the individual example matching your stack. Before editing production code, use the [production integration playbook](examples/PRODUCTION_INTEGRATION.md) to find the exact construction file, public attachment call and local execution boundary for your framework.
158
+ You can also open the [framework example gallery](examples/README.md) and run the individual example matching your stack. Before editing production code, choose the dedicated [framework integration guide](docs/frameworks/README.md), then use the [production integration playbook](examples/PRODUCTION_INTEGRATION.md) for the cross-framework attachment and proof checklist. MCP host and gateway developers can follow the dedicated [MCP Action Firewall guide](https://github.com/agenticdome/agenticdome-python-sdk/blob/main/docs/mcp-integration.md).
154
159
 
155
160
  ### 5. Connect the same integration to AgenticDome
156
161
 
@@ -185,13 +190,13 @@ result = crew.kickoff() # hostile prompts, unsafe tools, and rogue
185
190
  4. [Quickstart](#quickstart)
186
191
  5. [Installation](#installation)
187
192
  6. [Configuration](#configuration)
188
- 7. [Choosing Your Integration Point](#choosing-your-integration-point)
193
+ 7. [Choosing Your Integration Point](#choosing-your-integration-point) — [dedicated framework guides](docs/frameworks/README.md)
189
194
  8. [Framework Integrations](#framework-integrations)
190
195
  - [CrewAI](#crewai) · [PydanticAI](#pydanticai) · [LangGraph](#langgraph) · [Microsoft Agent Framework](#microsoft-agent-framework) · [Microsoft AutoGen](#microsoft-autogen) · [Microsoft AI Foundry](#microsoft-ai-foundry) · [OpenAI Agents SDK](#openai-agents-sdk) · [Claude Agent SDK](#claude-agent-sdk) · [Hugging Face smolagents](#hugging-face-smolagents) · [Agno](#agno) · [Google ADK](#google-adk) · [LlamaIndex](#llamaindex) · [AWS Bedrock](#aws-bedrock) · [MCP Host / Gateway](#mcp-host--gateway)
191
196
  9. [Core SDK Client (Custom Runtimes)](#core-sdk-client-custom-runtimes)
192
197
  10. [Production Deployment](#production-deployment)
193
198
  11. [Source Installation and Verification](#source-installation-and-verification)
194
- 12. [License](#license)
199
+ 12. [Licensing](#licensing)
195
200
 
196
201
  ---
197
202
 
@@ -2195,6 +2200,8 @@ from agenticdome_sdk.aws_bedrock import (
2195
2200
 
2196
2201
  The host is the right place to protect MCP: it can inspect `tools/call` requests before side effects happen and sanitize tool results before they return to the planner, agent, or client. The adapter accepts plain JSON-RPC request dictionaries, so it works with any MCP host, proxy, gateway, or router.
2197
2202
 
2203
+ Start with the dedicated [MCP Host and Gateway Action Firewall guide](https://github.com/agenticdome/agenticdome-python-sdk/blob/main/docs/mcp-integration.md), including the network-free allowed, blocked, and poisoned-result rehearsal.
2204
+
2198
2205
  ```bash
2199
2206
  pip install "agenticdome-python-sdk[mcp]"
2200
2207
  ```
@@ -2560,7 +2567,7 @@ Plus, for every production deployment:
2560
2567
 
2561
2568
  ## Source Installation and Verification
2562
2569
 
2563
- Most customers should install the published package from PyPI. Contributors evaluating the public source can perform a network-free verification from the SDK root:
2570
+ Most customers should install the published package from PyPI. Contributors evaluating the public source can run the public tests from the SDK root:
2564
2571
 
2565
2572
  ```bash
2566
2573
  python3 -m venv .venv
@@ -2569,18 +2576,18 @@ source .venv/bin/activate
2569
2576
  python -m pip install --upgrade pip setuptools wheel
2570
2577
  python -m pip install -e ".[dev]"
2571
2578
  python -m pytest -q
2572
- python -m build
2573
- python -m twine check dist/*
2574
2579
  ```
2575
2580
 
2576
- The public suite verifies the package contract and supported adapter behavior without tenant credentials or live third-party services. AgenticDome operates live certification and package publication separately from customer application environments.
2581
+ Installing dependencies may require network access. After installation, the public tests require no AgenticDome credentials or live AgenticDome or third-party service connections. They verify the core package contract and dependency-light adapter behavior.
2582
+
2583
+ Source contributors can find artifact build and metadata validation commands in [CONTRIBUTING.md](https://github.com/agenticdome/agenticdome-python-sdk/blob/main/CONTRIBUTING.md). AgenticDome performs live certification and package publication separately from customer application environments.
2577
2584
 
2578
2585
  ---
2579
2586
 
2580
- ## License
2587
+ ## Licensing
2581
2588
 
2582
- Copyright (c) AgenticDome. All rights reserved.
2589
+ The Python SDK client, public examples, and public SDK documentation in this repository are open source under the [Apache License 2.0](https://github.com/agenticdome/agenticdome-python-sdk/blob/main/LICENSE). Live policy enforcement requires an active AgenticDome tenant and assigned runtime service. The AgenticDome sidecar, management console, policy engine, threat intelligence, and server-side decision logic are separate proprietary products and are not licensed under this SDK repository's Apache-2.0 license. See [NOTICE](https://github.com/agenticdome/agenticdome-python-sdk/blob/main/NOTICE) for the commercial service boundary.
2583
2590
 
2584
- This SDK is distributed under a proprietary license. Use, copying, modification, and redistribution are permitted only under a written agreement with AgenticDome or terms published by AgenticDome for this package.
2591
+ Security vulnerabilities must be reported privately as described in [SECURITY.md](https://github.com/agenticdome/agenticdome-python-sdk/blob/main/SECURITY.md), not through a public issue.
2585
2592
 
2586
2593
  For enterprise deployments, advanced governance workflows, dedicated regional control planes, or priority integration support, visit **[agenticdome.io](https://agenticdome.io)**.
@@ -2,9 +2,10 @@
2
2
 
3
3
  [![PyPI version](https://img.shields.io/pypi/v/agenticdome-python-sdk.svg)](https://pypi.org/project/agenticdome-python-sdk/)
4
4
  [![Python Versions](https://img.shields.io/pypi/pyversions/agenticdome-python-sdk.svg)](https://pypi.org/project/agenticdome-python-sdk/)
5
- [![License: Proprietary](https://img.shields.io/badge/License-Proprietary-blue.svg)](#license)
5
+ [![CI](https://github.com/agenticdome/agenticdome-python-sdk/actions/workflows/ci.yml/badge.svg)](https://github.com/agenticdome/agenticdome-python-sdk/actions/workflows/ci.yml)
6
+ [![License: Apache-2.0](https://img.shields.io/badge/License-Apache--2.0-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0)
6
7
 
7
- [Source and examples](https://github.com/agenticdome/agenticdome-python-sdk) · [Issue tracker](https://github.com/agenticdome/agenticdome-python-sdk/issues) · [PyPI package](https://pypi.org/project/agenticdome-python-sdk/)
8
+ [Source and examples](https://github.com/agenticdome/agenticdome-python-sdk) · [Framework integration guides](https://github.com/agenticdome/agenticdome-python-sdk/tree/main/docs/frameworks) · [MCP integration guide](https://github.com/agenticdome/agenticdome-python-sdk/blob/main/docs/mcp-integration.md) · [Issue tracker](https://github.com/agenticdome/agenticdome-python-sdk/issues) · [Security policy](https://github.com/agenticdome/agenticdome-python-sdk/blob/main/SECURITY.md) · [PyPI package](https://pypi.org/project/agenticdome-python-sdk/)
8
9
 
9
10
  > **Production-grade security guardrails, DLP, tool authorization, and cryptographically verified multi-agent delegation for Python autonomous AI runtimes.**
10
11
 
@@ -43,7 +44,7 @@ agenticdome-demo --list-frameworks
43
44
  agenticdome-demo --framework all --scenario both
44
45
  ```
45
46
 
46
- You can also open the [framework example gallery](examples/README.md) and run the individual example matching your stack. Before editing production code, use the [production integration playbook](examples/PRODUCTION_INTEGRATION.md) to find the exact construction file, public attachment call and local execution boundary for your framework.
47
+ You can also open the [framework example gallery](examples/README.md) and run the individual example matching your stack. Before editing production code, choose the dedicated [framework integration guide](docs/frameworks/README.md), then use the [production integration playbook](examples/PRODUCTION_INTEGRATION.md) for the cross-framework attachment and proof checklist. MCP host and gateway developers can follow the dedicated [MCP Action Firewall guide](https://github.com/agenticdome/agenticdome-python-sdk/blob/main/docs/mcp-integration.md).
47
48
 
48
49
  ### 5. Connect the same integration to AgenticDome
49
50
 
@@ -78,13 +79,13 @@ result = crew.kickoff() # hostile prompts, unsafe tools, and rogue
78
79
  4. [Quickstart](#quickstart)
79
80
  5. [Installation](#installation)
80
81
  6. [Configuration](#configuration)
81
- 7. [Choosing Your Integration Point](#choosing-your-integration-point)
82
+ 7. [Choosing Your Integration Point](#choosing-your-integration-point) — [dedicated framework guides](docs/frameworks/README.md)
82
83
  8. [Framework Integrations](#framework-integrations)
83
84
  - [CrewAI](#crewai) · [PydanticAI](#pydanticai) · [LangGraph](#langgraph) · [Microsoft Agent Framework](#microsoft-agent-framework) · [Microsoft AutoGen](#microsoft-autogen) · [Microsoft AI Foundry](#microsoft-ai-foundry) · [OpenAI Agents SDK](#openai-agents-sdk) · [Claude Agent SDK](#claude-agent-sdk) · [Hugging Face smolagents](#hugging-face-smolagents) · [Agno](#agno) · [Google ADK](#google-adk) · [LlamaIndex](#llamaindex) · [AWS Bedrock](#aws-bedrock) · [MCP Host / Gateway](#mcp-host--gateway)
84
85
  9. [Core SDK Client (Custom Runtimes)](#core-sdk-client-custom-runtimes)
85
86
  10. [Production Deployment](#production-deployment)
86
87
  11. [Source Installation and Verification](#source-installation-and-verification)
87
- 12. [License](#license)
88
+ 12. [Licensing](#licensing)
88
89
 
89
90
  ---
90
91
 
@@ -2088,6 +2089,8 @@ from agenticdome_sdk.aws_bedrock import (
2088
2089
 
2089
2090
  The host is the right place to protect MCP: it can inspect `tools/call` requests before side effects happen and sanitize tool results before they return to the planner, agent, or client. The adapter accepts plain JSON-RPC request dictionaries, so it works with any MCP host, proxy, gateway, or router.
2090
2091
 
2092
+ Start with the dedicated [MCP Host and Gateway Action Firewall guide](https://github.com/agenticdome/agenticdome-python-sdk/blob/main/docs/mcp-integration.md), including the network-free allowed, blocked, and poisoned-result rehearsal.
2093
+
2091
2094
  ```bash
2092
2095
  pip install "agenticdome-python-sdk[mcp]"
2093
2096
  ```
@@ -2453,7 +2456,7 @@ Plus, for every production deployment:
2453
2456
 
2454
2457
  ## Source Installation and Verification
2455
2458
 
2456
- Most customers should install the published package from PyPI. Contributors evaluating the public source can perform a network-free verification from the SDK root:
2459
+ Most customers should install the published package from PyPI. Contributors evaluating the public source can run the public tests from the SDK root:
2457
2460
 
2458
2461
  ```bash
2459
2462
  python3 -m venv .venv
@@ -2462,18 +2465,18 @@ source .venv/bin/activate
2462
2465
  python -m pip install --upgrade pip setuptools wheel
2463
2466
  python -m pip install -e ".[dev]"
2464
2467
  python -m pytest -q
2465
- python -m build
2466
- python -m twine check dist/*
2467
2468
  ```
2468
2469
 
2469
- The public suite verifies the package contract and supported adapter behavior without tenant credentials or live third-party services. AgenticDome operates live certification and package publication separately from customer application environments.
2470
+ Installing dependencies may require network access. After installation, the public tests require no AgenticDome credentials or live AgenticDome or third-party service connections. They verify the core package contract and dependency-light adapter behavior.
2471
+
2472
+ Source contributors can find artifact build and metadata validation commands in [CONTRIBUTING.md](https://github.com/agenticdome/agenticdome-python-sdk/blob/main/CONTRIBUTING.md). AgenticDome performs live certification and package publication separately from customer application environments.
2470
2473
 
2471
2474
  ---
2472
2475
 
2473
- ## License
2476
+ ## Licensing
2474
2477
 
2475
- Copyright (c) AgenticDome. All rights reserved.
2478
+ The Python SDK client, public examples, and public SDK documentation in this repository are open source under the [Apache License 2.0](https://github.com/agenticdome/agenticdome-python-sdk/blob/main/LICENSE). Live policy enforcement requires an active AgenticDome tenant and assigned runtime service. The AgenticDome sidecar, management console, policy engine, threat intelligence, and server-side decision logic are separate proprietary products and are not licensed under this SDK repository's Apache-2.0 license. See [NOTICE](https://github.com/agenticdome/agenticdome-python-sdk/blob/main/NOTICE) for the commercial service boundary.
2476
2479
 
2477
- This SDK is distributed under a proprietary license. Use, copying, modification, and redistribution are permitted only under a written agreement with AgenticDome or terms published by AgenticDome for this package.
2480
+ Security vulnerabilities must be reported privately as described in [SECURITY.md](https://github.com/agenticdome/agenticdome-python-sdk/blob/main/SECURITY.md), not through a public issue.
2478
2481
 
2479
2482
  For enterprise deployments, advanced governance workflows, dedicated regional control planes, or priority integration support, visit **[agenticdome.io](https://agenticdome.io)**.
@@ -0,0 +1,19 @@
1
+ # Security Policy
2
+
3
+ ## Reporting a vulnerability
4
+
5
+ Report suspected vulnerabilities privately to **info@agenticdome.io**.
6
+
7
+ Do not open a public GitHub issue for a vulnerability. Do not include production API keys, tenant secrets, customer records, prompts, tool arguments, runtime evidence, or access tokens in a public issue or pull request.
8
+
9
+ Include, where safe:
10
+
11
+ - affected package version and framework;
12
+ - a minimal reproduction using synthetic data;
13
+ - expected and observed security behavior;
14
+ - relevant sanitized logs; and
15
+ - a secure contact method for follow-up.
16
+
17
+ AgenticDome will acknowledge the report, assess severity and impact, coordinate remediation, and discuss disclosure timing with the reporter. Please allow a reasonable remediation period before public disclosure.
18
+
19
+ For ordinary defects and feature requests that have no security impact, use the public [issue tracker](https://github.com/agenticdome/agenticdome-python-sdk/issues).
@@ -1,14 +1,17 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agenticdome-python-sdk
3
- Version: 1.2.11
3
+ Version: 1.2.13
4
4
  Summary: Official Python SDK for AgenticDome security guardrails, DLP, tool authorization, and multi-agent delegation enforcement.
5
5
  Author: AgenticDome
6
- License: Proprietary
6
+ License-Expression: Apache-2.0
7
7
  Project-URL: Homepage, https://www.agenticdome.io
8
8
  Project-URL: Repository, https://github.com/agenticdome/agenticdome-python-sdk
9
9
  Project-URL: Documentation, https://github.com/agenticdome/agenticdome-python-sdk#readme
10
+ Project-URL: Framework Integration Guides, https://github.com/agenticdome/agenticdome-python-sdk/tree/main/docs/frameworks
11
+ Project-URL: MCP Integration Guide, https://github.com/agenticdome/agenticdome-python-sdk/blob/main/docs/mcp-integration.md
10
12
  Project-URL: Issues, https://github.com/agenticdome/agenticdome-python-sdk/issues
11
13
  Project-URL: Examples, https://github.com/agenticdome/agenticdome-python-sdk/tree/main/examples
14
+ Project-URL: Security, https://github.com/agenticdome/agenticdome-python-sdk/security/policy
12
15
  Keywords: agentguard,agenticdome,ai-security,agent-security,guardrails,a2a,mcp,zero-trust,runtime-security
13
16
  Classifier: Development Status :: 5 - Production/Stable
14
17
  Classifier: Intended Audience :: Developers
@@ -25,6 +28,7 @@ Classifier: Programming Language :: Python :: 3.12
25
28
  Requires-Python: >=3.9
26
29
  Description-Content-Type: text/markdown
27
30
  License-File: LICENSE
31
+ License-File: NOTICE
28
32
  Requires-Dist: requests>=2.31.0
29
33
  Requires-Dist: urllib3>=2.0.0
30
34
  Provides-Extra: crewai
@@ -109,9 +113,10 @@ Dynamic: license-file
109
113
 
110
114
  [![PyPI version](https://img.shields.io/pypi/v/agenticdome-python-sdk.svg)](https://pypi.org/project/agenticdome-python-sdk/)
111
115
  [![Python Versions](https://img.shields.io/pypi/pyversions/agenticdome-python-sdk.svg)](https://pypi.org/project/agenticdome-python-sdk/)
112
- [![License: Proprietary](https://img.shields.io/badge/License-Proprietary-blue.svg)](#license)
116
+ [![CI](https://github.com/agenticdome/agenticdome-python-sdk/actions/workflows/ci.yml/badge.svg)](https://github.com/agenticdome/agenticdome-python-sdk/actions/workflows/ci.yml)
117
+ [![License: Apache-2.0](https://img.shields.io/badge/License-Apache--2.0-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0)
113
118
 
114
- [Source and examples](https://github.com/agenticdome/agenticdome-python-sdk) · [Issue tracker](https://github.com/agenticdome/agenticdome-python-sdk/issues) · [PyPI package](https://pypi.org/project/agenticdome-python-sdk/)
119
+ [Source and examples](https://github.com/agenticdome/agenticdome-python-sdk) · [Framework integration guides](https://github.com/agenticdome/agenticdome-python-sdk/tree/main/docs/frameworks) · [MCP integration guide](https://github.com/agenticdome/agenticdome-python-sdk/blob/main/docs/mcp-integration.md) · [Issue tracker](https://github.com/agenticdome/agenticdome-python-sdk/issues) · [Security policy](https://github.com/agenticdome/agenticdome-python-sdk/blob/main/SECURITY.md) · [PyPI package](https://pypi.org/project/agenticdome-python-sdk/)
115
120
 
116
121
  > **Production-grade security guardrails, DLP, tool authorization, and cryptographically verified multi-agent delegation for Python autonomous AI runtimes.**
117
122
 
@@ -150,7 +155,7 @@ agenticdome-demo --list-frameworks
150
155
  agenticdome-demo --framework all --scenario both
151
156
  ```
152
157
 
153
- You can also open the [framework example gallery](examples/README.md) and run the individual example matching your stack. Before editing production code, use the [production integration playbook](examples/PRODUCTION_INTEGRATION.md) to find the exact construction file, public attachment call and local execution boundary for your framework.
158
+ You can also open the [framework example gallery](examples/README.md) and run the individual example matching your stack. Before editing production code, choose the dedicated [framework integration guide](docs/frameworks/README.md), then use the [production integration playbook](examples/PRODUCTION_INTEGRATION.md) for the cross-framework attachment and proof checklist. MCP host and gateway developers can follow the dedicated [MCP Action Firewall guide](https://github.com/agenticdome/agenticdome-python-sdk/blob/main/docs/mcp-integration.md).
154
159
 
155
160
  ### 5. Connect the same integration to AgenticDome
156
161
 
@@ -185,13 +190,13 @@ result = crew.kickoff() # hostile prompts, unsafe tools, and rogue
185
190
  4. [Quickstart](#quickstart)
186
191
  5. [Installation](#installation)
187
192
  6. [Configuration](#configuration)
188
- 7. [Choosing Your Integration Point](#choosing-your-integration-point)
193
+ 7. [Choosing Your Integration Point](#choosing-your-integration-point) — [dedicated framework guides](docs/frameworks/README.md)
189
194
  8. [Framework Integrations](#framework-integrations)
190
195
  - [CrewAI](#crewai) · [PydanticAI](#pydanticai) · [LangGraph](#langgraph) · [Microsoft Agent Framework](#microsoft-agent-framework) · [Microsoft AutoGen](#microsoft-autogen) · [Microsoft AI Foundry](#microsoft-ai-foundry) · [OpenAI Agents SDK](#openai-agents-sdk) · [Claude Agent SDK](#claude-agent-sdk) · [Hugging Face smolagents](#hugging-face-smolagents) · [Agno](#agno) · [Google ADK](#google-adk) · [LlamaIndex](#llamaindex) · [AWS Bedrock](#aws-bedrock) · [MCP Host / Gateway](#mcp-host--gateway)
191
196
  9. [Core SDK Client (Custom Runtimes)](#core-sdk-client-custom-runtimes)
192
197
  10. [Production Deployment](#production-deployment)
193
198
  11. [Source Installation and Verification](#source-installation-and-verification)
194
- 12. [License](#license)
199
+ 12. [Licensing](#licensing)
195
200
 
196
201
  ---
197
202
 
@@ -2195,6 +2200,8 @@ from agenticdome_sdk.aws_bedrock import (
2195
2200
 
2196
2201
  The host is the right place to protect MCP: it can inspect `tools/call` requests before side effects happen and sanitize tool results before they return to the planner, agent, or client. The adapter accepts plain JSON-RPC request dictionaries, so it works with any MCP host, proxy, gateway, or router.
2197
2202
 
2203
+ Start with the dedicated [MCP Host and Gateway Action Firewall guide](https://github.com/agenticdome/agenticdome-python-sdk/blob/main/docs/mcp-integration.md), including the network-free allowed, blocked, and poisoned-result rehearsal.
2204
+
2198
2205
  ```bash
2199
2206
  pip install "agenticdome-python-sdk[mcp]"
2200
2207
  ```
@@ -2560,7 +2567,7 @@ Plus, for every production deployment:
2560
2567
 
2561
2568
  ## Source Installation and Verification
2562
2569
 
2563
- Most customers should install the published package from PyPI. Contributors evaluating the public source can perform a network-free verification from the SDK root:
2570
+ Most customers should install the published package from PyPI. Contributors evaluating the public source can run the public tests from the SDK root:
2564
2571
 
2565
2572
  ```bash
2566
2573
  python3 -m venv .venv
@@ -2569,18 +2576,18 @@ source .venv/bin/activate
2569
2576
  python -m pip install --upgrade pip setuptools wheel
2570
2577
  python -m pip install -e ".[dev]"
2571
2578
  python -m pytest -q
2572
- python -m build
2573
- python -m twine check dist/*
2574
2579
  ```
2575
2580
 
2576
- The public suite verifies the package contract and supported adapter behavior without tenant credentials or live third-party services. AgenticDome operates live certification and package publication separately from customer application environments.
2581
+ Installing dependencies may require network access. After installation, the public tests require no AgenticDome credentials or live AgenticDome or third-party service connections. They verify the core package contract and dependency-light adapter behavior.
2582
+
2583
+ Source contributors can find artifact build and metadata validation commands in [CONTRIBUTING.md](https://github.com/agenticdome/agenticdome-python-sdk/blob/main/CONTRIBUTING.md). AgenticDome performs live certification and package publication separately from customer application environments.
2577
2584
 
2578
2585
  ---
2579
2586
 
2580
- ## License
2587
+ ## Licensing
2581
2588
 
2582
- Copyright (c) AgenticDome. All rights reserved.
2589
+ The Python SDK client, public examples, and public SDK documentation in this repository are open source under the [Apache License 2.0](https://github.com/agenticdome/agenticdome-python-sdk/blob/main/LICENSE). Live policy enforcement requires an active AgenticDome tenant and assigned runtime service. The AgenticDome sidecar, management console, policy engine, threat intelligence, and server-side decision logic are separate proprietary products and are not licensed under this SDK repository's Apache-2.0 license. See [NOTICE](https://github.com/agenticdome/agenticdome-python-sdk/blob/main/NOTICE) for the commercial service boundary.
2583
2590
 
2584
- This SDK is distributed under a proprietary license. Use, copying, modification, and redistribution are permitted only under a written agreement with AgenticDome or terms published by AgenticDome for this package.
2591
+ Security vulnerabilities must be reported privately as described in [SECURITY.md](https://github.com/agenticdome/agenticdome-python-sdk/blob/main/SECURITY.md), not through a public issue.
2585
2592
 
2586
2593
  For enterprise deployments, advanced governance workflows, dedicated regional control planes, or priority integration support, visit **[agenticdome.io](https://agenticdome.io)**.