Skip to main content

CLI for Core Agent Loop websocket streaming

Project description

Core Agent Loop API

FastAPI application providing Server-Sent Events (SSE) endpoint for Claude SDK agent interactions.

Project Structure

core_agent_loop/
├── app/
│   ├── __init__.py
│   ├── main.py                 # FastAPI application entry point
│   └── router/
│       ├── __init__.py
│       └── agent.py            # Agent loop SSE endpoint
├── config.py                   # Configuration settings
├── add_keyword_test.py         # Original test script
├── requirements.txt            # Python dependencies
└── env.local                   # Configuration file (rename to .env)

Setup

  1. Install dependencies:

    pip install -r requirements.txt
    
  2. Configure environment:

    cp env.local .env
    # Edit .env to add your Langfuse credentials if needed
    
  3. Ensure Claude CLI is installed and configured:

    claude --version
    

Running the Server

Using Docker Compose (Recommended):

# Start all services (FastAPI on 8334, Claude-Mem Manager on 37777, File API on 38888)
docker-compose up -d

# View logs
docker-compose logs -f

# Stop services
docker-compose down

The FastAPI server will be available at http://localhost:8334
The Claude-Mem Manager UI will be available at http://localhost:37777/switch_user
All other traffic on port 37777 will be proxied to the active claude-mem worker
The File API service will be available at http://localhost:38888 The CLI wheel server will be available at http://localhost:11113

Using Python directly:

python -m app.main

Using Uvicorn:

uvicorn app.main:app --reload --host 0.0.0.0 --port 8334

The server will start at http://localhost:8334

CLI Auto Upgrade

Install from PyPI:

python -m pip install --upgrade pip
python -m pip install --upgrade luckee-cli

PyPI releases are wheel-only (no source distribution) and are published for:

  • Linux x86_64
  • Linux aarch64
  • macOS x86_64
  • macOS arm64
  • Windows x86_64

If your platform/architecture is outside this matrix, pip will not find a compatible wheel.

If you want to validate a dev publish first, install from TestPyPI:

python -m pip install --upgrade \
  --index-url https://test.pypi.org/simple/ \
  --extra-index-url https://pypi.org/simple \
  luckee-cli

For the staging CLI, set the environment before login/use:

export LUCKEE_ENV=staging

This selects both the staging OAuth API (staging-user-api.motse.ai) and the staging frontend automatically. LUCKEE_OAUTH_BASE_URL / LUCKEE_FRONTEND can still override individual URLs when needed.

CLI auth helpers:

luckee login
luckee logout

Published defaults:

  • LUCKEE_ENV=staging → OAuth API staging-user-api.motse.ai, frontend luckee-frontend-staging-…
  • LUCKEE_ENV=prod (default) → OAuth API user-api.motse.ai, frontend motse.ai
  • dev branch builds default WebSocket endpoint to wss://core-agent-loop-dev-950663559455.us-central1.run.app/api/v2/agent/ws
  • main branch builds default WebSocket endpoint to wss://core-agent-loop-950663559455.us-central1.run.app/api/v2/agent/ws
  • dev branch builds default File API base URL to https://file-api-dev-950663559455.us-central1.run.app
  • main branch builds default File API base URL to https://file-api-main-950663559455.us-central1.run.app

Upgrade the installed CLI:

luckee --upgrade

Or while inside interactive CLI:

/upgrade

CLI Development

For local luckee CLI development and packaging validation, use the dedicated guide:

Shortest repeatable local validation loop:

conda activate core_agent_loop
python scripts/validate_cli_dev_loop.py

That helper repairs stale editable CLI metadata, validates both local entrypoints, and builds a fresh wheel. Use python scripts/validate_cli_dev_loop.py --with-pipx --remote-smoke ... when you also want packaged remote validation.

API Endpoints

Root

  • GET / - API information and available endpoints

Health Check

  • GET /health - Health check endpoint

Agent Test

  • GET /api/agent/test - Test the agent router

Agent Stream (SSE)

  • POST /api/agent/stream - Stream agent responses via Server-Sent Events

Request Body:

{
  "query": "add a keyword test_keyword_1",
  "thread_id": null,
  "user_id": "dylan",
  "working_dir": null,
  "system_prompt": null
}

