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.20260617023816518-cp312-cp312-win_amd64.whl (785.1 kB view details)

Uploaded CPython 3.12Windows x86-64

luckee_cli-0.1.20260617023816518-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.20260617023816518-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.20260617023816518-cp312-cp312-macosx_11_0_arm64.whl (817.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

luckee_cli-0.1.20260617023816518-cp312-cp312-macosx_10_13_x86_64.whl (915.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

luckee_cli-0.1.20260617023816518-cp311-cp311-win_amd64.whl (802.4 kB view details)

Uploaded CPython 3.11Windows x86-64

luckee_cli-0.1.20260617023816518-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.20260617023816518-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.20260617023816518-cp311-cp311-macosx_11_0_arm64.whl (843.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

luckee_cli-0.1.20260617023816518-cp311-cp311-macosx_10_9_x86_64.whl (940.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

luckee_cli-0.1.20260617023816518-cp310-cp310-win_amd64.whl (798.3 kB view details)

Uploaded CPython 3.10Windows x86-64

luckee_cli-0.1.20260617023816518-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.20260617023816518-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.20260617023816518-cp310-cp310-macosx_11_0_arm64.whl (853.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

luckee_cli-0.1.20260617023816518-cp310-cp310-macosx_10_9_x86_64.whl (950.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

File hashes

Hashes for luckee_cli-0.1.20260617023816518-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b66374ea57af0f72502e1af06e414a52e7078aee89f2ffda962bc9467a02436e
MD5 91df42f458b8d1731ac55d8e347ce803
BLAKE2b-256 772e4b3d842c85a2c73b85c397c3c7796a91c5f50f8c6435286080d0b5ad62c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for luckee_cli-0.1.20260617023816518-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.20260617023816518-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.20260617023816518-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a6e5fa0926e5ac2144caeee29ff62a68b4255b2ff82d5d8bf4f8e78e5d94ff6c
MD5 7913b782826088f3f823850a4411b78c
BLAKE2b-256 2b3bee14718f252369c30b83581ca64f016527ffab4943c54cf45c998f19bbf0

See more details on using hashes here.

Provenance

The following attestation bundles were made for luckee_cli-0.1.20260617023816518-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.20260617023816518-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for luckee_cli-0.1.20260617023816518-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 17a7844162eec265804b76f85002b38c78975fce4079296afd400710d2c5d2d2
MD5 05aa7cbbe1759a60fdc480f064a3027b
BLAKE2b-256 aed19a75564fd07b9bff27572667e7fd376d0728c61f38dce9c14e76a29077e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for luckee_cli-0.1.20260617023816518-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.20260617023816518-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for luckee_cli-0.1.20260617023816518-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6c17c247dd622341fe4ab3abf17b4cd43d7db09024dd0d65ac914c370ad2b5c9
MD5 6ed05ce6470885d28e0fe75ec4be583a
BLAKE2b-256 bef3c5eb35a1a57199617f0e2f78a1b31bcd2c2e834965e5b20e1abf36232695

See more details on using hashes here.

Provenance

The following attestation bundles were made for luckee_cli-0.1.20260617023816518-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.20260617023816518-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for luckee_cli-0.1.20260617023816518-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 aa79fb11fea6f9ded07d4b59265ad7d783bd2ec62ed5d9adf455ba51125950b8
MD5 ee17f8ec5007c39a81492c2411253c04
BLAKE2b-256 09ef8e64e4a65cb0c72c7bbfb6d6604327307233600bc44f6834c19df9731319

See more details on using hashes here.

Provenance

The following attestation bundles were made for luckee_cli-0.1.20260617023816518-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.20260617023816518-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for luckee_cli-0.1.20260617023816518-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 33b411ca52a17f96578add27c6d8a8cda49052d0203a4e1362512b560e759086
MD5 485d5486125bcf7b66c3115fce99044d
BLAKE2b-256 c64527df9a945396ca2cbe3081c314041d47fd4b8181946868b9a9434932b962

See more details on using hashes here.

Provenance

The following attestation bundles were made for luckee_cli-0.1.20260617023816518-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.20260617023816518-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.20260617023816518-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f5f3ec5beee57ab362921b5d351ac2370b2a6f922d657942d567ff12b876debb
MD5 a2991878db94806857af4763cef468dc
BLAKE2b-256 8e9af5f3ca0dd51278639666ba722d6462cfdb8fc9166d4fc4b1af3f3263f498

See more details on using hashes here.

Provenance

The following attestation bundles were made for luckee_cli-0.1.20260617023816518-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.20260617023816518-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for luckee_cli-0.1.20260617023816518-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 de06586ba1eda98a8883d55b7ddf1cc2e5db1aacd5c914ce16d20656ff6d7683
MD5 9890cb7045ab4b2b66a729c93d3f458d
BLAKE2b-256 f93492179adf35efa77fee0ab6295f016215d56a9a51c033ebac42525746679d

See more details on using hashes here.

Provenance

The following attestation bundles were made for luckee_cli-0.1.20260617023816518-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.20260617023816518-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for luckee_cli-0.1.20260617023816518-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1e55f1e8372307e0e5b764cd3e66b037465042e597cb0ef936ee78ec02cf9b0
MD5 9e8b0dd2d8a8b335468084747d372612
BLAKE2b-256 498fc19112d1aaf68099d29873c95ee6ad79ff7292ca90e720219520add129ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for luckee_cli-0.1.20260617023816518-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.20260617023816518-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for luckee_cli-0.1.20260617023816518-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0394db28c2934a3f572a121a2245fd2ae37885ef0ec9e83b9e85b1d03f82fe6a
MD5 7d6197d85c783c6cca09c4a246a3f430
BLAKE2b-256 08d9994df752fa9bdd09b1aced0e2068c3552885d0e490cbbfd90bd08254944b

See more details on using hashes here.

Provenance

The following attestation bundles were made for luckee_cli-0.1.20260617023816518-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.20260617023816518-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for luckee_cli-0.1.20260617023816518-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cd632a2053d0432237ce972166c317d0424ed22ff174c01657237e889f5792ec
MD5 537009a1c855909fe4002db56ece6d7b
BLAKE2b-256 30bb3a28aad29a2334e2e6b256fed42cdae04e5aa329130056628190f77b7504

See more details on using hashes here.

Provenance

The following attestation bundles were made for luckee_cli-0.1.20260617023816518-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.20260617023816518-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.20260617023816518-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ef82ca12745c794716884e23ad3e48a4ebb80943db3f04888499709324d7a3ca
MD5 f1bf8c7cf9dd7f01cd03a0e012e96828
BLAKE2b-256 4504d2ccb25d9498953e406ebdd3c5f1582c96df88372e0f93e4c0d19af9435d

See more details on using hashes here.

Provenance

The following attestation bundles were made for luckee_cli-0.1.20260617023816518-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.20260617023816518-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for luckee_cli-0.1.20260617023816518-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 61a8aa6f6231e095a405e8ec0eaa85eb8fd4821b70fe5f02a84605552170f60f
MD5 604713698eda584e338cb1ac99bd65a5
BLAKE2b-256 f5c80aa84d88a72303413b501d1ead014305796966182d04c58d164196291b96

See more details on using hashes here.

Provenance

The following attestation bundles were made for luckee_cli-0.1.20260617023816518-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.20260617023816518-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for luckee_cli-0.1.20260617023816518-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c498d04be69fc7aafc83d2e06fca336b22d9f207a549a8efbc5c231790367177
MD5 53eb184efd6e92cef82c5556722dfc34
BLAKE2b-256 bfd5afe28a69262e81ebc9570bacf9745c8d56f62c267cea16cb3bbf4e2581cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for luckee_cli-0.1.20260617023816518-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.20260617023816518-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for luckee_cli-0.1.20260617023816518-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6f0546c2065c0b462fbd32575fc64b45403af6df59c6a5e40693708e9515fd37
MD5 c9e76b8f50dcc5298c074557fe0df105
BLAKE2b-256 90d320a3cfacb66797ff0410425ea55a7ebdbe08a58dc87509ec49a8bf2015a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for luckee_cli-0.1.20260617023816518-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