All runbooks
runbookuapiredacted view

UAPI Grok NUC Inventory Commands 2026-06-22

Exact read-only NUC inventory commands for CPU, Arc GPU, NPU, SN850X, WSL, and AI toolkit discovery.

Updated 2026-06-22·Freshness: Reference·Sensitive tokens or credentials were hidden before display.

UAPI Grok NUC Inventory Commands 2026-06-22

Exact read-only NUC inventory commands for CPU, Arc GPU, NPU, SN850X, WSL, and AI toolkit discovery.

Promotion Metadata

  • Source feedback id: 94
  • Source feedback ids: 94
  • Promotion request id: 27
  • Feedback category: consider
  • Feedback source: ai-lane
  • Feedback created at: 2026-06-22T16:56:36.309654+00:00
  • Target slug: [REDACTED:high-entropy]
  • Review state: review
  • Reviewer note: AI lane auto-promoted redacted feedback into internal catalog context.

Source Feedback Body

Feedback 94

  • Product: uapi
  • Category: consider
  • Related slug: [REDACTED:high-entropy]
  • Source: ai-lane
  • Created at: 2026-06-22T16:56:36.309654+00:00

title: UAPI Grok NUC Inventory Commands 2026-06-22 project: uapi kind: runbook state: review tags: [docs, runbook, uapi, grok, nuc, inventory]


UAPI Grok NUC Inventory Commands 2026-06-22

Purpose: read-only inventory for NUC live-measurement phase. Run on the NUC only by operator or approved safe runner. Capture stdout/stderr/timestamp and sanitize before Explorer submission. These commands do not approve benchmarks.

PowerShell CPU:

Get-ComputerInfo | Select WindowsProductName,WindowsVersion,OsArchitecture,CsSystemType,CsProcessors,CsTotalPhysicalMemory,CsNumberOfLogicalProcessors | Format-List
wmic cpu get Name,NumberOfCores,NumberOfLogicalProcessors,MaxClockSpeed,SocketDesignation /format:list

GPU / Intel Arc:

Get-WmiObject Win32_VideoController | Select Name,VideoProcessor,AdapterRAM,DriverVersion,DriverDate,VideoModeDescription | Format-List
Get-PnpDevice -PresentOnly | Where-Object { $_.FriendlyName -like '*Arc*' -or $_.FriendlyName -like '*Intel*Graphics*' -or $_.Class -eq 'Display' } | Select Status,Class,FriendlyName,InstanceId,ProblemDescription | Format-List

NPU / AI Boost:

Get-PnpDevice -PresentOnly | Where-Object { $_.FriendlyName -match 'NPU|Neural Processing|AI Boost|ComputeAccelerator|Intel.*NPU' -or $_.Class -match 'Compute|Media' } | Select Status,Class,FriendlyName,InstanceId,ProblemDescription | Format-List
pnputil /enum-devices /class "ComputeAccelerator" 2>&1
Get-WindowsDriver -Online | Where-Object { $_.ProviderName -like '*Intel*' } | Select Driver,OriginalFileName,Version,Date | Format-Table -AutoSize

SN850X / storage:

Get-PhysicalDisk | Select FriendlyName,SerialNumber,MediaType,BusType,Size,OperationalStatus,HealthStatus | Where-Object { $_.FriendlyName -like '*SN850X*' -or $_.FriendlyName -like '*WD Black*' -or $_.FriendlyName -like '*850X*' } | Format-List
Get-Disk | Select Number,FriendlyName,SerialNumber,Size,BusType,PartitionStyle | Format-List
Get-Volume | Select DriveLetter,FileSystemLabel,FileSystem,Size,SizeRemaining,DriveType | Format-Table
wmic diskdrive get Model,Size,SerialNumber,MediaType /format:list | findstr /i "850X WD"
fsutil fsinfo drives

WSL if present:

wsl --list --verbose
wsl lscpu
wsl lspci -nnk | grep -iE 'vga|3d|display|accel'
wsl lsblk -o NAME,SIZE,TYPE,MOUNTPOINT,MODEL
wsl clinfo 2>/dev/null || echo "no clinfo"

AI toolkit discovery only:

where.exe python
python --version 2>&1
python -c "import sys,platform; print(sys.executable); print(platform.platform()); print(sys.version)"
python -c "mods=['torch','openvino','intel_extension_for_pytorch','ipex_llm','llama_cpp','transformers'];
for m in mods:
    try:
        mod=__import__(m); print(m,getattr(mod,'__version__','present-no-ver'))
    except Exception: pass"

Output target: Explorer evidence packet for DeviceIdentity, ServiceEndpoint, StorageCapacity, and PlacementDecision.