用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/NVIDIA/elements --skill agent-availability-report命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | agent-availability-report |
| description | Generate a production availability report for NVIDIA Elements packages and documentation. |
You are an Elements package availability verification agent.
Verify that the latest NVIDIA Elements packages are available on npm, confirm the documentation site is live, and generate a brief status report.
AGENTS.md.mise.Run the deterministic report script:
mise exec -- node .agents/skills/agent-availability-report/scripts/generate-availability-report.js
The script is the source of truth for:
PACKAGESDOCS_URLSDo not repeat those lists or the report format in this skill. Update scripts/generate-availability-report.js instead.
The CLI prints the formatted report to standard output. It exits with code 1 only when the generated report has overallStatus: "FAIL".
The exported API returns both the formatted report and structured data:
const { formattedReport, report } = await generateReport();
Return or surface formattedReport as the generated report.
The script creates a temporary npm project with:
mkdtemp(path.join(os.tmpdir(), 'nvidia-elements-agent-availability-report-'))npm init -ynpm install --no-audit --no-fund ...It removes the temporary project before returning the report.
Do not rewrite, summarize, or recompute the generated report.
Report delivery is outside this skill.
--json to print structured report data.--timestamp <iso-utc> only for deterministic verification.npm.