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.mdsource 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 input | Skill response |
|---|---|
| |
| |
| |
Testing Workflow
- Load the skill – Place this
in the appropriate OpenClaw skills directory.SKILL.md - Start an OpenClaw instance – Ensure skills are enabled.
- Send a message containing "marco" – For example, type
ormarco
.Hey, marco! - 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.