원클릭으로
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.