scoutagent 2026.2.25__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: scoutagent
3
+ Version: 2026.2.25
4
+ Summary: Agent orchestration SDK — see CMDOP (pip install cmdop) for full features
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,orchestration,scoutagent,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
+ # ScoutAgent
25
+
26
+ ![CMDOP Architecture](https://cmdop.com/images/architecture/vs-personal-agent.png)
27
+
28
+ **No-code agent platform with free tier.**
29
+
30
+ Looking for a production-ready agent orchestration SDK? Check out [CMDOP](https://cmdop.com) — a platform for building and managing AI agents with terminal access, file operations, browser automation, and more.
31
+
32
+ ```bash
33
+ pip install cmdop
34
+ ```
35
+
36
+ ## Quick Start
37
+
38
+ ```python
39
+ from cmdop 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
+ - [CMDOP 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
+ # ScoutAgent
2
+
3
+ ![CMDOP Architecture](https://cmdop.com/images/architecture/vs-personal-agent.png)
4
+
5
+ **No-code agent platform with free tier.**
6
+
7
+ Looking for a production-ready agent orchestration SDK? Check out [CMDOP](https://cmdop.com) — a platform for building and managing AI agents with terminal access, file operations, browser automation, and more.
8
+
9
+ ```bash
10
+ pip install cmdop
11
+ ```
12
+
13
+ ## Quick Start
14
+
15
+ ```python
16
+ from cmdop 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
+ - [CMDOP 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 = "scoutagent"
3
+ version = "2026.02.25"
4
+ description = "Agent orchestration SDK — see CMDOP (pip install cmdop) for full features"
5
+ readme = "README.md"
6
+ license = { text = "MIT" }
7
+ requires-python = ">=3.10"
8
+ authors = [{ name = "CMDOP Team" }]
9
+ keywords = ["scoutagent", "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/scoutagent"]
@@ -0,0 +1,12 @@
1
+ """
2
+ ScoutAgent — no-code agent platform with free tier.
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__ = "2026.02.25"
11
+
12
+ from cmdop import * # noqa: F401,F403