Coding

omadeus

Interact with the Maestro API to create tasks, list tasks, and send room messages using the configured OpenClaw Maestro connection.

What it does

Interact with the Maestro API to create tasks, list tasks, and send room messages using the configured OpenClaw Maestro connection.

The skill document

Maestro Skill

Purpose

Use this skill whenever a user wants to interact with Maestro by creating tasks, listing tasks, or sending messages.

Configuration

Read configuration from the active OpenClaw configuration (openclaw.json).

Configuration path:

channels.omadeus

Required values:

  • baseUrl
  • apiKey
  • openClawMemberId

Never hardcode, expose, print, or ask the user for these values.

Authentication

Every request must include:

Accept: application/json, text/plain, */*
ApiToken: 

Never use Authorization: Bearer.

Base URL

Always use:

https://

Workflow

  1. Read configuration.
  2. Validate required fields.
  3. Build the request.
  4. Send the request.
  5. Validate the response.
  6. Return a concise user-friendly result.

Operations

Create Task

Endpoint:

POST /dolphin/apiv1/nuggets

Request body:

{
  "title": "...",
  "description": "...",
  "kind": "task",
  "priority": "low|medium|high|urgent",
  "memberReferenceId": ""
}

Rules:

  • Generate a concise title.
  • Generate a clear description from user input.
  • Default priority is low.
  • Never send stage.
  • Do not invent missing technical details.

List Tasks

Endpoint:

GET /dolphin/apiv1/global/taskviews?sort=-recentMessageAt&take=25&zone=tasklists-tasks

Rules:

  • Use requested take if provided.
  • Present readable results.
  • Do not dump raw JSON.

Send Message

Endpoint:

POST /jaguar/apiv1/rooms/{room_id}/messages

Body:

{"body":""}

Rules:

  • Never invent a room id.
  • Ask only if no room id is available.

Error Handling

If any of the following are missing, do not send requests:

  • channels.omadeus.baseUrl
  • channels.omadeus.apiKey
  • channels.omadeus.openClawMemberId

Report a configuration error without exposing internal values.

Security

Never:

  • expose credentials
  • log credentials
  • hardcode URLs
  • hardcode member IDs
  • include secrets in responses

Response Guidelines

  • Confirm successful operations.
  • Include task id when returned.
  • Summarize errors clearly.

Related skills

Route OpenClaw CLI requests to the right command family and profile, then verify the outcome.

335 installs6 stars

Guided, confirmation-based setup and classroom generation for OpenMAIC.

165 installs5 stars

Manage Notes, Tasks, Calendar, Files, Contacts, and Deck boards in your Nextcloud instance via CLI commands.

187 installs9 stars

Set up automatic notifications when OpenClaw gateway restarts. Use when user wants to be notified of gateway startup events via any messaging channel (iMessage, WhatsApp, Telegram, Discord, etc.).

47 installs2 stars

Drive a Godot 4.x Editor from an agent through 30 built-in tools covering scenes, nodes, transforms, input, screenshots, and logs.

114 installs