スキル一覧に戻る
vm0-ai

clerk

by vm0-ai

4🍴 1📅 2026年1月24日
GitHubで見るManusで実行

SKILL.md


name: clerk description: Get user metrics from Clerk (total users, active users, new users)

Clerk User Metrics Skill

Fetches user statistics from Clerk authentication service.

When to Use

Use this skill when you need to get:

  • Total user count
  • Active users (users with activity yesterday)
  • New users (users created yesterday)

How to Use

# Get yesterday's user metrics (default)
$CLAUDE_CONFIG_DIR/skills/clerk/scripts/get-users.sh

# Get metrics for a specific date
$CLAUDE_CONFIG_DIR/skills/clerk/scripts/get-users.sh "2024-12-17"

Arguments

  • date (optional): Specific date in YYYY-MM-DD format. Defaults to yesterday.

Prerequisites

  • CLERK_SECRET_KEY environment variable must be set (starts with sk_live_ or sk_test_)

Output

Results are saved to /tmp/data/clerk_users_[timestamp].json:

{
  "date": "2024-12-17",
  "total_users": 150,
  "active_users": 25,
  "new_users": 5
}

Console output:

Clerk User Metrics for 2024-12-17
Total Users: 150
Active Users: 25
New Users: 5

API Reference

Error Handling

  • 401 Unauthorized: Check that CLERK_SECRET_KEY is set correctly
  • 403 Forbidden: The API key may not have the required permissions
  • 429 Rate Limited: Too many requests, try again later

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です