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

Uploaded CPython 3.12Windows x86-64

luckee_cli-0.1.20260425131737489-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.7 MB view details)

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

luckee_cli-0.1.20260425131737489-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.5 MB view details)

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

luckee_cli-0.1.20260425131737489-cp312-cp312-macosx_11_0_arm64.whl (791.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

luckee_cli-0.1.20260425131737489-cp312-cp312-macosx_10_13_x86_64.whl (885.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

luckee_cli-0.1.20260425131737489-cp311-cp311-win_amd64.whl (779.1 kB view details)

Uploaded CPython 3.11Windows x86-64

luckee_cli-0.1.20260425131737489-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.9 MB view details)

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

luckee_cli-0.1.20260425131737489-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.8 MB view details)

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

luckee_cli-0.1.20260425131737489-cp311-cp311-macosx_11_0_arm64.whl (815.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

luckee_cli-0.1.20260425131737489-cp311-cp311-macosx_10_9_x86_64.whl (909.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

luckee_cli-0.1.20260425131737489-cp310-cp310-win_amd64.whl (777.7 kB view details)

Uploaded CPython 3.10Windows x86-64

luckee_cli-0.1.20260425131737489-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.5 MB view details)

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

luckee_cli-0.1.20260425131737489-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.4 MB view details)

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

luckee_cli-0.1.20260425131737489-cp310-cp310-macosx_11_0_arm64.whl (825.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

luckee_cli-0.1.20260425131737489-cp310-cp310-macosx_10_9_x86_64.whl (919.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

File hashes

Hashes for luckee_cli-0.1.20260425131737489-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8b92e24ef911b890fa7746825beb5bdc4ecc7082acfbf755c985b7e7cc31981a
MD5 c902062a991a2e2d0e1efe1014fc6c66
BLAKE2b-256 d41f5b7ccab4f1658c1a939bb7798c2407bacb0bb421722dcd8fd86ea8d19e88

See more details on using hashes here.

Provenance

The following attestation bundles were made for luckee_cli-0.1.20260425131737489-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.20260425131737489-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.20260425131737489-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4edae3c1f7208849724f9da126bf74fd571f4a11b3e47016f74d238c71609444
MD5 e88e00cdd0eabea4035f779b0323c725
BLAKE2b-256 71a82f6e4681b3943f7fb5621abfbd0e668894995604c9a45083957d9aacece0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for luckee_cli-0.1.20260425131737489-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c85ddce4fba70352aa2bf1cb1b271c60d1e940b0d563289bd8550c62aaae2e92
MD5 188b89d4c2734a6e08414073be2b08ce
BLAKE2b-256 dc3e1838627d51b71a59aa5a6ec5e28768563518d62d2c066b5130fec456e0e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for luckee_cli-0.1.20260425131737489-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 92153a29dd48eae9822e0611b56b465f5311f223e5debf5604c816996919fee9
MD5 bf99267a155a0001b2425550150cc328
BLAKE2b-256 ad6a7615ac6a4b4147bf3290fe265a41927ec94d17a7a096f6fdb81de6a8c034

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for luckee_cli-0.1.20260425131737489-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 acb43118e73dcdb7b24a72237eab8cd0f6e35ef3ad3d1fe129af58ba3095bd6f
MD5 621d4eee8354d55480a3dbde2e575894
BLAKE2b-256 41d867a93bcc1933cbfd464834dc77212e35dba76e1b217a2b6ce50130f7f295

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for luckee_cli-0.1.20260425131737489-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 174f54567e2d9103e407f336593ec1b92e7bd4d2ee71f19114a2ec881f7dc6de
MD5 a76cd11f81ab5653ca4a7221235fc7ce
BLAKE2b-256 382509aecdeda64295c217b21ebc669ec39bf09ad232a551c6fe083f5bb9f717

See more details on using hashes here.

Provenance

The following attestation bundles were made for luckee_cli-0.1.20260425131737489-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.20260425131737489-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.20260425131737489-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 acdea949bb2d84dc9d4465cd3a8f34d3efbc6e131e469b4122fdc8c2c20ed787
MD5 f2abc46e3dd5293f245a3ac2fa261bf9
BLAKE2b-256 91b761a6c19be7cd23a0c3fc64c1dbadd6659f9f72cd7a260fd9c48557ca81f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for luckee_cli-0.1.20260425131737489-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 afe0d0143cc387efe1db507ba726c54ac9969d189694a92479142fb1339e7179
MD5 90b31daed9109d6712bff4a9badd2a35
BLAKE2b-256 6c6bd5c3aaa5942b2ab9209abd7030b2377087992a6ff7812b2aa807f57264f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for luckee_cli-0.1.20260425131737489-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67f0fb61102184946344f116551b5bbf63f439be9c4ff9f3b8f3addf50424396
MD5 c0d38048dd8a8d4d6798d9708128d32b
BLAKE2b-256 38f49f514ff55ff739e4dd11d167c395cea0712630e0834eb59e8356e5af91ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for luckee_cli-0.1.20260425131737489-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3bd214d72c58ac119da0691e2c688da77cdaea8a667ea04aaf7d991ef4edd30b
MD5 5c59780f4bebc39d578604b3f2f0e95e
BLAKE2b-256 2825d22bbfea151bbb406e789a12b5794077cece20a926ce11c6f8ffe49da82c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for luckee_cli-0.1.20260425131737489-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 92b8073922dcd45f86332a9b7c9599c995d104197044a0157dc271eb8b077398
MD5 490281c985574961a1328df6b5d0caae
BLAKE2b-256 a13b83e350da34189185ee6e4b070f9941837a85e85f53db925833fedac57284

See more details on using hashes here.

Provenance

The following attestation bundles were made for luckee_cli-0.1.20260425131737489-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.20260425131737489-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.20260425131737489-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ca1b052f16c22dd5069c29f496eeb3f51e2f5cd734b39a27e700aa2a18fe2529
MD5 70e49216f80e84f42dccbc6a37f817c4
BLAKE2b-256 3c81641a71b364d40a669d1f96cfc597134f1087905db51173b3faeb5f30446f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for luckee_cli-0.1.20260425131737489-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 779b96f014940866c476f96997d947db3545ca62352171becfab7597e31e8591
MD5 a210868104dd67c9958759eac3128c17
BLAKE2b-256 40c2d85447a72e9bad3424ba0b63ab39966bdad0da2deeb16af7f27b52441d2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for luckee_cli-0.1.20260425131737489-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e648d51bafbcb702bd6c1e0f1ed0d275f0893bbeb7efc6aade53d9bcd3f9e8b
MD5 8957b437de1c091d73a71b9d16b4e82b
BLAKE2b-256 02e18dc11353bfb42ad793725f4f83405496445357448cfb09b10403d5990819

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for luckee_cli-0.1.20260425131737489-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e7d1cea1de8e6595cb6f4aa553ce8e2320efaff5766b92608050b1c3389415b5
MD5 333741eaf4c007ab5e828785a8a7b225
BLAKE2b-256 1cd8553ffb2bf2ec1b46657eba886576c24d71241200cfc799814343ebe40366

See more details on using hashes here.

Provenance

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