From cross-wave
This skill should be used when the user asks to inspect public CROSS WAVE data at https://wave.crosstoken.io — list active or ended missions, list campaign groups, inspect mission details, and explain the no-op reward claim model. The distributable skill is anonymous/read-only only; account actions such as profile, referral, and submission are intentionally blocked until CROSS WAVE exposes a chat-safe auth flow. Triggers on phrases like "CROSS WAVE 캠페인 목록", "wave.crosstoken.io 미션", "Shorts 미션 확인", "list CROSS WAVE campaigns", "show WAVE missions", "CROSS WAVE rewards".
How this skill is triggered — by the user, by Claude, or both
Slash command
/cross-wave:cross-waveThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
A distributable skill that lets Claude inspect the public **CROSS WAVE** service at `https://wave.crosstoken.io`.
A distributable skill that lets Claude inspect the public CROSS WAVE service at https://wave.crosstoken.io.
v0.3.1 security posture: anonymous read-path only.
info,missions,campaigns, andclaimare supported. Account actions (login,whoami,referral,submit) are intentionally blocked in the skill because the current CROSS WAVE account flow is browser-only and does not expose a chat-safe auth path.
API host:
https://wave-client-api.crosstoken.io. Every request carriesX-Domain: wave.crosstoken.ioautomatically.
Activate when the user wants to:
Do not activate this skill for account mutation or account-private data. If the user asks to submit a video, view their profile, get a referral link, or manage account login, tell them that those actions must be completed directly on the CROSS WAVE website until an official chat-safe auth path exists.
Trigger phrases:
"CROSS WAVE 캠페인 목록", "wave 캠페인 보여줘", "CROSS WAVE 미션 목록", "내가 참여 가능한 미션", "종료된 미션 목록", "미션 42 상세", "WAVE 보상 클레임""list CROSS WAVE campaigns", "show wave.crosstoken.io campaigns", "list missions on CROSS WAVE", "show ended WAVE missions", "mission 42 detail", "claim WAVE rewards"node --version # require >= 20
SKILL_DIR="$HOME/.claude/skills/cross-wave"
[ -d "$SKILL_DIR/node_modules" ] || (cd "$SKILL_DIR" && npm install --silent)
Read-path needs no account setup.
The following subcommands are blocked in the distributable skill:
loginwhoamireferralsubmitWhen one is requested, run the relevant script only if you need its structured auth_out_of_scope envelope, then tell the user to complete the action directly at https://wave.crosstoken.io. Do not ask the user to capture browser request headers, session files, cookies, or bearer values.
no_op; CROSS WAVE rewards are distributed after operator review.All subcommands run via Bash and emit a single JSON object on stdout.
cd "$HOME/.claude/skills/cross-wave"
node scripts/<subcommand>.mjs [args]
| Code | Meaning |
|---|---|
| 0 | success |
| 1 | runtime error |
| 2 | user/action error such as unknown_mission, mission_not_active, or auth_out_of_scope |
| User says (KR / EN) | Subcommand |
|---|---|
| "CROSS WAVE 정보" / "wave info" | node scripts/info.mjs |
| "CROSS WAVE 미션 목록" / "list active WAVE missions" | node scripts/missions.mjs |
| "종료된 미션" / "list ended WAVE missions" | node scripts/missions.mjs --ended |
| "미션 그룹 별로" / "grouped missions" | node scripts/missions.mjs --grouped |
| "미션 21 상세" / "mission 21 detail" | node scripts/missions.mjs 21 |
| "캠페인 목록" / "list campaigns" | node scripts/campaigns.mjs |
| "종료된 캠페인" / "ended campaigns" | node scripts/campaigns.mjs --status ENDED |
| "캠페인 5 상세" / "show campaign 5" | node scripts/campaigns.mjs 5 |
| "WAVE 보상 클레임" / "claim WAVE rewards" | node scripts/claim.mjs |
| "로그인 / 프로필 / referral / 제출" | blocked; direct the user to the website |
info — service metadata + public route map.missions [<id>] [--status ACTIVE|ENDED|COMPLETED] [--grouped] [--ended] [--page N --size N] — mission list or detail.campaigns [<id>] [--status ACTIVE|ENDED] [--page N --size N] — derived from mission-group rows in /missions.claim — informational no_op.login, whoami, referral, submit — return auth_out_of_scope.After every supported action, surface:
parsedIntentinfo: apiBase, subcommands, and account-action block statusmissions: missionCount, groupCount, and representative {id, title, rewardType, rewardAmount, groupName, gameTitle, status} rowsmissions <id>: mission detail including participation rules, reward, dates, and mission groupcampaigns: count and campaign summary rowscampaigns <id>: campaign metadata and the mission listclaim: the explanation fieldFor blocked account actions, be direct: "이 작업은 현재 AI 채팅 스킬 범위 밖입니다. CROSS WAVE 웹사이트에서 직접 진행해야 합니다."
This skill folder is the unit of distribution. Recipients:
cross-wave/ folder into ~/.claude/skills/, OR run install.sh to symlink it.npm install once.Cross-link: deeper public endpoint details live in references/cross-wave.md.
Provides CDSS development patterns for drug interaction checking, dose validation, clinical scoring (NEWS2, qSOFA), and alert classification integrated into EMR workflows.
npx claudepluginhub to-nexus/cross-skills-suite --plugin cross-wave