Response: Server-Sent Events stream with structured state messages.

File API (Port 38888)

  • GET /api/v2/resume_thread - Resume a thread by streaming messages (SSE)
  • GET /api/v2/list_threads - List all thread IDs for a user
  • GET /api/v2/fetch_files - Fetch files from user directories

Resume Thread (SSE) Query Parameters:

  • thread_id: Thread ID (must be a valid UUID)
  • user_id: User ID

Resume Thread Example:

curl -N "http://localhost:38888/api/v2/resume_thread?thread_id=550e8400-e29b-41d4-a716-446655440000&user_id=dylan"

The stream always starts with a config message containing metadata from working_dir/metadata.json, followed by all messages from streaming_messages.jsonl, and ends with a completion event.

List Threads Query Parameters:

  • user_id: User ID

List Threads Example:

curl "http://localhost:38888/api/v2/list_threads?user_id=dylan"

Fetch Files Query Parameters:

  • type: Type of file to fetch (csv, json, or json_folder)
  • thread_id: Thread ID (must be a valid UUID string)
  • path: Relative path to the file from working_dir
  • user_id: User ID

Examples:

Fetch a JSON file:

curl "http://localhost:38888/api/v2/fetch_files?type=json&thread_id=550e8400-e29b-41d4-a716-446655440000&path=data/config.json&user_id=dylan"

Fetch a CSV file:

curl "http://localhost:38888/api/v2/fetch_files?type=csv&thread_id=550e8400-e29b-41d4-a716-446655440000&path=data/report.csv&user_id=dylan"

Fetch all JSON files from a folder:

curl "http://localhost:38888/api/v2/fetch_files?type=json_folder&thread_id=550e8400-e29b-41d4-a716-446655440000&path=data/json_files&user_id=dylan"

Response Format:

  • For csv/json: Returns content of the file
  • For json_folder: Returns a dict mapping filename to content for all *.json files

Security:

  • Path traversal protection is enforced
  • Files must exist under /data/{user_id}/projects/{thread_id}/working_dir/{path}

Session Management

The agent supports session resumption based on thread_id. The project state (including the Claude SDK session ID) is stored in /data/${user_id}/projects/${thread_id}/working_dir/metadata.json.

To resume a session, include the thread_id in subsequent requests:

{
  "query": "continue with the next task",
  "thread_id": "previous_thread_id",
  "user_id": "dylan"
}

If a thread_id is provided but no existing session is found in the project metadata, the API will return an error.

Development

Architecture Documentation

For detailed information about the system architecture, modules, and design patterns, see:

Original Test Script

The original CLI test script is still available:

python add_keyword_test.py --query "add a keyword test_keyword_1"

License

MIT

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 Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

luckee_cli-0.1.20260427125110499-cp312-cp312-win_amd64.whl (788.1 kB view details)

Uploaded CPython 3.12Windows x86-64

luckee_cli-0.1.20260427125110499-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

luckee_cli-0.1.20260427125110499-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

