一键导入
abi-superpower-gpu
GPU and Metal backend superpower. Reports backend status, vector ops, hardware capabilities.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
GPU and Metal backend superpower. Reports backend status, vector ops, hardware capabilities.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Synchronize ABI Markdown and docs claims with executable behavior. Use before editing README, AGENTS.md, CLAUDE.md, GEMINI.md, docs/**/*.mdx, walkthroughs, changelogs, or any old ABI Markdown that mentions WDBX, MCP, GPU, clustering, compression, FHE, agents, or benchmarks.
Validate ABI docs and external collateral against repo evidence and docs/contracts/external-claims-audit.mdx. Use when auditing claims, scanning docs for unsupported QPS/sharding/FHE/AES language, checking one claim before publish, or re-confirming the external-claims audit. Agent procedure only — not a CLI or slash command. Pair with abi-doc-claims-sync when editing docs.
Plan and execute ABI repo work from the TODO board, roadmap/spec docs, Zig 0.17 constraints, and validation gates. Use when the user asks to find ABI todos/roadmaps, organize a large implementation from tasks/todo.md, or decide the next safe work slice. Distinct from the goals skill — that skill owns the persistent ledger tasks/goals.md; this skill plans from the active board and north-star specs.
TUI/dashboard superpower. Launch interactive agent REPL, diagnostics dashboard panes, and slash commands via real abi CLI paths. Use when working on abi tui / dashboard / agent tui. There is no /abi-superpower-tui binary.
Build the abi CLI and non-interactively smoke the diagnostics dashboard — render `abi dashboard` one-shot (stdin from /dev/null forces the non-interactive fallback), assert exit 0 and all 5 panels (System, Plugins, WDBX Storage, Scheduler, Memory). Use to smoke-test `abi dashboard`/`abi tui`/`abi --tui` in CI or headless without hanging in the interactive TUI. Complements run-tui (which drives the interactive path via tmux).
Capture, track, and execute goals for the abi Zig project. Use when the user wants to record a goal, see outstanding goals, update goal status, or break a goal into a verified work slice. Distinct from abi-goal-orchestrator (which plans from the TODO board) — this skill owns a persistent goal ledger and drives goal-to-slice execution.
| name | abi-superpower-gpu |
| description | GPU and Metal backend superpower. Reports backend status, vector ops, hardware capabilities. |
| superpower | {"command":"execute","parameters":[{"name":"action","type":"string","enum":["status","ops","hardware"],"description":"GPU action"},{"name":"backend","type":"string","description":"GPU backend: metal, cuda, vulkan"}]} |
Exposes GPU hardware and acceleration capabilities as a superpower.
Report GPU backend selection and fallback state:
/abi-superpower-gpu status
Vector operations via GPU/Metal acceleration:
/abi-superpower-gpu ops --input "vector data" --accumulate true
System hardware report:
/abi-superpower-gpu hardware
Maps to:
src/features/gpu/reporting.zig - Metal/CUDA/Vulkan detectionsrc/features/gpu/vector_ops.zig - HNSW search accelerationsrc/features/gpu/compute_api.zig - SIMD/Metal kernelsRequires feat-gpu=true and native Metal/CUDA/Vulkan bindings.
When accelerated=false (CPU fallback), still reports metrics for transparency.