Registry / llm-agents / cmdop
library1.0.2pypypi✓ verified 88d ago

The `cmdop` Python SDK provides a client for interacting with CMDOP agents, enabling programmatic control over agent execution and data exchange. It is currently at version 2026.4.7.2 and follows an agile release cadence, often aligning with platform updates.

pip install cmdop
INSTALL
IMPORT
SIG · CMDOP
C
cmdop
llm-agentspythonv1.0.2
Install
5.6s avg
Import
—
Disk
84MB
Pass rate
8/ 10
Env Coverage8 / 10
glibc
3.9–3.13
musl
3.9–3.13
Install & Compatibility
Where this runs
tested against v2026.4.7.2 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
musl
glibc
py 3.10
✓ —
✓ 6.57s
py 3.11
✓ —
✓ 5.57s
py 3.12
✓ —
✓ 5.07s
py 3.13
✓ —
✓ 5.2s
py 3.9
✕ build_error
✕ build_error
84MB installed
● package 84MB
Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Client
✓ from cmdop import Client
✗ from cmdop import Agent

This quickstart demonstrates initializing an Agent with an API key from an environment variable and performing a simple execution. Replace 'your_api_key_here' with your actual CMDOP API key.

import os from cmdop import Agent # Ensure CMDOP_API_KEY is set as an environment variable # e.g., export CMDOP_API_KEY="your_api_key_here" api_key = os.environ.get("CMDOP_API_KEY") if not api_key: print("Warning: CMDOP_API_KEY environment variable is not set. Using a placeholder.") print("Please set it for actual API interaction.") api_key = "sk-fake-api-key" try: agent = Agent(api_key=api_key) response = agent.execute("What is the capital of France?") print(f"Agent Response: {response}") except Exception as e: print(f"An error occurred: {e}")
cmdop --version
Debug
Known issues
gotchaThe `api_key` parameter for `Agent` initialization is mandatory. If not provided or if the `CMDOP_API_KEY` environment variable is not set, it will lead to an `AuthenticationError` or `TypeError`.
fix
Ensure `os.environ['CMDOP_API_KEY']` is set before initializing `Agent`, or pass the `api_key` directly: `Agent(api_key='YOUR_KEY')`.
affects: >=2024.1.0
breakingThe library requires Python 3.10 or newer. Users on older Python versions will encounter installation failures or runtime errors.
fix
Upgrade your Python environment to 3.10 or a later version using tools like `pyenv` or `conda`.
affects: >=2023.1.0
gotchaNetwork connectivity issues or incorrect API endpoint configuration can result in `ConnectionError` exceptions, preventing successful interaction with the CMDOP service.
fix
Verify your internet connection and check if there are any proxy or firewall settings that might be blocking access to the CMDOP API. Consult CMDOP documentation for specific endpoint details if necessary.
affects: All versions
Upgrade
Version history
1.0.2latest on PyPI · released Jun 15, 2026
Audit
Dependencies

No dependency data recorded yet.

Agent activity
43 hits · last 30 days
node
36
OpenAI (training)
1
Resources
cmdop — pip install cmdop · libregistry