luckee_cli-0.1.20260427125110499-cp312-cp312-macosx_11_0_arm64.whl (816.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

luckee_cli-0.1.20260427125110499-cp312-cp312-macosx_10_13_x86_64.whl (912.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

luckee_cli-0.1.20260427125110499-cp311-cp311-win_amd64.whl (805.8 kB view details)

Uploaded CPython 3.11Windows x86-64

luckee_cli-0.1.20260427125110499-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

luckee_cli-0.1.20260427125110499-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (7.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

luckee_cli-0.1.20260427125110499-cp311-cp311-macosx_11_0_arm64.whl (841.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

luckee_cli-0.1.20260427125110499-cp311-cp311-macosx_10_9_x86_64.whl (938.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

luckee_cli-0.1.20260427125110499-cp310-cp310-win_amd64.whl (803.8 kB view details)

Uploaded CPython 3.10Windows x86-64

luckee_cli-0.1.20260427125110499-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

luckee_cli-0.1.20260427125110499-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

luckee_cli-0.1.20260427125110499-cp310-cp310-macosx_11_0_arm64.whl (852.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

luckee_cli-0.1.20260427125110499-cp310-cp310-macosx_10_9_x86_64.whl (947.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file luckee_cli-0.1.20260427125110499-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for luckee_cli-0.1.20260427125110499-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 590feb805a5fafba138b8b7f6dad68b5df628a8c2d790d86a4fad61664b14dd0
MD5 d1247a812fbdf9349f2e600afd3a599f
BLAKE2b-256 0b1784cd2d30dfe552af28f17310676eb59d41c16a8a6b3ac3fd7eb70e9f561f

See more details on using hashes here.

Provenance

The following attestation bundles were made for luckee_cli-0.1.20260427125110499-cp312-cp312-win_amd64.whl:

Publisher: cli-daily-release.yml on motse-ai/core_agent_loop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file luckee_cli-0.1.20260427125110499-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for luckee_cli-0.1.20260427125110499-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 224268f81469d5044bccb579fa9b449192a50338447f9fe395d3feb577dcf097
MD5 a6a9cd5a9da40610d9c1acdc3f7e780d
BLAKE2b-256 a68ee05760e3150cedb0f4b2d1445fe3d5d2617f98cc7ba0443d7386c1d3a5ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for luckee_cli-0.1.20260427125110499-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: cli-daily-release.yml on motse-ai/core_agent_loop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file luckee_cli-0.1.20260427125110499-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for luckee_cli-0.1.20260427125110499-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c9f5753dfc05bf2662a7582a4cafc0e8b98d5dc938a6993e4ae45ed07a67345d
MD5 64e7c0fea54835f5287743f1c89b94ce
BLAKE2b-256 4cbd83f6d372dddd28f36450ecedaf84d8ebf9c7cb07691f4c1b228360adaf4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for luckee_cli-0.1.20260427125110499-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: cli-daily-release.yml on motse-ai/core_agent_loop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file luckee_cli-0.1.20260427125110499-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for luckee_cli-0.1.20260427125110499-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d14251ca87b210c757bb7905bb451657dfa1d7d212b8f78852e86fdc6d85e4ad
MD5 4e1e352911170ebf11c6ce2cbda688a3
BLAKE2b-256 a98d290342e7f4853c8a54a557503579328be567734f5a18d237e1296da9e846

See more details on using hashes here.

Provenance

The following attestation bundles were made for luckee_cli-0.1.20260427125110499-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: cli-daily-release.yml on motse-ai/core_agent_loop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file luckee_cli-0.1.20260427125110499-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for luckee_cli-0.1.20260427125110499-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c52a8a5d04817c78c8ae85f7b031711f0f70008038478e4d2714b6cc218c7d75
MD5 e152746c7f14f83d2e55b8ac9ce2d181
BLAKE2b-256 7f9bdbd02c5538b366ae76650929f22d4f2e13de9b0a1138e5eea4959e48edbc

See more details on using hashes here.

Provenance

The following attestation bundles were made for luckee_cli-0.1.20260427125110499-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: cli-daily-release.yml on motse-ai/core_agent_loop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file luckee_cli-0.1.20260427125110499-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for luckee_cli-0.1.20260427125110499-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b31ba6daa7b2691bf254386ccbf09b025b23740e029de0d7a79bad53054afda4
MD5 fc466f6aab2a7f588037617c82094af8
BLAKE2b-256 014bac838076ad5b4677a45c7068ad99711a90a0b5935df68c2d04d941001650

See more details on using hashes here.

Provenance

The following attestation bundles were made for luckee_cli-0.1.20260427125110499-cp311-cp311-win_amd64.whl:

Publisher: cli-daily-release.yml on motse-ai/core_agent_loop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file luckee_cli-0.1.20260427125110499-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for luckee_cli-0.1.20260427125110499-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3e3e9a8a497bacdbff14df9cbd166f44c69f9143920365f56ce2453b2eb22a05
MD5 84f52aed10b30072b66b948f68c37b77
BLAKE2b-256 25643fee9f3a597a60e4feaccbff13fa8791f9caba1efcde231ab4392782ba20

See more details on using hashes here.

Provenance

The following attestation bundles were made for luckee_cli-0.1.20260427125110499-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: cli-daily-release.yml on motse-ai/core_agent_loop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file luckee_cli-0.1.20260427125110499-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for luckee_cli-0.1.20260427125110499-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ea2958a5dd3278dace27b11dee5606c423eda7aaa07fb58246ed262a3117c9d7
MD5 4fb3d160fe58cb01f811e46368590515
BLAKE2b-256 04cc41374e4c5eae75b5a1ff74ba6f40eacdc6470124bab5a367998321c15c6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for luckee_cli-0.1.20260427125110499-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: cli-daily-release.yml on motse-ai/core_agent_loop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file luckee_cli-0.1.20260427125110499-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for luckee_cli-0.1.20260427125110499-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5547bed2b9c976d540f2cb71813e9b861c3b93336b1490e55ac0a66e076d75ad
MD5 59d8a635d641012d7d0afebe36e43bef
BLAKE2b-256 a72b101be2e0481301c26da415575a1e91de39aa14177878a7dc094baf62a93c

See more details on using hashes here.

Provenance

The following attestation bundles were made for luckee_cli-0.1.20260427125110499-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: cli-daily-release.yml on motse-ai/core_agent_loop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file luckee_cli-0.1.20260427125110499-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for luckee_cli-0.1.20260427125110499-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cebcc1d7899f445867bc136e220f1e4ff58cc4aa21d866e5ad2d7eb82594cf10
MD5 b760c3779168b3b14dd253a1dce7d7db
BLAKE2b-256 6ef7292ed5add46f5b88a2bc073e956d00940a3ee18e9ca7dc541810a3edb0b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for luckee_cli-0.1.20260427125110499-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: cli-daily-release.yml on motse-ai/core_agent_loop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file luckee_cli-0.1.20260427125110499-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for luckee_cli-0.1.20260427125110499-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5eb7963403505ccaf411b1853ae03227b3ae87b4afe916c0423abe0437010069
MD5 c22fb319e9b0d36c5e5f82807b5aad0a
BLAKE2b-256 508dea38e2b1b2522ae7bda54755d47c97bd8553476875444faf268faa0c5241

See more details on using hashes here.

Provenance

The following attestation bundles were made for luckee_cli-0.1.20260427125110499-cp310-cp310-win_amd64.whl:

Publisher: cli-daily-release.yml on motse-ai/core_agent_loop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file luckee_cli-0.1.20260427125110499-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for luckee_cli-0.1.20260427125110499-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ddfd45b764aade4ead071ab512c8c3e860f38e26d81792cda3f843bd4ff8bfc3
MD5 bad51dc85cb9caa11abdecba5daa01ed
BLAKE2b-256 fa62e4504875308fa7288bcf1de10bcce7e80573e53be12930ca21dd853213c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for luckee_cli-0.1.20260427125110499-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: cli-daily-release.yml on motse-ai/core_agent_loop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file luckee_cli-0.1.20260427125110499-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for luckee_cli-0.1.20260427125110499-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 508d417513f52deaedf19c3483c566286589f51634ddda9ebd5cfba016a3e90a
MD5 0e7463d0628a020da746456c8abf2ace
BLAKE2b-256 d5a4645673c6acd21e96014122c864ee69abf275f78e324572f2dfc364969317

See more details on using hashes here.

Provenance

The following attestation bundles were made for luckee_cli-0.1.20260427125110499-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: cli-daily-release.yml on motse-ai/core_agent_loop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file luckee_cli-0.1.20260427125110499-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for luckee_cli-0.1.20260427125110499-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb44895a6c9dd564f0cf97c59efaf9e0131dd1a4a275fca095931930e2b1fb7a
MD5 566032b1885477d585b052bfd609ff4f
BLAKE2b-256 10b7eab6e6d5a1eec478566a938816262870678531ac6822d127e2d9d0c44685

See more details on using hashes here.

Provenance

The following attestation bundles were made for luckee_cli-0.1.20260427125110499-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: cli-daily-release.yml on motse-ai/core_agent_loop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file luckee_cli-0.1.20260427125110499-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for luckee_cli-0.1.20260427125110499-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a1147fedf9636f490346bde2d6d6b88f30b5890abe1d7f72c3801f612d581b39
MD5 52d5daea6db85e953d4721246ab0613d
BLAKE2b-256 c95c14dc80bc1c4022aec62a9469d4c55d71bad3937471eb6ac7bf32023f8944

See more details on using hashes here.

Provenance

The following attestation bundles were made for luckee_cli-0.1.20260427125110499-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: cli-daily-release.yml on motse-ai/core_agent_loop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page