一键导入
ni
Use ni command family for package manager operations. Use when handling Node package install, run, execute, update, remove, clean install, or dedupe workflows.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use ni command family for package manager operations. Use when handling Node package install, run, execute, update, remove, clean install, or dedupe workflows.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Patterns for invoking the GitHub CLI (gh) from agents. Covers structured output, pagination, repo targeting, search vs list, gh api fallback.
Create effective skills. Use when creating or updating skills.
Inspect Terraform module specs from cache when seeing module sources.
k6 performance and load testing. Covers writing test scripts in JavaScript/TypeScript, all test types (load/stress/spike/soak/smoke/breakpoint), thresholds, checks, scenarios, executors, extensions, result analysis, k6 Cloud execution, and CI/CD integration. Use when writing k6 tests, debugging test failures, setting up load testing pipelines, choosing executors/scenarios, or interpreting k6 results.
Grafana Pyroscope continuous profiling platform. Covers instrumentation of Go/Java/Python/Ruby/Node.js/ .NET/Rust apps via SDKs or eBPF (Alloy), flame graph analysis, ProfileQL queries, server configuration and architecture, Grafana Cloud Profiles integration, and trace-profile linking (Span Profiles). Use when working with profiling data, instrumenting apps for Pyroscope, analyzing performance profiles, or deploying Pyroscope server.
Grafana Mimir scalable long-term metrics storage. Covers architecture (distributor/ingester/compactor/querier/ query-frontend/store-gateway/ruler), deployment modes (monolithic/microservices), configuration, Prometheus remote write, PromQL querying, multi-tenancy, compaction, and operations. Use when working with Mimir for metrics storage, scaling Prometheus, configuring Mimir clusters, writing PromQL, or debugging Mimir.
| name | ni |
| description | Use ni command family for package manager operations. Use when handling Node package install, run, execute, update, remove, clean install, or dedupe workflows. |
| license | UNLICENSE |
| compatibility | opencode |
Use ni command family instead of direct npm, yarn, pnpm, or bun
commands.
ni for install/add operations.nr for npm scripts defined in package.json.nlx for temporary package execution (npx/dlx style).nup for upgrade operations.nun for uninstall/remove operations.nci for clean install.nd for dedupe.na only when the above commands cannot express the requested action.ni <pkg>nr <script>na exec <command>nlx <command>nupnun <pkg>ncindni, nr, nlx, nup, nun, nci, nd.na exec <command>.nr <script>.na ....# install deps
ni
# add dependency
ni vitest -D
# run npm script
nr test
# direct command execution in repository (pnpm vitest-like intent)
na exec vitest
# temporary package execution
nlx vitest
# upgrade
nup
# uninstall
nun vitest
# clean install
nci
# dedupe
nd
Fallback to na when:
ni, nr, nlx, nup, nun,
nci, or ndna is needed to preserve exact behaviorWhen falling back:
na exec <command> for repository-local direct command execution