openclaw 0.0.1__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.
@@ -0,0 +1,26 @@
1
+ # GitHub public copies (have their own .git, pushed separately)
2
+ python/devops/github/
3
+
4
+ # Python
5
+ __pycache__/
6
+ *.py[cod]
7
+ *.so
8
+ .Python
9
+ *.egg-info/
10
+
11
+ # Build
12
+ dist/
13
+ build/
14
+
15
+ # Virtual environments
16
+ .venv/
17
+ venv/
18
+
19
+ # IDE
20
+ .idea/
21
+ .vscode/
22
+
23
+ # OS
24
+ .DS_Store
25
+
26
+ logs/*
@@ -0,0 +1,53 @@
1
+ Metadata-Version: 2.4
2
+ Name: openclaw
3
+ Version: 0.0.1
4
+ Summary: OpenClaw — open-source agent orchestration SDK (powered by CMDOP)
5
+ Project-URL: Homepage, https://cmdop.com
6
+ Project-URL: Documentation, https://cmdop.com/docs/sdk/cmdop/
7
+ Project-URL: Repository, https://github.com/commandoperator/cmdop-sdk
8
+ Author: CMDOP Team
9
+ License: MIT
10
+ Keywords: agent,automation,cmdop,openclaw,orchestration,terminal
11
+ Classifier: Development Status :: 1 - Planning
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
19
+ Classifier: Typing :: Typed
20
+ Requires-Python: >=3.10
21
+ Requires-Dist: cmdop>=0.1.43
22
+ Description-Content-Type: text/markdown
23
+
24
+ # OpenClaw
25
+
26
+ ![CMDOP Architecture](https://cmdop.com/images/architecture/vs-personal-agent.png)
27
+
28
+ **OpenClaw** is an open-source agent orchestration SDK powered by [CMDOP](https://cmdop.com).
29
+
30
+ This package is a public alias for the `cmdop` SDK. Install it to get started:
31
+
32
+ ```bash
33
+ pip install openclaw
34
+ ```
35
+
36
+ ## Usage
37
+
38
+ ```python
39
+ from openclaw import CMDOPClient
40
+
41
+ # Connect to a local agent
42
+ client = CMDOPClient.local()
43
+
44
+ # Or connect remotely
45
+ client = CMDOPClient.remote(api_key="cmdop_your_key")
46
+ ```
47
+
48
+ ## Links
49
+
50
+ - [Homepage](https://cmdop.com)
51
+ - [Documentation](https://cmdop.com/docs/sdk/cmdop/)
52
+ - [GitHub](https://github.com/commandoperator/cmdop-sdk)
53
+ - [PyPI — cmdop](https://pypi.org/project/cmdop/)
@@ -0,0 +1,30 @@
1
+ # OpenClaw
2
+
3
+ ![CMDOP Architecture](https://cmdop.com/images/architecture/vs-personal-agent.png)
4
+
5
+ **OpenClaw** is an open-source agent orchestration SDK powered by [CMDOP](https://cmdop.com).
6
+
7
+ This package is a public alias for the `cmdop` SDK. Install it to get started:
8
+
9
+ ```bash
10
+ pip install openclaw
11
+ ```
12
+
13
+ ## Usage
14
+
15
+ ```python
16
+ from openclaw import CMDOPClient
17
+
18
+ # Connect to a local agent
19
+ client = CMDOPClient.local()
20
+
21
+ # Or connect remotely
22
+ client = CMDOPClient.remote(api_key="cmdop_your_key")
23
+ ```
24
+
25
+ ## Links
26
+
27
+ - [Homepage](https://cmdop.com)
28
+ - [Documentation](https://cmdop.com/docs/sdk/cmdop/)
29
+ - [GitHub](https://github.com/commandoperator/cmdop-sdk)
30
+ - [PyPI — cmdop](https://pypi.org/project/cmdop/)
@@ -0,0 +1,36 @@
1
+ [project]
2
+ name = "openclaw"
3
+ version = "0.0.1"
4
+ description = "OpenClaw — open-source agent orchestration SDK (powered by CMDOP)"
5
+ readme = "README.md"
6
+ license = { text = "MIT" }
7
+ requires-python = ">=3.10"
8
+ authors = [{ name = "CMDOP Team" }]
9
+ keywords = ["openclaw", "cmdop", "agent", "automation", "orchestration", "terminal"]
10
+ classifiers = [
11
+ "Development Status :: 1 - Planning",
12
+ "Intended Audience :: Developers",
13
+ "License :: OSI Approved :: MIT License",
14
+ "Programming Language :: Python :: 3",
15
+ "Programming Language :: Python :: 3.10",
16
+ "Programming Language :: Python :: 3.11",
17
+ "Programming Language :: Python :: 3.12",
18
+ "Topic :: Software Development :: Libraries :: Python Modules",
19
+ "Typing :: Typed",
20
+ ]
21
+
22
+ dependencies = [
23
+ "cmdop>=0.1.43",
24
+ ]
25
+
26
+ [project.urls]
27
+ Homepage = "https://cmdop.com"
28
+ Documentation = "https://cmdop.com/docs/sdk/cmdop/"
29
+ Repository = "https://github.com/commandoperator/cmdop-sdk"
30
+
31
+ [build-system]
32
+ requires = ["hatchling"]
33
+ build-backend = "hatchling.build"
34
+
35
+ [tool.hatch.build.targets.wheel]
36
+ packages = ["src/openclaw"]
@@ -0,0 +1,12 @@
1
+ """
2
+ OpenClaw — open-source agent orchestration SDK.
3
+
4
+ This package is a public alias for the CMDOP SDK.
5
+ Install `cmdop` for full functionality: pip install cmdop
6
+
7
+ Learn more: https://cmdop.com
8
+ """
9
+
10
+ __version__ = "0.0.1"
11
+
12
+ from cmdop import * # noqa: F401,F403