| name | group-join |
| description | Join an AIQ Rank private leaderboard by redeeming a single-use invite token. |
| allowed-tools | ["Bash"] |
Join a private leaderboard
Before running the command, show the user this consent notice:
Joining means the private leaderboard's admins will have access to the names
of skills and MCP servers you use, plus your daily activity metrics
(sessions, tool calls, scores). They will not have access to your
transcripts, prompts, or code.
You can leave at any time with /aiqrank:group-leave <slug>.
Ask the user to reply "yes" to confirm. Only run the command below after they do.
PLUGIN_ROOT="${CLAUDE_PLUGIN_ROOT:-$(ls -d ~/.claude/plugins/cache/aiqrank/aiqrank/*/ 2>/dev/null | sort -V | tail -1 | sed 's:/$::')}"; [ -n "$PLUGIN_ROOT" ] && [ -d "$PLUGIN_ROOT/scripts" ] || { echo "aiqrank plugin scripts not found — set \$CLAUDE_PLUGIN_ROOT or install the plugin via /plugin install aiqrank"; exit 1; }; PY="$(command -v python3 || command -v python)"; [ -n "$PY" ] || { echo "python not found — install Python 3"; exit 1; }; "$PY" "$PLUGIN_ROOT/scripts/group_client.py" --yes redeem "$ARGUMENTS"
Pass the token as the only argument: /aiqrank:group-join <token>.