multiclaw 2.0.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.
- multiclaw-2.0.0/.gitignore +54 -0
- multiclaw-2.0.0/LICENSE +21 -0
- multiclaw-2.0.0/PKG-INFO +61 -0
- multiclaw-2.0.0/README.md +33 -0
- multiclaw-2.0.0/pyproject.toml +39 -0
- multiclaw-2.0.0/src/multiclaw/__init__.py +30 -0
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# Distribution / packaging
|
|
7
|
+
dist/
|
|
8
|
+
build/
|
|
9
|
+
*.egg-info/
|
|
10
|
+
*.egg
|
|
11
|
+
|
|
12
|
+
# PyInstaller
|
|
13
|
+
*.spec.bak
|
|
14
|
+
|
|
15
|
+
# Virtual environments
|
|
16
|
+
venv/
|
|
17
|
+
.venv/
|
|
18
|
+
env/
|
|
19
|
+
|
|
20
|
+
# IDE
|
|
21
|
+
.idea/
|
|
22
|
+
.vscode/
|
|
23
|
+
*.swp
|
|
24
|
+
*.swo
|
|
25
|
+
*~
|
|
26
|
+
|
|
27
|
+
# OS files
|
|
28
|
+
.DS_Store
|
|
29
|
+
Thumbs.db
|
|
30
|
+
desktop.ini
|
|
31
|
+
|
|
32
|
+
# Logs
|
|
33
|
+
*.log
|
|
34
|
+
logs/
|
|
35
|
+
|
|
36
|
+
# Local data (wallets, settings - user-specific)
|
|
37
|
+
data/
|
|
38
|
+
*.wallet
|
|
39
|
+
|
|
40
|
+
# Private development files (internal docs, notes, etc.)
|
|
41
|
+
private/
|
|
42
|
+
|
|
43
|
+
# Environment variables
|
|
44
|
+
.env
|
|
45
|
+
.env.local
|
|
46
|
+
|
|
47
|
+
# Test artifacts
|
|
48
|
+
.pytest_cache/
|
|
49
|
+
.coverage
|
|
50
|
+
htmlcov/
|
|
51
|
+
|
|
52
|
+
# Windows reserved names (should never exist but just in case)
|
|
53
|
+
nul
|
|
54
|
+
NUL
|
multiclaw-2.0.0/LICENSE
ADDED
|
@@ -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.
|
multiclaw-2.0.0/PKG-INFO
ADDED
|
@@ -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,33 @@
|
|
|
1
|
+
# MultiClaw
|
|
2
|
+
|
|
3
|
+
**Get a grip on your agents.**
|
|
4
|
+
|
|
5
|
+
A desktop x402 payment manager for AI agents, by [Primer](https://primer.systems).
|
|
6
|
+
|
|
7
|
+
Delegate spending authority to agents without sharing private keys. Implements the full AP2 flow: intent, authorization, settlement, and receipt.
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
Full pip-installable release coming in **v2.1.0**.
|
|
12
|
+
|
|
13
|
+
For now, download the desktop application:
|
|
14
|
+
|
|
15
|
+
**[Download MultiClaw](https://github.com/primer-systems/multiclaw/releases)**
|
|
16
|
+
|
|
17
|
+
## Features
|
|
18
|
+
|
|
19
|
+
- **Spend Policies** - Daily limits, per-request caps, auto-approve thresholds
|
|
20
|
+
- **Domain Restrictions** - Allowlist/blocklist which merchants can receive payments
|
|
21
|
+
- **Agent Isolation** - Each agent gets unique credentials
|
|
22
|
+
- **Human Approval** - Payments above threshold trigger approval dialogs
|
|
23
|
+
- **On-chain Verification** - Transactions verified against blockchain state
|
|
24
|
+
|
|
25
|
+
## Links
|
|
26
|
+
|
|
27
|
+
- [Documentation](https://docs.primer.systems/multiclaw.html)
|
|
28
|
+
- [GitHub](https://github.com/primer-systems/multiclaw)
|
|
29
|
+
- [AP2 Registry](https://ap2.primer.systems)
|
|
30
|
+
|
|
31
|
+
## License
|
|
32
|
+
|
|
33
|
+
MIT
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "multiclaw"
|
|
7
|
+
version = "2.0.0"
|
|
8
|
+
description = "Desktop x402 payment manager for AI agents"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "MIT"
|
|
11
|
+
authors = [
|
|
12
|
+
{ name = "Primer Systems", email = "dev@primer.systems" }
|
|
13
|
+
]
|
|
14
|
+
keywords = ["x402", "ai", "agents", "payments", "crypto", "usdc", "ethereum"]
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Development Status :: 4 - Beta",
|
|
17
|
+
"Environment :: Console",
|
|
18
|
+
"Environment :: X11 Applications :: Qt",
|
|
19
|
+
"Intended Audience :: Developers",
|
|
20
|
+
"License :: OSI Approved :: MIT License",
|
|
21
|
+
"Operating System :: OS Independent",
|
|
22
|
+
"Programming Language :: Python :: 3",
|
|
23
|
+
"Programming Language :: Python :: 3.10",
|
|
24
|
+
"Programming Language :: Python :: 3.11",
|
|
25
|
+
"Programming Language :: Python :: 3.12",
|
|
26
|
+
"Programming Language :: Python :: 3.13",
|
|
27
|
+
"Topic :: Office/Business :: Financial",
|
|
28
|
+
"Topic :: Security :: Cryptography",
|
|
29
|
+
]
|
|
30
|
+
requires-python = ">=3.10"
|
|
31
|
+
|
|
32
|
+
[project.urls]
|
|
33
|
+
Homepage = "https://primer.systems"
|
|
34
|
+
Documentation = "https://docs.primer.systems/multiclaw.html"
|
|
35
|
+
Repository = "https://github.com/primer-systems/multiclaw"
|
|
36
|
+
Issues = "https://github.com/primer-systems/multiclaw/issues"
|
|
37
|
+
|
|
38
|
+
[project.scripts]
|
|
39
|
+
multiclaw = "multiclaw:main"
|
|
@@ -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()
|