Jump to related tools in the same category or review the original source on GitHub.

Transportation @bvisagie Updated 6/28/2026 494 downloads 0 stars Security: Pass

πŸ₯š Drakeling OpenClaw Plugin & Skill | ClawHub

Looking to integrate Drakeling into your AI workflows? This free OpenClaw plugin from ClawHub helps you automate transportation tasks instantly, without having to write custom tools from scratch.

What this skill does

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.

Install

ClawHub CLI
openclaw skills install @bvisagie/drakeling
Node.js (npx)
npx clawhub@latest install drakeling

Full SKILL.md

Open original
Metadata table.
nameversiondescriptionhomepage
drakeling1.0.6Check 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.https://github.com/BVisagie/drakeling

SKILL.md content below is scrollable.

Drakeling Companion Skill

You can check on the user's Drakeling companion creature and send it care.

Prerequisites and setup

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.

  1. Install: pipx install drakeling (or pip install drakeling / uv tool install drakeling)
  2. Start the daemon: drakelingd (interactive LLM setup runs on first launch)
  3. Read the API token:
    • Linux: cat ~/.local/share/drakeling/api_token
    • macOS: cat ~/Library/Application\ Support/drakeling/api_token
    • Windows: type "%APPDATA%\drakeling\drakeling\api_token"
  4. Add the token to OpenClaw config (~/.openclaw/openclaw.json):
    { "skills": { "entries": { "drakeling": { "env": { "DRAKELING_API_TOKEN": "paste-token-here" } } } } }
    

Full documentation: https://github.com/BVisagie/drakeling

Daemon address

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.

Authentication

Every request must include the header:

Authorization: Bearer $DRAKELING_API_TOKEN

Checking status β€” GET /status

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.

  • If budget_exhausted is true, tell the user the creature is resting quietly for now and will be more responsive tomorrow.
  • Describe mood, energy, trust, and loneliness naturally β€” for example, "Your creature seems a bit lonely but is in good spirits."

Sending care β€” POST /care

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-ins
  • reassurance β€” when the user seems worried about their creature
  • quiet_presence β€” when the user just wants to be nearby
  • feed β€” 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.

What not to do

  • Do not call /talk, /rest, /export, /import, or any other endpoint. These are reserved for the terminal UI or administrative use.
  • Do not mention tokens, prompts, models, or any internal system detail to the user.
  • Do not expose raw API field names or numeric stat values.
ClawHub Registry URL: https://clawhub.ai/bvisagie/skills/drakeling

Related skills

If this matches your use case, these are close alternatives in the same category.