ワンクリックで
release-downloads
Use when checking GitHub release download counts, asset popularity, or tracking adoption across versions
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use when checking GitHub release download counts, asset popularity, or tracking adoption across versions
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Use when investigating Claude CLI protocol behavior — stream-json event mismatches, permission handling, control_request/response fields, or any question about what the CLI actually does internally. Covers live event debugging, JSONL history comparison, and binary reverse-engineering.
Overview and router for assistant-ui, the React library for building AI chat interfaces from composable primitives. Use for high-level, cross-cutting, or architecture-overview questions: choosing packages, picking a runtime, or understanding the layered model (RuntimeCore, Runtime, context hooks, primitives) and message model. Covers the `@assistant-ui/react` core plus `@assistant-ui/react-ai-sdk`, `@assistant-ui/react-langgraph`, `assistant-stream`, and `assistant-cloud`; `AssistantRuntimeProvider`; the primitives `ThreadPrimitive`, `MessagePrimitive`, `ComposerPrimitive`; the hooks `useAui`, `useAuiState`, `useAuiEvent`; and runtime selection across `useChatRuntime`, `useExternalStoreRuntime`, `useLangGraphRuntime`, `useLocalRuntime`. For a specific area route to a focused sibling instead: setup, runtime, primitives, tools, streaming, cloud, thread-list, or update. Not for hands-on tasks already owned by those siblings.
Build accessible design systems with Radix UI primitives. Headless component customization, theming strategies, and compound component patterns for production-grade UI libraries.
Use when investigating Codex app-server protocol behavior — event shape mismatches, missing fields, approval handling, or any question about what the app-server actually sends. Covers live event tracing, generated schema verification, and daemon log analysis.
| name | release-downloads |
| description | Use when checking GitHub release download counts, asset popularity, or tracking adoption across versions |
Report GitHub release download stats per version and asset. Only surfaces assets with 1+ downloads to cut noise.
Run this script via Bash and present the output as-is:
total=0
for tag in $(gh release list --json tagName --jq '.[].tagName'); do
assets=$(gh release view "$tag" --json assets --jq '[.assets[] | select(.downloadCount > 0) | {name, downloads: .downloadCount}]')
if [ "$assets" != "[]" ]; then
echo "## $tag"
echo "$assets" | jq -r '.[] | " \(.name): \(.downloads)"'
subtotal=$(echo "$assets" | jq '[.[].downloads] | add')
total=$((total + subtotal))
echo " Subtotal: $subtotal"
echo ""
fi
done
echo "Total downloads across all releases: $total"
Versions with zero downloads across all assets are omitted entirely.
gh release download, git clone, and auto-updater fetches may not register.