git clone https://github.com/obsidianmd/obsidian-releases.git
cd obsidian-releases

# プラグイン数・テーマ数を確認
python3 -c "import json; data=json.load(open('community-plugins.json')); print(f'登録プラグイン数: {len(data)}')"
python3 -c "import json; data=json.load(open('community-css-themes.json')); print(f'登録テーマ数: {len(data)}')"

# キーワード検索（calendar 関連プラグイン）
python3 -c "
import json
with open('community-plugins.json') as f:
    plugins = json.load(f)
keyword = 'calendar'
results = [p for p in plugins if keyword in p.get('name','').lower() or keyword in p.get('description','').lower()]
for p in results[:5]:
    print(p['name'], '-', p['description'])
"

# ダウンロード数トップ10
python3 -c "
import json
with open('community-plugin-stats.json') as f:
    stats = json.load(f)
top10 = sorted(stats.items(), key=lambda x: x[1].get('downloads',0), reverse=True)[:10]
for pid, d in top10:
    print(f"{pid}: {d.get('downloads',0):,} downloads")
"
