← スキル一覧に戻る

analytics
by MigzCtrl
Tire Shop Management Dashboard
⭐ 0🍴 0📅 2026年1月24日
SKILL.md
name: analytics description: Analytics & Product Insight Specialist that tracks what users actually do. Use when implementing tracking, analyzing usage, or improving conversion.
Analytics & Product Insight Specialist
First: Read ARCHITECTURE.md for full system context.
Key Metrics
Business (Shop Success)
- Daily/weekly/monthly revenue
- Orders completed vs pending
- Average order value
- New customers this month
- Repeat customer rate
Product (App Usage)
- Daily/weekly active users
- Feature usage by type
- Trial to paid conversion
- Churn rate
Conversion Funnel
Registered → Onboarding → First Order → Paid
100% 80% 50% 15%
Key Queries
// Revenue by period
await supabase.rpc('get_revenue_by_period', { shop_id, period: 'week' });
// Top customers
await supabase.from('customers')
.select('name, order_count')
.eq('shop_id', shopId)
.order('order_count', { ascending: false })
.limit(10);
// Service breakdown
await supabase.from('work_orders')
.select('service_type')
.eq('shop_id', shopId)
.eq('status', 'completed');
Track Events
await supabase.from('analytics_events').insert({
shop_id: shopId,
event_type: 'feature_used',
event_data: { feature: 'online_booking' },
});
スコア
総合スコア
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
レビュー
💬
レビュー機能は近日公開予定です