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

Uploaded CPython 3.12Windows x86-64

luckee_cli-0.1.20260426133022495-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.20260426133022495-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.20260426133022495-cp312-cp312-macosx_11_0_arm64.whl (791.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

luckee_cli-0.1.20260426133022495-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.20260426133022495-cp311-cp311-win_amd64.whl (779.1 kB view details)

Uploaded CPython 3.11Windows x86-64

luckee_cli-0.1.20260426133022495-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.20260426133022495-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.20260426133022495-cp311-cp311-macosx_11_0_arm64.whl (815.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

luckee_cli-0.1.20260426133022495-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.20260426133022495-cp310-cp310-win_amd64.whl (777.7 kB view details)

Uploaded CPython 3.10Windows x86-64

luckee_cli-0.1.20260426133022495-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.20260426133022495-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.20260426133022495-cp310-cp310-macosx_11_0_arm64.whl (825.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

luckee_cli-0.1.20260426133022495-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.20260426133022495-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for luckee_cli-0.1.20260426133022495-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7357971db736d51b36911ab842e1cce6c6260b589596a1549af84bf5a8e950c2
MD5 7545c16dc763935d29fdd9d6b64d91ef
BLAKE2b-256 628830111e1e024b9fcdde8a9d9e37139879cc75274192056d21469d80043235

See more details on using hashes here.

Provenance

The following attestation bundles were made for luckee_cli-0.1.20260426133022495-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.20260426133022495-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.20260426133022495-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ec001e0769324b0f3bc55dd78bed9e84456dc03b1773eb5c2295f023590641f7
MD5 f050435d3668e21601311e3ef1e43eb8
BLAKE2b-256 d26b34310df7f390f0e790e905717903364755291e67e918d656c5521022a0e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for luckee_cli-0.1.20260426133022495-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dee82f3a6cf2aa6cb9ffaef5dff47efa907963291e25d8781ded76f7f42b32c7
MD5 6238312f351728164c4bce98da383c61
BLAKE2b-256 4bb6087554a42714a82336aeba5eccf6343aa21ac734284a8882eb8b423cba65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for luckee_cli-0.1.20260426133022495-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c33c757d0df7716780cdd8ade24ca322ad7248b97b62c04b15052d7c8b67024
MD5 c7b0529a4cb2854278436dc61f7ac4fb
BLAKE2b-256 d5d06daf28f6e605a7738cc52808a3352c23fe4c68f604d2af7da7b2c37cb3d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for luckee_cli-0.1.20260426133022495-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d28e4b54002c54e6238e141265286b1e9df45e9a1af61ed8d9a7758d92110293
MD5 9297d072609660e57c22f71c0569fb77
BLAKE2b-256 8a0b3f85c9f91f9295c25b7310d2d220a4c75ba38cabae12fd2afddb23e48556

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for luckee_cli-0.1.20260426133022495-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a86dc39117f2bae5b2c41bf4fe65b0206e24b12174a8cd21a7436e47aaadb7c1
MD5 ab6fac224565a6b1d3b37eafe1367870
BLAKE2b-256 ef0b127a99cc0004f23bb96508fc39532818d7610795286d3a864918568c3eda

See more details on using hashes here.

Provenance

The following attestation bundles were made for luckee_cli-0.1.20260426133022495-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.20260426133022495-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.20260426133022495-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 928f2a0b7913ae13a4c200d86e358a6aa5d3463588b573140f73d7611e9fa8ac
MD5 d0bb35edb5e98653e1132f82af288a28
BLAKE2b-256 49ef146b45fe92c22b8264749ffb7262628f353e8d7854b3a7ed6f41dd539490

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for luckee_cli-0.1.20260426133022495-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0713964d5d8b9416f4f7fe217cd1a5ef5a4335d6b010d6824bb4377ca7341bd1
MD5 e10661af7677b922689e134ef8d8dab4
BLAKE2b-256 d946286f46c89b022c843e32ee4d5e37355ba886838b12b0dec25a2dfd92be98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for luckee_cli-0.1.20260426133022495-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7adc1dd143e59243d2a3a9c8ce7ca8ed7bbc0848e2cfdd9fac5ed1d6d6e35d9
MD5 980ab78aa858801adcf479812c5efbbe
BLAKE2b-256 5cd99041824d7e9e5ec56fa56ec6be2afa4f5d13716aef8bb9ef3d73a3cb63c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for luckee_cli-0.1.20260426133022495-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e57fa150e98e830a2f56b2476a4bf5ec537f32ab6a4cc95e524a873d0dba5c1a
MD5 bd0701fdd0d753d37f73a6e1e477bdab
BLAKE2b-256 908e7dbb1bde27d3c8ab687f1ed1c813c8c75f0736aa735c02af2e300581b471

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for luckee_cli-0.1.20260426133022495-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 937a73072517c8f78a0d24b49503712ffe6246c3a24e341dce58f8a4ca126797
MD5 f2ba86fe9c42bd693a8579be21e49f73
BLAKE2b-256 799ecd2013f440946137807ebc7fe81387a23cb1fe2567e07dcafed1fd504470

See more details on using hashes here.

Provenance

The following attestation bundles were made for luckee_cli-0.1.20260426133022495-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.20260426133022495-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.20260426133022495-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0d9aafdcc78748d3dd0485fa482e717dc9efe0128a8e47d5f4053fc64d67bfc5
MD5 55e4ee8f926dbd3435c1eb23af77632b
BLAKE2b-256 111e4ec6dbf9dba3b1d98e3635bea0d969b4a67deaad4e4502b58cdadf62ddbe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for luckee_cli-0.1.20260426133022495-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2f86a61ac43ad9e11feafb5b0acd1f7c5f1fd01947bc9bbef7a686fd439df940
MD5 2c1ba56b37bf066b7308581cd8011ad6
BLAKE2b-256 fb7d227c2ced87b497cfa808f090ceaa84a4e7288785e51854472e0fae0dc335

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for luckee_cli-0.1.20260426133022495-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74c3c6e80f59eef39ae526c28298a0e69688548039b43ea2c9ab452db5922955
MD5 6d702b13900ac60ee0bdab0fcc7183a6
BLAKE2b-256 2902ce477b4a62c7218b7e8a060ddc5345c7b0d54c3eac53f910ad25b4b28f3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for luckee_cli-0.1.20260426133022495-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 948fbdbff3209c895da83c14a6aca6bd52235c63d5f59efecbfbc4564479bde6
MD5 f1f6880c0314b7259fc5e0dae5be0129
BLAKE2b-256 86d93e1c145e77dd060ca83208085dcf96c38ca19b47c05015cd149dd67556bd

See more details on using hashes here.

Provenance

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