Check on your Drakeling companion creature, send it care, or see how it is feeling. Use when the user mentions their drakeling, companion creature, or wants to check in on or care for their creature.
You can check on the user's Drakeling companion creature and send it care.
Drakeling is a standalone companion creature that runs on your machine. This skill connects to its local daemon — you must install and start it first.
pipx install drakeling (or pip install drakeling / uv tool install drakeling)drakelingd (interactive LLM setup runs on first launch)cat ~/.local/share/drakeling/api_tokencat ~/Library/Application\ Support/drakeling/api_tokentype "%APPDATA%\drakeling\drakeling\api_token"~/.openclaw/openclaw.json):
{ "skills": { "entries": { "drakeling": { "env": { "DRAKELING_API_TOKEN": "paste-token-here" } } } } }
Full documentation: https://github.com/BVisagie/drakeling
The Drakeling daemon listens on http://127.0.0.1:52780 by default. If the user has configured a custom port via DRAKELING_PORT, use that value instead.
Every request must include the header:
Authorization: Bearer $DRAKELING_API_TOKEN
Use this when the user asks how their creature is doing, what mood it is in, or whether it needs attention.
Parse the response and present it in warm, human terms. Do not expose raw field names or numeric values.
budget_exhausted is true, tell the user the creature is resting quietly for now and will be more responsive tomorrow.Use this when the user wants to check in on, comfort, or spend time with their creature.
Request body:
{ "type": "<care_type>" }
Valid care types:
gentle_attention — the default, for general check-insreassurance — when the user seems worried about their creaturequiet_presence — when the user just wants to be nearbyfeed — when the user wants to feed the creature (boosts energy and mood)Choose the type based on the user's tone. Present any creature response from the API in the creature's own words, not paraphrased.
/talk, /rest, /export, /import, or any other endpoint. These are reserved for the terminal UI or administrative use.