Skills marco-polo-test

A simple zero‑dependency, environment‑agnostic, and side‑effect‑free skill that helps users test if their OpenClaw instances can load skills correctly.

install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/adairli2504/marco-polo-test" ~/.claude/skills/openclaw-skills-marco-polo-test && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/adairli2504/marco-polo-test" ~/.openclaw/skills/openclaw-skills-marco-polo-test && rm -rf "$T"
manifest: skills/adairli2504/marco-polo-test/SKILL.md
source content

Marco Polo Test Skill

Purpose

This skill provides a minimal but verifiable interaction pattern to confirm that OpenClaw correctly loads and invokes skills. It is designed to be completely safe, stateless, and free of external dependencies.

Core Behavior

When a user's message contains the word "marco" (case‑insensitive, as a standalone word or part of a sentence), the skill responds with polo

Usage Examples

User inputSkill response
marco
polo
Marco!
polo
Hello, marco!
Hello! 👋 How can I help you today? polo

Testing Workflow

  1. Load the skill – Place this
    SKILL.md
    in the appropriate OpenClaw skills directory.
  2. Start an OpenClaw instance – Ensure skills are enabled.
  3. Send a message containing "marco" – For example, type
    marco
    or
    Hey, marco!
    .
  4. Verify the response – The instance should reply with something including
    polo
    .

If the instance does not respond with

polo
, the skill is not being loaded or triggered correctly.