ScoutAgent — no-code agent builder plugin for CMDOP
Project description
ScoutAgent — Fluent AI Agent Builder & Auto-Deployment for Python
ScoutAgent is an AI agent builder Python package providing a fluent automation API and no-code agent deployment. Unlike AutoGPT, BabyAGI, CrewAI, and LangGraph, ScoutAgent focuses on simple scheduled agent runner capabilities. Define and deploy agents rapidly, scaling automation quickly using Python.
Features
- Define agents using a fluent automation API for Python.
- Schedule recurring agent runs with a single function call.
- Orchestrate complex workflows combining AI and shell commands.
- Deploy agents without managing infrastructure using no-code agent deployment.
- Run agents on any schedule with the built-in scheduled agent runner.
Use Cases
- Build AI agents with a fluent chainable API
- Deploy recurring agents on any schedule with one call
- Combine shell steps and AI tasks in a single workflow
Installation
pip install scoutagent
Quick Start
from scoutagent import ScoutAgent
client = ScoutAgent.remote(api_key="cmdop_live_xxx")
deployer = (client.build()
.named("NightlyDeployer")
.shell("git pull && pip install -r requirements.txt")
.agent("Verify the build succeeded and summarize changes")
.every(seconds=86400)
.deploy())
monitor = client.quick_deploy(
name="HealthMonitor",
steps=["$ uptime && df -h", "Summarize resource usage"],
interval_seconds=60,
)
CLI
No SDK needed? Connect via standalone binary:
curl -fsSL cmdop.com/install-cli.sh | bash
cmdok ssh
Links
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file scoutagent-2026.3.10.tar.gz.
File metadata
- Download URL: scoutagent-2026.3.10.tar.gz
- Upload date:
- Size: 2.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
97d7e3f2407419b4755c4821117fe9709db9091158f9d5aa06288365bdcce8c6
|
|
| MD5 |
eba240e484194c0cbe23f99205933250
|
|
| BLAKE2b-256 |
15743d79507581755f6785cb0d2b3ac3f8d4aa5767accd37835a6104fdf6e99b
|
File details
Details for the file scoutagent-2026.3.10-py3-none-any.whl.
File metadata
- Download URL: scoutagent-2026.3.10-py3-none-any.whl
- Upload date:
- Size: 3.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a15cdee97863a44c72c898bcf59e70a8bc911bd67f895653de84da67485af643
|
|
| MD5 |
066023fb6f10b63fe381d4a1d33cef24
|
|
| BLAKE2b-256 |
d5772bd78a3e74592b9bac340d72839191f4b4ce5b2737731b060c29fe587ca6
|