stateweave 0.2.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.
- stateweave-0.2.0/LICENSE +189 -0
- stateweave-0.2.0/PKG-INFO +357 -0
- stateweave-0.2.0/README.md +312 -0
- stateweave-0.2.0/pyproject.toml +98 -0
- stateweave-0.2.0/setup.cfg +4 -0
- stateweave-0.2.0/stateweave/__init__.py +88 -0
- stateweave-0.2.0/stateweave/adapters/__init__.py +45 -0
- stateweave-0.2.0/stateweave/adapters/autogen_adapter.py +562 -0
- stateweave-0.2.0/stateweave/adapters/base.py +136 -0
- stateweave-0.2.0/stateweave/adapters/crewai_adapter.py +459 -0
- stateweave-0.2.0/stateweave/adapters/dspy_adapter.py +405 -0
- stateweave-0.2.0/stateweave/adapters/haystack_adapter.py +338 -0
- stateweave-0.2.0/stateweave/adapters/langgraph_adapter.py +372 -0
- stateweave-0.2.0/stateweave/adapters/letta_adapter.py +449 -0
- stateweave-0.2.0/stateweave/adapters/llamaindex_adapter.py +460 -0
- stateweave-0.2.0/stateweave/adapters/mcp_adapter.py +381 -0
- stateweave-0.2.0/stateweave/adapters/openai_agents_adapter.py +477 -0
- stateweave-0.2.0/stateweave/adapters/semantic_kernel_adapter.py +350 -0
- stateweave-0.2.0/stateweave/cli.py +335 -0
- stateweave-0.2.0/stateweave/compliance/__init__.py +1 -0
- stateweave-0.2.0/stateweave/compliance/registry.py +88 -0
- stateweave-0.2.0/stateweave/compliance/scanner_base.py +106 -0
- stateweave-0.2.0/stateweave/compliance/scanners/__init__.py +1 -0
- stateweave-0.2.0/stateweave/compliance/scanners/adapter_contract.py +129 -0
- stateweave-0.2.0/stateweave/compliance/scanners/dependency_cycles.py +123 -0
- stateweave-0.2.0/stateweave/compliance/scanners/encryption_compliance.py +78 -0
- stateweave-0.2.0/stateweave/compliance/scanners/file_architecture.py +77 -0
- stateweave-0.2.0/stateweave/compliance/scanners/import_discipline.py +137 -0
- stateweave-0.2.0/stateweave/compliance/scanners/logger_naming.py +84 -0
- stateweave-0.2.0/stateweave/compliance/scanners/mcp_protocol.py +87 -0
- stateweave-0.2.0/stateweave/compliance/scanners/schema_integrity.py +102 -0
- stateweave-0.2.0/stateweave/compliance/scanners/serialization_safety.py +80 -0
- stateweave-0.2.0/stateweave/compliance/scanners/test_coverage_gate.py +110 -0
- stateweave-0.2.0/stateweave/core/__init__.py +20 -0
- stateweave-0.2.0/stateweave/core/detect.py +204 -0
- stateweave-0.2.0/stateweave/core/diff.py +224 -0
- stateweave-0.2.0/stateweave/core/encryption.py +200 -0
- stateweave-0.2.0/stateweave/core/generator.py +333 -0
- stateweave-0.2.0/stateweave/core/migration.py +332 -0
- stateweave-0.2.0/stateweave/core/portability.py +244 -0
- stateweave-0.2.0/stateweave/core/reports.py +324 -0
- stateweave-0.2.0/stateweave/core/serializer.py +143 -0
- stateweave-0.2.0/stateweave/mcp_server/__init__.py +2 -0
- stateweave-0.2.0/stateweave/mcp_server/__main__.py +327 -0
- stateweave-0.2.0/stateweave/mcp_server/server.py +353 -0
- stateweave-0.2.0/stateweave/py.typed +0 -0
- stateweave-0.2.0/stateweave/schema/__init__.py +41 -0
- stateweave-0.2.0/stateweave/schema/v1.py +207 -0
- stateweave-0.2.0/stateweave/schema/validator.py +105 -0
- stateweave-0.2.0/stateweave/schema/versions.py +144 -0
- stateweave-0.2.0/stateweave.egg-info/PKG-INFO +357 -0
- stateweave-0.2.0/stateweave.egg-info/SOURCES.txt +54 -0
- stateweave-0.2.0/stateweave.egg-info/dependency_links.txt +1 -0
- stateweave-0.2.0/stateweave.egg-info/entry_points.txt +3 -0
- stateweave-0.2.0/stateweave.egg-info/requires.txt +26 -0
- stateweave-0.2.0/stateweave.egg-info/top_level.txt +1 -0
stateweave-0.2.0/LICENSE
ADDED
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work.
|
|
38
|
+
|
|
39
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
40
|
+
form, that is based on (or derived from) the Work and for which the
|
|
41
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
42
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
43
|
+
of this License, Derivative Works shall not include works that remain
|
|
44
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
45
|
+
the Work and Derivative Works thereof.
|
|
46
|
+
|
|
47
|
+
"Contribution" shall mean any work of authorship, including
|
|
48
|
+
the original version of the Work and any modifications or additions
|
|
49
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
50
|
+
submitted to the Licensor for inclusion in the Work by the copyright owner
|
|
51
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
52
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
53
|
+
means any form of electronic, verbal, or written communication sent
|
|
54
|
+
to the Licensor or its representatives, including but not limited to
|
|
55
|
+
communication on electronic mailing lists, source code control systems,
|
|
56
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
57
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
58
|
+
excluding communication that is conspicuously marked or otherwise
|
|
59
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
60
|
+
|
|
61
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
62
|
+
on behalf of whom a Contribution has been received by the Licensor and
|
|
63
|
+
subsequently incorporated within the Work.
|
|
64
|
+
|
|
65
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
66
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
67
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
68
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
69
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
70
|
+
Work and such Derivative Works in Source or Object form.
|
|
71
|
+
|
|
72
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
73
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
74
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
75
|
+
(except as stated in this section) patent license to make, have made,
|
|
76
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
77
|
+
where such license applies only to those patent claims licensable
|
|
78
|
+
by such Contributor that are necessarily infringed by their
|
|
79
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
80
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
81
|
+
institute patent litigation against any entity (including a
|
|
82
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
83
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
84
|
+
or contributory patent infringement, then any patent licenses
|
|
85
|
+
granted to You under this License for that Work shall terminate
|
|
86
|
+
as of the date such litigation is filed.
|
|
87
|
+
|
|
88
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
89
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
90
|
+
modifications, and in Source or Object form, provided that You
|
|
91
|
+
meet the following conditions:
|
|
92
|
+
|
|
93
|
+
(a) You must give any other recipients of the Work or
|
|
94
|
+
Derivative Works a copy of this License; and
|
|
95
|
+
|
|
96
|
+
(b) You must cause any modified files to carry prominent notices
|
|
97
|
+
stating that You changed the files; and
|
|
98
|
+
|
|
99
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
100
|
+
that You distribute, all copyright, patent, trademark, and
|
|
101
|
+
attribution notices from the Source form of the Work,
|
|
102
|
+
excluding those notices that do not pertain to any part of
|
|
103
|
+
the Derivative Works; and
|
|
104
|
+
|
|
105
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
106
|
+
distribution, then any Derivative Works that You distribute must
|
|
107
|
+
include a readable copy of the attribution notices contained
|
|
108
|
+
within such NOTICE file, excluding any notices that do not
|
|
109
|
+
pertain to any part of the Derivative Works, in at least one
|
|
110
|
+
of the following places: within a NOTICE text file distributed
|
|
111
|
+
as part of the Derivative Works; within the Source form or
|
|
112
|
+
documentation, if provided along with the Derivative Works; or,
|
|
113
|
+
within a display generated by the Derivative Works, if and
|
|
114
|
+
wherever such third-party notices normally appear. The contents
|
|
115
|
+
of the NOTICE file are for informational purposes only and
|
|
116
|
+
do not modify the License. You may add Your own attribution
|
|
117
|
+
notices within Derivative Works that You distribute, alongside
|
|
118
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
119
|
+
that such additional attribution notices cannot be construed
|
|
120
|
+
as modifying the License.
|
|
121
|
+
|
|
122
|
+
You may add Your own copyright statement to Your modifications and
|
|
123
|
+
may provide additional or different license terms and conditions
|
|
124
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
125
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
126
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
127
|
+
the conditions stated in this License.
|
|
128
|
+
|
|
129
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
130
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
131
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
132
|
+
this License, without any additional terms or conditions.
|
|
133
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
134
|
+
the terms of any separate license agreement you may have executed
|
|
135
|
+
with Licensor regarding such Contributions.
|
|
136
|
+
|
|
137
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
138
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
139
|
+
except as required for reasonable and customary use in describing the
|
|
140
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
141
|
+
|
|
142
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
143
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
144
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
145
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
146
|
+
implied, including, without limitation, any warranties or conditions
|
|
147
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
148
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
149
|
+
appropriateness of using or redistributing the Work and assume any
|
|
150
|
+
risks associated with Your exercise of permissions under this License.
|
|
151
|
+
|
|
152
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
153
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
154
|
+
unless required by applicable law (such as deliberate and grossly
|
|
155
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
156
|
+
liable to You for damages, including any direct, indirect, special,
|
|
157
|
+
incidental, or consequential damages of any character arising as a
|
|
158
|
+
result of this License or out of the use or inability to use the
|
|
159
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
160
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
161
|
+
other commercial damages or losses), even if such Contributor
|
|
162
|
+
has been advised of the possibility of such damages.
|
|
163
|
+
|
|
164
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
165
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
166
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
167
|
+
or other liability obligations and/or rights consistent with this
|
|
168
|
+
License. However, in accepting such obligations, You may act only
|
|
169
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
170
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
171
|
+
defend, and hold each Contributor harmless for any liability
|
|
172
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
173
|
+
of your accepting any such warranty or additional liability.
|
|
174
|
+
|
|
175
|
+
END OF TERMS AND CONDITIONS
|
|
176
|
+
|
|
177
|
+
Copyright 2026 Michael Goodwin
|
|
178
|
+
|
|
179
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
180
|
+
you may not use this file except in compliance with the License.
|
|
181
|
+
You may obtain a copy of the License at
|
|
182
|
+
|
|
183
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
184
|
+
|
|
185
|
+
Unless required by applicable law or agreed to in writing, software
|
|
186
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
187
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
188
|
+
See the License for the specific language governing permissions and
|
|
189
|
+
limitations under the License.
|
|
@@ -0,0 +1,357 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: stateweave
|
|
3
|
+
Version: 0.2.0
|
|
4
|
+
Summary: Cross-framework cognitive state serializer for AI agents
|
|
5
|
+
Author: Michael Goodwin
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://github.com/GDWN-BLDR/stateweave
|
|
8
|
+
Project-URL: Documentation, https://stateweave.dev
|
|
9
|
+
Project-URL: Repository, https://github.com/GDWN-BLDR/stateweave
|
|
10
|
+
Project-URL: Issues, https://github.com/GDWN-BLDR/stateweave/issues
|
|
11
|
+
Project-URL: Changelog, https://github.com/GDWN-BLDR/stateweave/blob/main/CHANGELOG.md
|
|
12
|
+
Classifier: Development Status :: 3 - Alpha
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
20
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
21
|
+
Requires-Python: >=3.10
|
|
22
|
+
Description-Content-Type: text/markdown
|
|
23
|
+
License-File: LICENSE
|
|
24
|
+
Requires-Dist: pydantic>=2.0
|
|
25
|
+
Requires-Dist: cryptography>=41.0
|
|
26
|
+
Requires-Dist: pyyaml>=6.0
|
|
27
|
+
Provides-Extra: langgraph
|
|
28
|
+
Requires-Dist: langgraph>=0.2.0; extra == "langgraph"
|
|
29
|
+
Requires-Dist: langchain-core>=0.3.0; extra == "langgraph"
|
|
30
|
+
Provides-Extra: mcp
|
|
31
|
+
Requires-Dist: mcp>=1.0.0; extra == "mcp"
|
|
32
|
+
Provides-Extra: crewai
|
|
33
|
+
Requires-Dist: crewai>=0.70; extra == "crewai"
|
|
34
|
+
Provides-Extra: autogen
|
|
35
|
+
Requires-Dist: pyautogen>=0.4; extra == "autogen"
|
|
36
|
+
Provides-Extra: dev
|
|
37
|
+
Requires-Dist: pytest>=7.0; extra == "dev"
|
|
38
|
+
Requires-Dist: pytest-asyncio>=0.23; extra == "dev"
|
|
39
|
+
Requires-Dist: hypothesis>=6.0; extra == "dev"
|
|
40
|
+
Requires-Dist: ruff>=0.3.0; extra == "dev"
|
|
41
|
+
Requires-Dist: mypy>=1.8; extra == "dev"
|
|
42
|
+
Provides-Extra: all
|
|
43
|
+
Requires-Dist: stateweave[autogen,crewai,dev,langgraph,mcp]; extra == "all"
|
|
44
|
+
Dynamic: license-file
|
|
45
|
+
|
|
46
|
+
<p align="center">
|
|
47
|
+
<h1 align="center">🧶 StateWeave</h1>
|
|
48
|
+
<p align="center"><strong>Your AI agent switches frameworks. Its memories come with it.</strong></p>
|
|
49
|
+
<p align="center">
|
|
50
|
+
<a href="https://pypi.org/project/stateweave/"><img src="https://img.shields.io/pypi/v/stateweave?color=%2334D058&label=PyPI" alt="PyPI"></a>
|
|
51
|
+
<a href="https://github.com/GDWN-BLDR/stateweave/actions"><img src="https://img.shields.io/github/actions/workflow/status/stateweave/stateweave/ci.yml?label=CI" alt="CI"></a>
|
|
52
|
+
<a href="https://github.com/GDWN-BLDR/stateweave/blob/main/LICENSE"><img src="https://img.shields.io/badge/License-Apache%202.0-blue.svg" alt="License"></a>
|
|
53
|
+
<a href="https://www.python.org/downloads/"><img src="https://img.shields.io/pypi/pyversions/stateweave" alt="Python"></a>
|
|
54
|
+
</p>
|
|
55
|
+
</p>
|
|
56
|
+
|
|
57
|
+
---
|
|
58
|
+
|
|
59
|
+
**StateWeave** is a cross-framework cognitive state serializer for AI agents. It lets agents migrate between LangGraph, MCP, CrewAI, and AutoGen while preserving their accumulated knowledge — conversation history, working memory, goals, tool results, and trust parameters.
|
|
60
|
+
|
|
61
|
+
No more rebuilding agent state from scratch when switching frameworks. No more vendor lock-in for your agent's brain.
|
|
62
|
+
|
|
63
|
+
## Why StateWeave?
|
|
64
|
+
|
|
65
|
+
Every time you move an agent between frameworks, you lose everything it learned. StateWeave solves this with a **Universal Schema** — a canonical representation of agent cognitive state that all frameworks translate to and from. One schema, N adapters, zero data loss (with explicit warnings for anything non-portable).
|
|
66
|
+
|
|
67
|
+
```
|
|
68
|
+
┌─────────────┐ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐
|
|
69
|
+
│ LangGraph │ │ MCP │ │ CrewAI │ │ AutoGen │
|
|
70
|
+
│ Adapter │ │ Adapter │ │ Adapter │ │ Adapter │
|
|
71
|
+
└──────┬──────┘ └──────┬──────┘ └──────┬──────┘ └──────┬──────┘
|
|
72
|
+
│ │ │ │
|
|
73
|
+
└───────────┬───────┴───────────┬───────┘ │
|
|
74
|
+
│ │ │
|
|
75
|
+
▼ ▼ ▼
|
|
76
|
+
┌──────────────────────────────────────────────────────────┐
|
|
77
|
+
│ 🧶 Universal Schema v1 │
|
|
78
|
+
│ │
|
|
79
|
+
│ conversation_history · working_memory · goal_tree │
|
|
80
|
+
│ tool_results_cache · trust_parameters · audit_trail │
|
|
81
|
+
└──────────────────────────────────────────────────────────┘
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
**Star topology, not mesh.** N adapters, not N² translation pairs. Adding a new framework = one adapter, instant compatibility with everything else.
|
|
85
|
+
|
|
86
|
+
## Quick Start
|
|
87
|
+
|
|
88
|
+
### Install
|
|
89
|
+
|
|
90
|
+
```bash
|
|
91
|
+
pip install stateweave
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
### Export an Agent's State
|
|
95
|
+
|
|
96
|
+
```python
|
|
97
|
+
from stateweave import LangGraphAdapter, StateWeaveSerializer
|
|
98
|
+
|
|
99
|
+
# Export from LangGraph
|
|
100
|
+
adapter = LangGraphAdapter(checkpointer=my_checkpointer)
|
|
101
|
+
payload = adapter.export_state("my-thread-id")
|
|
102
|
+
|
|
103
|
+
# Serialize for transport
|
|
104
|
+
serializer = StateWeaveSerializer()
|
|
105
|
+
raw_bytes = serializer.dumps(payload)
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
### Import into Another Framework
|
|
109
|
+
|
|
110
|
+
```python
|
|
111
|
+
from stateweave import MCPAdapter
|
|
112
|
+
|
|
113
|
+
# Import into MCP
|
|
114
|
+
mcp_adapter = MCPAdapter()
|
|
115
|
+
mcp_adapter.import_state(payload)
|
|
116
|
+
|
|
117
|
+
# The agent resumes with its memories intact
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
### Migrate with Encryption
|
|
121
|
+
|
|
122
|
+
```python
|
|
123
|
+
from stateweave import EncryptionFacade, MigrationEngine
|
|
124
|
+
|
|
125
|
+
# Set up encrypted migration
|
|
126
|
+
key = EncryptionFacade.generate_key()
|
|
127
|
+
engine = MigrationEngine(
|
|
128
|
+
encryption=EncryptionFacade(key)
|
|
129
|
+
)
|
|
130
|
+
|
|
131
|
+
# Full pipeline: export → validate → encrypt → transport
|
|
132
|
+
result = engine.export_state(
|
|
133
|
+
adapter=langgraph_adapter,
|
|
134
|
+
agent_id="my-agent",
|
|
135
|
+
encrypt=True,
|
|
136
|
+
)
|
|
137
|
+
|
|
138
|
+
# Decrypt → validate → import on the other side
|
|
139
|
+
engine.import_state(
|
|
140
|
+
adapter=mcp_adapter,
|
|
141
|
+
encrypted_data=result.encrypted_data,
|
|
142
|
+
nonce=result.nonce,
|
|
143
|
+
)
|
|
144
|
+
```
|
|
145
|
+
|
|
146
|
+
### Diff Two States
|
|
147
|
+
|
|
148
|
+
```python
|
|
149
|
+
from stateweave import diff_payloads
|
|
150
|
+
|
|
151
|
+
diff = diff_payloads(state_before, state_after)
|
|
152
|
+
print(diff.to_report())
|
|
153
|
+
# ═══════════════════════════════════════════════
|
|
154
|
+
# 🔍 STATEWEAVE DIFF REPORT
|
|
155
|
+
# ═══════════════════════════════════════════════
|
|
156
|
+
# Changes: 5 (+2 -1 ~2)
|
|
157
|
+
# [working_memory]
|
|
158
|
+
# + working_memory.new_task: 'research'
|
|
159
|
+
# ~ working_memory.confidence: 0.7 → 0.95
|
|
160
|
+
```
|
|
161
|
+
|
|
162
|
+
## Framework Support
|
|
163
|
+
|
|
164
|
+
| Framework | Adapter | Export | Import | Status |
|
|
165
|
+
|-----------|---------|:------:|:------:|--------|
|
|
166
|
+
| **LangGraph** | `LangGraphAdapter` | ✅ | ✅ | Stable |
|
|
167
|
+
| **MCP** | `MCPAdapter` | ✅ | ✅ | Stable |
|
|
168
|
+
| **CrewAI** | `CrewAIAdapter` | ✅ | ✅ | Stable |
|
|
169
|
+
| **AutoGen** | `AutoGenAdapter` | ✅ | ✅ | Stable |
|
|
170
|
+
| Letta | — | — | — | Planned |
|
|
171
|
+
| Custom | Extend `StateWeaveAdapter` | ✅ | ✅ | DIY |
|
|
172
|
+
|
|
173
|
+
## MCP Server
|
|
174
|
+
|
|
175
|
+
StateWeave ships as an MCP Server — any MCP-compatible AI assistant can use it directly.
|
|
176
|
+
|
|
177
|
+
### Tools
|
|
178
|
+
|
|
179
|
+
| Tool | Description |
|
|
180
|
+
|------|-------------|
|
|
181
|
+
| `export_agent_state` | Export an agent's cognitive state from any supported framework |
|
|
182
|
+
| `import_agent_state` | Import state into a target framework with validation |
|
|
183
|
+
| `diff_agent_states` | Compare two states and return a detailed change report |
|
|
184
|
+
|
|
185
|
+
### Resources
|
|
186
|
+
|
|
187
|
+
| Resource | URI |
|
|
188
|
+
|----------|-----|
|
|
189
|
+
| Universal Schema spec | `stateweave://schemas/v1` |
|
|
190
|
+
| Migration history log | `stateweave://migrations/history` |
|
|
191
|
+
| Live agent snapshot | `stateweave://agents/{id}/snapshot` |
|
|
192
|
+
|
|
193
|
+
### Prompts
|
|
194
|
+
|
|
195
|
+
| Prompt | Use Case |
|
|
196
|
+
|--------|----------|
|
|
197
|
+
| `backup_before_risky_operation` | Agent self-requests state backup before risky ops |
|
|
198
|
+
| `migration_guide` | Step-by-step framework migration template |
|
|
199
|
+
|
|
200
|
+
## The Universal Schema
|
|
201
|
+
|
|
202
|
+
Every agent's state is represented as a `StateWeavePayload`:
|
|
203
|
+
|
|
204
|
+
```python
|
|
205
|
+
StateWeavePayload(
|
|
206
|
+
stateweave_version="0.1.0",
|
|
207
|
+
source_framework="langgraph",
|
|
208
|
+
exported_at=datetime,
|
|
209
|
+
cognitive_state=CognitiveState(
|
|
210
|
+
conversation_history=[...], # Full message history
|
|
211
|
+
working_memory={...}, # Current task state
|
|
212
|
+
goal_tree={...}, # Active goals
|
|
213
|
+
tool_results_cache={...}, # Cached tool outputs
|
|
214
|
+
trust_parameters={...}, # Confidence scores
|
|
215
|
+
long_term_memory={...}, # Persistent knowledge
|
|
216
|
+
episodic_memory=[...], # Past experiences
|
|
217
|
+
),
|
|
218
|
+
metadata=AgentMetadata(
|
|
219
|
+
agent_id="my-agent",
|
|
220
|
+
access_policy="private",
|
|
221
|
+
),
|
|
222
|
+
audit_trail=[...], # Full operation history
|
|
223
|
+
non_portable_warnings=[...], # Explicit data loss docs
|
|
224
|
+
)
|
|
225
|
+
```
|
|
226
|
+
|
|
227
|
+
## Security
|
|
228
|
+
|
|
229
|
+
- **AES-256-GCM** authenticated encryption with unique nonce per operation
|
|
230
|
+
- **PBKDF2** key derivation (600K iterations, OWASP recommended)
|
|
231
|
+
- **Credential stripping** — API keys, tokens, and passwords are flagged as non-portable and stripped during export
|
|
232
|
+
- **Non-portable warnings** — every piece of state that can't fully transfer is explicitly documented (no silent data loss)
|
|
233
|
+
- **Associated data** — encrypt with AAD to bind ciphertext to specific agent metadata
|
|
234
|
+
|
|
235
|
+
## Non-Portable State
|
|
236
|
+
|
|
237
|
+
Not everything can transfer between frameworks. StateWeave handles this honestly:
|
|
238
|
+
|
|
239
|
+
| Category | Example | Behavior |
|
|
240
|
+
|----------|---------|----------|
|
|
241
|
+
| DB connections | `sqlite3.Cursor` | ⚠️ Stripped, warning emitted |
|
|
242
|
+
| Credentials | `api_key`, `oauth_token` | 🔴 Stripped, CRITICAL warning |
|
|
243
|
+
| Framework internals | LangGraph `__channel_versions__` | ⚠️ Stripped, warning emitted |
|
|
244
|
+
| Thread/async state | `threading.Lock`, `asyncio.Task` | ⚠️ Stripped, warning emitted |
|
|
245
|
+
| Live connections | Network sockets, file handles | ⚠️ Stripped, warning emitted |
|
|
246
|
+
|
|
247
|
+
All non-portable elements appear in `payload.non_portable_warnings[]` with severity, reason, and remediation guidance.
|
|
248
|
+
|
|
249
|
+
## Building a Custom Adapter
|
|
250
|
+
|
|
251
|
+
Extend `StateWeaveAdapter` to add support for any framework:
|
|
252
|
+
|
|
253
|
+
```python
|
|
254
|
+
from stateweave.adapters.base import StateWeaveAdapter
|
|
255
|
+
from stateweave.schema.v1 import StateWeavePayload, AgentInfo
|
|
256
|
+
|
|
257
|
+
class MyFrameworkAdapter(StateWeaveAdapter):
|
|
258
|
+
@property
|
|
259
|
+
def framework_name(self) -> str:
|
|
260
|
+
return "my-framework"
|
|
261
|
+
|
|
262
|
+
def export_state(self, agent_id: str, **kwargs) -> StateWeavePayload:
|
|
263
|
+
# Translate your framework's state → Universal Schema
|
|
264
|
+
...
|
|
265
|
+
|
|
266
|
+
def import_state(self, payload: StateWeavePayload, **kwargs):
|
|
267
|
+
# Translate Universal Schema → your framework's state
|
|
268
|
+
...
|
|
269
|
+
|
|
270
|
+
def list_agents(self) -> list[AgentInfo]:
|
|
271
|
+
# Return available agents
|
|
272
|
+
...
|
|
273
|
+
```
|
|
274
|
+
|
|
275
|
+
The UCE `adapter_contract` scanner automatically validates that all adapters correctly implement the ABC.
|
|
276
|
+
|
|
277
|
+
## CLI
|
|
278
|
+
|
|
279
|
+
```bash
|
|
280
|
+
# Show version and available adapters
|
|
281
|
+
stateweave version
|
|
282
|
+
|
|
283
|
+
# Dump the Universal Schema as JSON Schema
|
|
284
|
+
stateweave schema -o schema.json
|
|
285
|
+
|
|
286
|
+
# Validate a payload file
|
|
287
|
+
stateweave validate state.json
|
|
288
|
+
|
|
289
|
+
# Export/import/diff
|
|
290
|
+
stateweave export -f langgraph -a my-agent -o state.json
|
|
291
|
+
stateweave import -f mcp --payload state.json
|
|
292
|
+
stateweave diff before.json after.json
|
|
293
|
+
```
|
|
294
|
+
|
|
295
|
+
## Compliance (UCE)
|
|
296
|
+
|
|
297
|
+
StateWeave enforces its own architectural standards via the **Universal Compliance Engine** — 10 automated scanners that run on every commit:
|
|
298
|
+
|
|
299
|
+
| Scanner | What It Checks | Mode |
|
|
300
|
+
|---------|---------------|------|
|
|
301
|
+
| `schema_integrity` | Universal Schema models have required fields | BLOCK |
|
|
302
|
+
| `adapter_contract` | All adapters implement the full ABC | BLOCK |
|
|
303
|
+
| `serialization_safety` | No raw pickle/json.dumps outside serializer | BLOCK |
|
|
304
|
+
| `encryption_compliance` | All crypto goes through EncryptionFacade | BLOCK |
|
|
305
|
+
| `mcp_protocol` | MCP server has all required tools | BLOCK |
|
|
306
|
+
| `import_discipline` | No cross-layer imports | BLOCK |
|
|
307
|
+
| `logger_naming` | All loggers use `stateweave.*` convention | BLOCK |
|
|
308
|
+
| `test_coverage_gate` | Minimum test file coverage ratio | BLOCK |
|
|
309
|
+
| `file_architecture` | No orphan files outside MANIFEST | WARN |
|
|
310
|
+
| `dependency_cycles` | No circular imports | BLOCK |
|
|
311
|
+
|
|
312
|
+
```bash
|
|
313
|
+
# Run UCE locally
|
|
314
|
+
python scripts/uce.py
|
|
315
|
+
|
|
316
|
+
# Run in CI mode (exit 1 on failure)
|
|
317
|
+
python scripts/uce.py --mode=CI --json
|
|
318
|
+
```
|
|
319
|
+
|
|
320
|
+
## Contributing
|
|
321
|
+
|
|
322
|
+
We welcome contributions! The highest-impact way to contribute is **building a new framework adapter**. See [Building a Custom Adapter](#building-a-custom-adapter) above.
|
|
323
|
+
|
|
324
|
+
### Development Setup
|
|
325
|
+
|
|
326
|
+
```bash
|
|
327
|
+
git clone https://github.com/GDWN-BLDR/stateweave.git
|
|
328
|
+
cd stateweave
|
|
329
|
+
pip install -e ".[dev]"
|
|
330
|
+
|
|
331
|
+
# Run tests
|
|
332
|
+
pytest tests/ -v
|
|
333
|
+
|
|
334
|
+
# Run UCE
|
|
335
|
+
python scripts/uce.py
|
|
336
|
+
```
|
|
337
|
+
|
|
338
|
+
### Architecture
|
|
339
|
+
|
|
340
|
+
```
|
|
341
|
+
stateweave/
|
|
342
|
+
├── schema/ # Universal Schema (Pydantic models)
|
|
343
|
+
├── core/ # Engine (serializer, encryption, diff, migration, portability)
|
|
344
|
+
├── adapters/ # Framework adapters (LangGraph, MCP, CrewAI, AutoGen)
|
|
345
|
+
├── mcp_server/ # MCP Server implementation
|
|
346
|
+
└── compliance/ # UCE scanners
|
|
347
|
+
```
|
|
348
|
+
|
|
349
|
+
## License
|
|
350
|
+
|
|
351
|
+
[Apache 2.0](LICENSE) — use it, modify it, ship it. Patent shield included.
|
|
352
|
+
|
|
353
|
+
---
|
|
354
|
+
|
|
355
|
+
<p align="center">
|
|
356
|
+
<strong>🧶 StateWeave</strong> — Because your agent's memories shouldn't be locked to one framework.
|
|
357
|
+
</p>
|