
Cli Anything Nsight Graphics
- 294 installs
- 46.6k repo stars
- Updated August 3, 2026
- hkuds/cli-anything
Trigger Nsight Graphics captures and profiling from CLI so agents diagnose GPU frames, shaders, and render regressions during graphics development.
About
cli-anything-nsight-graphics wraps NVIDIA Nsight Graphics for agent-controlled GPU profiling, frame capture, and render diagnostics from the command line. It helps graphics and game teams automate performance investigations during build without repetitive manual tool setup.
- NVIDIA Nsight CLI bridge
- GPU frame capture automation
- Shader and render profiling
- Game graphics debugging
- Agent-driven perf runs
Cli Anything Nsight Graphics by the numbers
- 294 all-time installs (skills.sh)
- +12 installs in the week ending Aug 2, 2026 (Skillselion tracking)
- Ranked #2,323 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/hkuds/cli-anything --skill cli-anything-nsight-graphicsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 294 |
|---|---|
| repo stars | ★ 46.6k |
| Last updated | August 3, 2026 |
| Repository | hkuds/cli-anything ↗ |
What it does
Trigger Nsight Graphics captures and profiling from CLI so agents diagnose GPU frames, shaders, and render regressions during graphics development.
Files
Nsight Graphics CLI Skill
Command-line orchestration of official NVIDIA Nsight Graphics activities.
Capabilities
- Probe installed Nsight binaries and compatibility mode
- Launch an application detached under Nsight
- Attach Nsight to a running PID
- Trigger Graphics Capture or OpenGL Frame Debugger capture
- Trigger GPU Trace capture, auto-export, and summarize
- Analyze existing
.ngfx-capturefiles throughngfx-replay - Report clear compatibility diagnostics for
.ngfx-gputraceinputs - Trigger Generate C++ Capture
Commands
doctor
cli-anything-nsight-graphics --json doctor info
cli-anything-nsight-graphics --json doctor versions
cli-anything-nsight-graphics --nsight-path "C:\Path\To\Nsight Graphics 2024.2\host\windows-desktop-nomad-x64" --json doctor infolaunch
cli-anything-nsight-graphics launch detached --activity "Graphics Capture" --exe "C:\Path\To\App.exe"
cli-anything-nsight-graphics launch attach --activity "Graphics Capture" --pid 12345frame capture
cli-anything-nsight-graphics --output-dir D:\captures frame capture ^
--exe "C:\Path\To\App.exe" ^
--wait-frames 10GPU Trace
cli-anything-nsight-graphics --output-dir D:\traces gpu-trace capture ^
--exe "C:\Path\To\App.exe" ^
--start-after-ms 1000 ^
--limit-to-frames 1 ^
--auto-export ^
--summarize
cli-anything-nsight-graphics gpu-trace summarize ^
--input-dir D:\tracesReplay analysis
cli-anything-nsight-graphics --json replay analyze ^
--capture-file D:\captures\frame.ngfx-capture ^
--output-dir D:\analysisGenerate C++ Capture
cli-anything-nsight-graphics --output-dir D:\cpp cpp capture ^
--exe "C:\Path\To\App.exe" ^
--wait-seconds 5Agent Notes
- Prefer
doctor infofirst to discover the available compatibility mode. - Use
doctor versionsto list detected installs when multiple Nsight Graphics versions exist. - Use
--nsight-pathto force a specific install directory orngfx.exe. - Use
--jsonfor programmatic workflows. - Prefer
gpu-trace capture --auto-export --summarizefor one-step performance
triage. The summary includes exported table inventory, metric inventory, frame-budget classification, workload classification, throughput ranking, bottleneck hints, and warnings for empty event/regime tables.
- Use
replay analyzewhen the input is an existing.ngfx-capturefile. With
no analysis switches it exports metadata, logs, captured log errors, and a replay performance report, then adds structured analysis.highlights / analysis.warnings.
ngfx-replaydocuments its input as a Graphics Capture file..ngfx-gputrace
inputs are accepted for clear diagnostics, but on Nsight Graphics 2026.1.0 they may report Invalid file header; use gpu-trace summarize for exported GPU Trace table analysis.
replay analyzeuses officialngfx-replaymetadata/log/screenshot/perf-report
outputs; it is not a RenderDoc-style shader, pipeline, texture, or resource inspector.
- Frame/GPU/C++ capture commands require a launch target through
--exeor a
preconfigured root-level --project.
- If a global
cli-anything-nsight-graphicscommand points at an old worktree,
reinstall from nsight-graphics/agent-harness with python -m pip install -e ..