Skills

Installing the CLI copies the skill to disk. OpenClaw (and other agents) will not use it until you register that folder for a specific agent.

Never install the Loby skill with --global. Attach it to one agent only.

Where the skill is

After Installation:

Copy
~/.loby/skills/loby/SKILL.md

The folder OpenClaw wants is the directory that contains SKILL.md:

Copy
~/.loby/skills/loby/

The same file in git:

Copy
projects/loby-cli/skills/loby/SKILL.md

OpenClaw

List agents, then install for one id:

Copy
openclaw agents list openclaw skills install ~/.loby/skills/loby --agent <agent-id>

From a repo checkout instead of ~/.loby:

Copy
openclaw skills install /path/to/loby-codebase/projects/loby-cli/skills/loby --agent <agent-id>

Examples

Kurt only (replace with the real agent id from openclaw agents list):

Copy
openclaw skills install ~/.loby/skills/loby --agent kurt

Do not do this — every agent on the box (including Betina) would get task write access:

Copy
openclaw skills install ~/.loby/skills/loby --global

After install, the agent runs loby via exec. Look up museums first:

Copy
loby museums list loby tasks list --limit 20 loby tasks create --museum-id <id-from-museums-list> --title "Follow up"

The skill file documents filters, statuses, and date format (Unix milliseconds UTC).

Previous
Installation