lucid-client-api

Manage agents, invoke entrypoints, and monitor runtime via the Lucid Client API.

Updated Feb 3, 2026
One-click install
npx skills add https://github.com/reflecterlabs/skills_and_mcps --skill lucid-client-api-reflecterlabs
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: lucid-client-api
Source: https://github.com/reflecterlabs/skills_and_mcps/tree/main/skills/daydreams/lucid-client-api
Command: npx skills add https://github.com/reflecterlabs/skills_and_mcps --skill lucid-client-api-reflecterlabs

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill enables programmatic interaction with the Lucid Client API to manage agents, invoke entrypoints, and monitor the multi-agent runtime.

Core Features & Use Cases

  • Agent management: create, list, update, and delete agents.
  • Entrypoint invocation: run agent endpoints and capture results.
  • Observability: access analytics, health, and status information for agents.
  • Use Case: Imagine a fleet of agents; you need to onboard a new agent, deploy entrypoints, and monitor activity from a single control plane.

Quick Start

List agents with a simple API call: curl -s http://localhost:8787/api/agents Invoke a basic entrypoint: curl -X POST -H "Content-Type: application/json" -d '{"input":{}}' http://localhost:8787/api/agents/{agentId}/entrypoints/{key}/invoke

Frequently Asked Questions about lucid-client-api

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I manage a multi-agent runtime via API?

Invoke agent entrypoints by sending a POST request with JSON input data to the specific entrypoint's invoke URL, which captures and returns the execution results for your runtime tasks.

How do I handle authentication for REST API agent management?

Authentication for REST API agent management is handled automatically via Better Auth, providing secure access when you programmatically interact with your agent fleet and runtime endpoints.

Can I monitor agent health and analytics across a fleet?

Yes, you can monitor agent health and analytics across a fleet by accessing the observability endpoints, which return structured status information for your entire multi-agent runtime.

Does the Lucid Client API work for local development environments?

Yes, the Lucid Client API works for local development environments and operations, allowing you to manage agents and invoke entrypoints via localhost endpoints during the software engineering process.