WeavePy 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,58 @@
1
+ Metadata-Version: 2.4
2
+ Name: WeavePy
3
+ Version: 0.1.0
4
+ Summary: Coordination mesh for multi-agent orchestration
5
+ Author-email: Koosha Pari <koosha@example.com>
6
+ License-Expression: MIT
7
+ Keywords: coordination,mesh,multi-agent,orchestration
8
+ Classifier: Development Status :: 3 - Alpha
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Programming Language :: Python :: 3.10
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Programming Language :: Python :: 3.12
15
+ Requires-Python: >=3.10
16
+ Provides-Extra: dev
17
+ Requires-Dist: mypy>=1.0; extra == 'dev'
18
+ Requires-Dist: pytest-asyncio>=0.21; extra == 'dev'
19
+ Requires-Dist: pytest>=7.0; extra == 'dev'
20
+ Requires-Dist: ruff>=0.1; extra == 'dev'
21
+ Description-Content-Type: text/markdown
22
+
23
+ # thegent-mesh
24
+
25
+ Coordination mesh for multi-agent orchestration.
26
+
27
+ ## Features
28
+
29
+ - **Task Queue**: Maildir-style atomic queue for task distribution
30
+ - **Smart Merge**: AST-aware merging (Mergiraf-style) for conflict resolution
31
+ - **Request Coalescing**: Singleflight pattern for deduplicating requests
32
+ - **Coordination**: HLC timestamps, OCC, lease-based file ownership
33
+ - **Git Parallelism**: Parallel git operations with coordination
34
+ - **Process Detection**: Detect and coordinate running processes
35
+
36
+ ## Architecture
37
+
38
+ Based on thegent's mesh/ module for multi-agent coordination.
39
+
40
+ ## CLI Commands
41
+
42
+ ```bash
43
+ # Task queue operations
44
+ thegent-mesh queue push <task>
45
+ thegent-mesh queue pop
46
+ thegent-mesh queue list
47
+
48
+ # Merge operations
49
+ thegent-mesh merge <file1> <file2>
50
+
51
+ # Coordination
52
+ thegent-mesh coord status
53
+ thegent-mesh coord acquire <resource>
54
+ ```
55
+
56
+ ## License
57
+
58
+ MIT
@@ -0,0 +1,4 @@
1
+ weavepy-0.1.0.dist-info/METADATA,sha256=cqFOkMz5gYHg0iRSE3M1dW2FVkdkT2M64k15sqkxY6A,1695
2
+ weavepy-0.1.0.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
3
+ weavepy-0.1.0.dist-info/entry_points.txt,sha256=UuFpjoDWctYdMLsmMQYegWbj7FtAeGe_gePMUcuZJu8,55
4
+ weavepy-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.29.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ thegent-mesh = thegent_mesh.cli:main