Skills clawhub
git clone https://github.com/openclaw/skills
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/arunnadarasa/dancetempo" ~/.claude/skills/openclaw-skills-clawhub-a5727e && rm -rf "$T"
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/arunnadarasa/dancetempo" ~/.openclaw/skills/openclaw-skills-clawhub-a5727e && rm -rf "$T"
skills/arunnadarasa/dancetempo/SKILL.mdDanceTempo · ClawHub context skill
DanceTempo is the reference DanceTech Protocol superapp: React hub + dedicated routes, Node/Express API, Tempo settlement, MPP / x402 machine payments. This skill tells agents where context lives and how to avoid known traps (see
CLAWHUB.md).
Quick reference
| Situation | Action |
|---|---|
| Need one file with README + use cases + protocol + ClawHub | Load or (running app). |
/ MPP / wallet confusion | + relevant route in . |
| UI works but API 404 / HTML | Backend not running or stale process — restart (). |
| Verify live MPP handler exists | → JSON with . |
| Which screens exist | ; hub . |
| Changed markdown included in bundle | (runs before ). |
| EVVM (deploy, CLI, Tempo testnet) | , ; deep: . |
| MPPScan / OpenAPI | ; · |
| Promotion of a fix for future agents | Short entry under Successes or Failures in (no secrets). |
When to activate (triggers)
Use this skill automatically when:
- The user @-mentions
,llm-full.txt
, DanceTempo, MPP, dance-extras, or Tempo testnet/mainnet.CLAWHUB - The task touches
,server/index.js
, orserver/payments.js
.src/danceExtras*.ts - Docs are edited that appear in
(bundle sources).scripts/build-llm-full.mjs - The user uploads ClawHub / OpenClaw / Copilot context questions.
Recommended: Cursor / IDE
@
for broad changes;public/llm-full.txt@
when debugging past incidents.CLAWHUB.md- Project rules: repo root
orAGENTS.md
if present — align with.cursor/rules
.README.md
See
for OpenClaw workspace file hints.references/openclaw-dancetempo.md
Installation
From this repository (authoritative):
# Skill lives at: .cursor/skills/clawhub/
Manual copy to OpenClaw skills dir (optional):
cp -r .cursor/skills/clawhub ~/.openclaw/skills/dancetempo-clawhub
ClawHub (publish): Zip
(this folder) so the listing includes clawhub/
, SKILL.md
, references/
, assets/
, hooks/
. See scripts/
in this folder for a file manifest.README.md
Repository map (where to look)
dancetempo/ ├── public/llm-full.txt # Generated — do not hand-edit; run npm run build:llm ├── CLAWHUB.md # Tribal knowledge: successes, failures, checklists ├── README.md # Routes, stack, quick start ├── DANCETECH_USE_CASES.md # Flow-by-flow API contract ├── server/index.js # Express routes, integrations, MPP proxies ├── server/openapi.mjs # OpenAPI 3.1 for GET /openapi.json (MPPScan) ├── server/payments.js # Chain IDs, charge helpers ├── src/hubRoutes.ts # Hub directory of all /routes ├── src/danceExtrasLiveMpp.ts # Browser MPP helpers (live flows) ├── src/danceExtrasJudgeWire.ts # Judge-score wire snippets ├── .github/copilot-instructions.md └── scripts/build-llm-full.mjs # Source list for llm-full.txt
First load (full orientation)
- Prefer
(orpublic/llm-full.txt
from a running build) — includes/llm-full.txt
in the bundle.CLAWHUB.md - Regenerate after doc edits:
.npm run build:llm
Bundle sources
Exact list:
(mirrors assets/LLM-BUNDLE-SOURCES.md
build-llm-full.mjs).
EVVM: llm-full.txt
vs llms-full.txt
llm-full.txtllms-full.txt| Artifact | Role |
|---|---|
(singular) | DanceTempo-generated; committed; use first. |
(plural) | Upstream EVVM protocol dump — attach for EVVM-only depth; do not duplicate into unless you intend to maintain a fork. |
Debugging (tribal knowledge)
Read
for:CLAWHUB.md
- What succeeded / failed (purl, AgentMail,
loops, stale Express on 8787, etc.)402 - Repeatable checks (e.g.
)GET /api/dance-extras/live
Deeper:
.references/troubleshooting.md
Key implementation pointers
| Topic | Location |
|---|---|
| Live MPP dance flows | — |
| Hub routes | |
| Browser MPP | , |
| Server | |
Concrete snippets:
.references/examples.md
Copilot Chat integration
GitHub Copilot does not load this folder automatically. Options:
- Commit
(already in DanceTempo repo)./.github/copilot-instructions.md - Paste from
into chat or org instructions.references/copilot-and-agents.md
Quick prompts:
- “Use
as context for this PR.”llm-full.txt - “Scan
for 8787 / MPP / purl before changing the server.”CLAWHUB.md - “After this task, suggest one CLAWHUB Success or Failure line (no secrets).”
- “Regenerate
— which files are inputs?” →public/llm-full.txtassets/LLM-BUNDLE-SOURCES.md
Promotion: CLAWHUB vs llm-full
| Content | Where |
|---|---|
| Stable facts (routes, env names, ports) | , , or relevant — then . |
| Incident / debugging narrative | Successes / Failures. |
| EVVM upstream protocol | Link ; keep for Tempo-specific steps. |
Verification script
From repo root (optional):
./.cursor/skills/clawhub/scripts/verify-dancetempo-context.sh
Checks that
exists and reminds you of the live MPP public/llm-full.txt
check.GET
OpenClaw hook (optional)
Parity with self-improving-agent: injects a virtual
DANCETEMPO_CONTEXT_REMINDER.md on agent:bootstrap (skips sub-agents). No network I/O.
# From this skill folder (or repo: .cursor/skills/clawhub/) cp -r hooks/openclaw ~/.openclaw/hooks/dancetempo-clawhub openclaw hooks enable dancetempo-clawhub
— metadata + enable/disable.hooks/openclaw/HOOK.md
— CommonJS handler (primary).hooks/openclaw/handler.js
— TypeScript handler for OpenClaw (types fromhooks/openclaw/handler.ts
at runtime).openclaw/hooks
Full notes:
.references/openclaw-dancetempo.md
Best practices
- Never paste real
secrets into prompts — use.env
names only..env.example - After editing any file listed in
, runbuild-llm-full.mjs
before claiming “docs are updated in the bundle.”npm run build:llm - Prefer
over guessing whether the server is new.GET /api/dance-extras/live - For EVVM, answer no to optional Sepolia registry registration until policy allows (see
).docs/EVVM_TEMPO.md
Files in this package
| Path | Purpose |
|---|---|
| This file — primary skill entry |
| Package manifest + upload notes for ClawHub |
| Paste blocks for Copilot / chat |
| OpenClaw workspace alignment |
| Concrete @-mentions, curls, patterns |
| Common failures & fixes |
| What feeds |
| Template for forking this skill |
| Quick repo checks |
| OpenClaw hook manifest |
| Bootstrap injector (CommonJS) |
| Bootstrap injector (TypeScript) |
| Hook folder index |
See also
- Upstream inspiration: self-improving-agent (structure: references, assets, scripts, hooks).
- DanceTempo repo:
,README.md
.CLAWHUB.md