vgpu

작성자: vercel

WebGPU 앱을 vgpu 패키지와 진입점 vgpu/node, vgpu/mock, vgpu/scene, vgpu/client로 빌드하고 최적화하세요. @vgpu/render/inspect, /utils,…를 사용하세요.

npx skills add https://github.com/vercel-labs/vgpu --skill vgpu

vgpu

Treat the documentation bundled with the target project's installed vgpu package as the authority for that project. This skill is intentionally version-neutral: do not infer API shapes from the skill's Git revision, remembered APIs, the repository default branch, hosted docs, or a hosted MCP server when local package docs are available.

The public skill install command has no branch pin:

npx skills add vercel-labs/vgpu

Select the package version

Run the project-local vgpu executable from the workspace that owns the dependency. First check the relevant package manifest and lockfile, then confirm which local CLI you resolved without allowing the package manager to download a missing command:

pnpm exec vgpu --version
npm exec --no -- vgpu --version

Use a local-only equivalent for other package managers, such as yarn exec vgpu --version or an already resolved node_modules/.bin/vgpu. Commands such as bare npx vgpu or bunx vgpu may download a missing package, so do not use them for local version discovery. npm's --offline is also insufficient because it can install a missing package from cache. Do not replace an installed version merely to read newer documentation.

If a package manifest or lockfile selects vgpu but the local binary is unavailable, treat the dependency tree as incomplete rather than unversioned. Restore the project's locked dependencies when installation is within scope. For read-only access, the exact selected version can be invoked explicitly instead:

npx -y vgpu@<selected-version> docs cat getting-started.md

Do not substitute @latest for a selected stable, RC, or other prerelease. Only when neither the project nor the user has selected a vgpu version, default to the explicit stable tag:

npx -y vgpu@latest docs cat getting-started.md

When adding a previously unselected dependency is part of the requested work, install vgpu@latest with the project's package manager. Use vgpu@next, an RC, or any other prerelease only when the user or the existing project explicitly selected that prerelease; preserve an exact requested version.

Route through the bundled docs

Ask the resolved local CLI what documentation its version supports, then load only the pages needed for the task:

pnpm exec vgpu docs --help
pnpm exec vgpu docs ls
pnpm exec vgpu docs cat getting-started.md
pnpm exec vgpu docs find "<topic, symbol, or error code>"
pnpm exec vgpu docs grep -i "<term>"
pnpm exec vgpu docs cat "<path or symbol>"

Adapt pnpm exec to a no-install command for the project's package manager, but keep using its local binary; with npm, retain npm exec --no -- vgpu for every docs command. Start with getting started for unfamiliar projects, use find for task or symbol discovery, use grep for details mentioned inside pages, and cat every relevant guide and API page before changing code. Let docs --help from that installed version define the available commands.

When upgrading a project, record its previous version before changing dependencies. After selecting the authorized target version, run docs ls /migrations through that version's local CLI and read the intervening version guides in order. Each guide identifies affected usage and verification steps; skip changes already applied, including when moving between RCs of the same release. Older packages may not bundle migration guides: report that absence and consult the exact release's notes instead of silently substituting the current hosted docs.

For MCP-based lookup, start vgpu mcp through the same project-local executable so it serves the same bundled corpus. A hosted MCP server is a convenience for current stable documentation, not the authority for a project pinned to another version.

If the installed docs do not contain a proposed API or workflow, do not invent it or silently switch versions. Report the mismatch and change versions only when the user's task authorizes it.

vercel의 다른 스킬

vercel
vercel
로컬 개발 및 테스트를 위한 Vercel REST API 에뮬레이션입니다. 사용자가 로컬에서 Vercel API 엔드포인트와 상호작용하거나 Vercel 통합을 테스트해야 할 때 사용합니다.
cron-jobs
vercel
Vercel Cron Jobs 구성 및 모범 사례. vercel.json에서 예약된 작업을 추가, 편집 또는 디버깅할 때 사용합니다.
codegen
vercel
json-render을 위한 코드 생성 유틸리티입니다. UI 명세서에서 코드를 생성하거나, 사용자 정의 코드 내보내기를 구축하거나, 명세서를 탐색하거나, props를 직렬화할 때 사용합니다.
next-best-practice
vercel
Next.js 모범 사례 - 파일 규칙, RSC 경계, 데이터 패턴, 비동기 API, 메타데이터, 오류 처리, 라우트 핸들러, 이미지/폰트 최적화,…
benchmark-sandbox
vercel
Vercel Sandbox에서 vercel-plugin eval 시나리오를 로컬 WezTerm 패널 대신 실행합니다. Claude Code와 플러그인이 사전 설치된 임시 마이크로VM을 프로비저닝합니다.
write-guide
vercel
점진적인 예제를 통해 실제 사용 사례를 가르치는 기술 가이드를 제작합니다. 개념은 독자가 필요로 할 때만 소개됩니다.
benchmark-testing
vercel
벤치마크 테스트 프로젝트를 생성하고 실행하여 실제 시나리오에서 vercel-plugin 스킬 인젝션을 테스트합니다. 격리된 디렉토리를 설정하고, 설치하며…
ai-gateway
vercel
Vercel AI Gateway 전문가 안내. 모델 라우팅, 제공업체 장애 조치, 비용 추적 또는 통합된 방식을 통해 여러 AI 제공업체를 관리할 때 사용합니다.