multiclaw 2.0.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.
multiclaw/__init__.py ADDED
@@ -0,0 +1,30 @@
1
+ """
2
+ MultiClaw - Desktop x402 payment manager for AI agents.
3
+
4
+ Get a grip on your agents. Delegate spending authority without sharing private keys.
5
+
6
+ Full pip-installable release coming in v2.1.0. For now, download the desktop app:
7
+ https://github.com/primer-systems/multiclaw/releases
8
+ """
9
+
10
+ __version__ = "2.0.0"
11
+
12
+
13
+ def main():
14
+ """Entry point for the multiclaw command."""
15
+ print(f"""
16
+ MultiClaw v{__version__} - Desktop x402 payment manager for AI agents
17
+
18
+ Full pip-installable release coming in v2.1.0.
19
+
20
+ For now, download the desktop application:
21
+ https://github.com/primer-systems/multiclaw/releases
22
+
23
+ Learn more:
24
+ https://docs.primer.systems/multiclaw.html
25
+ https://github.com/primer-systems/multiclaw
26
+ """)
27
+
28
+
29
+ if __name__ == "__main__":
30
+ main()
@@ -0,0 +1,61 @@
1
+ Metadata-Version: 2.4
2
+ Name: multiclaw
3
+ Version: 2.0.0
4
+ Summary: Desktop x402 payment manager for AI agents
5
+ Project-URL: Homepage, https://primer.systems
6
+ Project-URL: Documentation, https://docs.primer.systems/multiclaw.html
7
+ Project-URL: Repository, https://github.com/primer-systems/multiclaw
8
+ Project-URL: Issues, https://github.com/primer-systems/multiclaw/issues
9
+ Author-email: Primer Systems <dev@primer.systems>
10
+ License-Expression: MIT
11
+ License-File: LICENSE
12
+ Keywords: agents,ai,crypto,ethereum,payments,usdc,x402
13
+ Classifier: Development Status :: 4 - Beta
14
+ Classifier: Environment :: Console
15
+ Classifier: Environment :: X11 Applications :: Qt
16
+ Classifier: Intended Audience :: Developers
17
+ Classifier: License :: OSI Approved :: MIT License
18
+ Classifier: Operating System :: OS Independent
19
+ Classifier: Programming Language :: Python :: 3
20
+ Classifier: Programming Language :: Python :: 3.10
21
+ Classifier: Programming Language :: Python :: 3.11
22
+ Classifier: Programming Language :: Python :: 3.12
23
+ Classifier: Programming Language :: Python :: 3.13
24
+ Classifier: Topic :: Office/Business :: Financial
25
+ Classifier: Topic :: Security :: Cryptography
26
+ Requires-Python: >=3.10
27
+ Description-Content-Type: text/markdown
28
+
29
+ # MultiClaw
30
+
31
+ **Get a grip on your agents.**
32
+
33
+ A desktop x402 payment manager for AI agents, by [Primer](https://primer.systems).
34
+
35
+ Delegate spending authority to agents without sharing private keys. Implements the full AP2 flow: intent, authorization, settlement, and receipt.
36
+
37
+ ## Installation
38
+
39
+ Full pip-installable release coming in **v2.1.0**.
40
+
41
+ For now, download the desktop application:
42
+
43
+ **[Download MultiClaw](https://github.com/primer-systems/multiclaw/releases)**
44
+
45
+ ## Features
46
+
47
+ - **Spend Policies** - Daily limits, per-request caps, auto-approve thresholds
48
+ - **Domain Restrictions** - Allowlist/blocklist which merchants can receive payments
49
+ - **Agent Isolation** - Each agent gets unique credentials
50
+ - **Human Approval** - Payments above threshold trigger approval dialogs
51
+ - **On-chain Verification** - Transactions verified against blockchain state
52
+
53
+ ## Links
54
+
55
+ - [Documentation](https://docs.primer.systems/multiclaw.html)
56
+ - [GitHub](https://github.com/primer-systems/multiclaw)
57
+ - [AP2 Registry](https://ap2.primer.systems)
58
+
59
+ ## License
60
+
61
+ MIT
@@ -0,0 +1,6 @@
1
+ multiclaw/__init__.py,sha256=LK3LWMuWgFrrJ_849b9ChhZoDKZkxVzghhbtjPYeuac,753
2
+ multiclaw-2.0.0.dist-info/METADATA,sha256=nBQYvriGzNgqWQiykdWZ2CrnCR0z9PcflnqUoijVdMg,2243
3
+ multiclaw-2.0.0.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
4
+ multiclaw-2.0.0.dist-info/entry_points.txt,sha256=Iz9gbTIlNTP1HZIAyVAlACTsBPDjmrkL0PziGS7wFus,45
5
+ multiclaw-2.0.0.dist-info/licenses/LICENSE,sha256=LzS3g77_fIs-mzqWcAkHDDMVp3L0u8dAgeQ3He4X09w,1071
6
+ multiclaw-2.0.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
+ multiclaw = multiclaw:main
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Primer Systems
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.