Token导航 LogoToken导航TokenDH.com
待分类敏感数据github未标认证来源可访问许可证需确认审计提醒

publish-npm-package发布 npm 包

Agent Skill

publish-npm-package 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

618

周安装

25

GitHub Stars

5

下载量

194
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:publish-npm-package(发布 npm 包)
来源仓库:https://github.com/yigitkonur/skills-by-yigitkonur
仓库路径:skills/publish-npm-package
安装命令:
npx skills add https://github.com/yigitkonur/skills-by-yigitkonur --skill publish-npm-package
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/yigitkonur/skills-by-yigitkonur --skill publish-npm-package

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 建议确认权限范围和维护状态,注意可能触发联网、命令执行或文件读写操作。
  • publish-npm-package 属于待分类类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

npm Publish CI/CD

Set up npmjs publishing via GitHub Actions with a complete, internally consistent release flow: auth, version management, workflow trigger, provenance, and recovery.

Trigger

Use this skill when the task is about:

  • publishing to npmjs.org from GitHub Actions or locally from a developer machine
  • first-time npm publishing of a new package (local bootstrap or CI)
  • replacing manual npm login / npm publish with CI/CD
  • choosing OIDC trusted publishing vs NPM_TOKEN
  • choosing semantic-release vs changesets vs release-please vs manual trigger
  • adding provenance, least-privilege permissions, or supply-chain hardening
  • wiring single-package or monorepo npm releases
  • debugging a failing npm publish workflow (including EOTP, ENEEDAUTH, E403)

This skill assumes npmjs.org. For deep package.json / exports / files shaping, route to references/packaging/package-config.md instead of expanding that detail here.

Local publish vs CI publish — know which mode you're in

Before doing anything, determine whether this is a local publish (from the user's terminal) or a CI publish (from GitHub Actions). The token wiring is fundamentally different and mixing them up is the #1 cause of EOTP/ENEEDAUTH errors.

⚠️ Steering (F-20): NODE_AUTH_TOKEN as an environment variable ONLY works in CI when actions/setup-node with registry-url has created an .npmrc containing ${NODE_AUTH_TOKEN}. On a developer's local machine, npm ignores NODE_AUTH_TOKEN entirely unless an .npmrc with that placeholder exists. If you set NODE_AUTH_TOKEN=<token> npm publish locally and it still asks for OTP, npm is NOT using your token — it's using the interactive login session from npm login.

Local publish (developer terminal)

Check existing auth first:

npm whoami --registry https://registry.npmjs.org    # Who am I logged in as?
echo "${NPM_TOKEN:+NPM_TOKEN is set}"               # Is NPM_TOKEN in environment?
cat ~/.npmrc 2>/dev/null | grep -v authToken | head  # What .npmrc exists?

Check shell profile for existing tokens:

grep -l 'NPM_TOKEN' ~/.zshrc ~/.bashrc ~/.zprofile ~/.bash_profile 2>/dev/null

Many developers already have NPM_TOKEN exported in their shell profile. Use it if present — do not create a new one.

Wire the token for local publish (one of these):

# Option 1: CLI flag (works everywhere, no .npmrc needed)
npm publish --access public --//registry.npmjs.org/:_authToken="${NPM_TOKEN}"

# Option 2: Temporary .npmrc (creates file, works for session)
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > .npmrc
npm publish --access public
rm .npmrc   # clean up

# Option 3: Interactive login (triggers browser-based 2FA, no token needed)
npm login   # then npm publish --access public
⚠️ Steering (F-21): The --//registry.npmjs.org/:_authToken=TOKEN CLI flag is NOT a security risk on a local machine. The granular-tokens reference marks it as "❌ Wrong" — that guidance applies to CI (where it would appear in logs). Locally, it's the most reliable way to publish with a token.

CI publish (GitHub Actions)

Use NODE_AUTH_TOKEN env var with actions/setup-node registry-url:

- uses: actions/setup-node@v4
  with:
    registry-url: 'https://registry.npmjs.org'  # Creates .npmrc with ${NODE_AUTH_TOKEN}
- run: npm publish --access public
  env:
    NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

Diagnosing "EOTP when token should bypass 2FA"

If you see EOTP with an automation/granular token that has "Bypass 2FA" enabled:

  1. npm is not using your token. It's falling back to the interactive npm login session.
  2. Run npm whoami — if it shows your personal username, the session auth is active.
  3. Fix: pass the token explicitly via CLI flag (--//registry.npmjs.org/:_authToken=...) or properly wire NODE_AUTH_TOKEN with a setup-node .npmrc.

Always classify the repo first

Before writing YAML, answer these questions and record the answers — they drive the auth (Step 1) and versioning (Step 2) decisions below:

  1. Is the package public or private?
  2. Is publishing on GitHub Actions with a GitHub-hosted runner?
  3. Is this a single package or a monorepo/workspaces repo?
  4. Does the team already use conventional commits (the majority of meaningful commits follow type: description format)?
  5. Should every releasable merge publish automatically, or should there be a human-reviewed Release/Version PR?
  6. Is this greenfield (never published), or does the package already exist with tags/versions/releases?
  7. Is the target really npmjs.org?
⚠️ Steering (F-01): Record answers explicitly (e.g., as inline comments or a checklist). Without a recorded classification, the auth and versioning decisions become guesswork. The table below maps answers directly to choices.

Derive those answers in this order:

  1. package.json and workspace manifests
  2. existing GitHub Actions workflows
  3. git remote, tags, and current versioning config files
  4. npm registry state for the package

If the classification is still ambiguous after those checks, stop and ask instead of guessing.

Quick-reference decision matrix

Q1: Public?Q2: GH Actions + hosted runner?Q3: Single/Mono?Q4: Conv. commits?Q5: Auto/Human gate?→ Auth→ Versioning
YesYesSingleYesAutoOIDCsemantic-release
YesYesSingleYesHuman gateOIDCrelease-please
YesYesSingleNoHuman gateOIDCchangesets
YesYesSingleNo (greenfield, will adopt)Human gateOIDCrelease-please
YesYesMonorepoAnyAnyOIDCchangesets (default)
NoAnyAnyAnyAnyToken(any versioning)
AnyNo (self-hosted/GHES)AnyAnyAnyToken(any versioning)

Always follow this order

  1. Choose authentication.
  2. Choose the versioning model.
  3. Route to the exact workflow template.
  4. Check package/repo prerequisites.
  5. Implement the smallest complete configuration set.
  6. Verify with dry runs and publish checks.
  7. Add recovery notes if the workflow is already failing or the repo is mid-migration.

1) Choose authentication first

SituationChooseWhyRead next
Public package + GitHub Actions + GitHub-hosted runnerOIDC trusted publishingBest default: zero secret sprawl, repo-bound trust, provenance-friendlyreferences/auth/oidc-trusted-publishing.md
Private package, self-hosted runner, GHES, non-GitHub CI, or OIDC unsupportedGranular access tokenCorrect fallback when OIDC is unavailablereferences/auth/granular-tokens.md
Existing classic automation token setupMigrate to granular token unless blockedSmaller blast radius, expiry, better hygienereferences/auth/granular-tokens.md

Auth rules

  • Default to OIDC whenever it is supported.
  • OIDC requires GitHub-hosted runners, npm CLI >= 9.5.0, exact package.json.repository.url, id-token: write, contents: read, and public package visibility unless npm Enterprise support exists.
  • If the publish runner is self-hosted, do not choose OIDC and hope it works; use a granular token.
  • If this is the first publish of a brand-new package, bootstrap with a granular token even if the steady-state target is OIDC.
  • Token-based publishing should use secrets.NPM_TOKEN exposed as NODE_AUTH_TOKEN in the publish step. Do not use npm login in CI.
  • Use one granular token per repo or workflow surface, and rotate it on a regular schedule instead of treating it as permanent infrastructure.
  • Do not keep both OIDC and token auth just because an old workflow used both. The only valid mixed setup is when token auth is still required but you also grant id-token: write for provenance.
  • Avoid classic automation tokens for new work.
⚠️ Steering (F-07): OIDC auth means zero npm secrets. If your workflow has NODE_AUTH_TOKEN or NPM_TOKEN in the publish step, you are using token-based auth, not OIDC — even if id-token: write is set. Pure OIDC relies on GitHub's identity federation with npm; no token is exchanged via environment variables.

2) Choose the versioning model, not just a tool

NeedChooseChoose whenAvoid whenRead next
Publish automatically on every releasable mergesemantic-releaseSingle package, strong conventional-commit discipline, no human release gateMonorepos, weak commit discipline, teams that want a reviewable release PRreferences/versioning/semantic-release.md
Generate a reviewable Release PR, publish after mergerelease-pleaseConventional commits already exist, team wants a human merge gate, explicit release PR is desirableCommit messages are not trustworthy, or the goal is zero human release handlingreferences/versioning/release-please.md
Put version intent in each PR and batch releases deliberatelychangesetsMonorepos, single-package repos without strict conventional commits, explicit version notes, teams that want a human-reviewed Version PR without adopting conventional commitsThe repo wants publish-on-merge with no human-authored version datareferences/versioning/changesets.md
Rare/simple releasesmanual trigger + npm versionAutomation would be heavier than the release frequencyThe task explicitly asks for full release automationmatching workflow "Manual Trigger" section
⚠️ Steering (F-04): changesets is not monorepo-only. It works perfectly for single-package repos and does not require conventional commits. If a single-package repo wants a human-reviewed Version PR without adopting conventional commits, changesets is the right choice.

Quick-decision flowchart

Is this a monorepo?
  YES → changesets (default) — or release-please if conv. commits already drive the repo
  NO (single package) →
       Does the team use conventional commits?
         YES →
              Want fully automatic publish? → semantic-release
              Want a human-reviewed Release PR? → release-please
         NO →
              Greenfield and willing to adopt? → release-please (commit to the format)
              Existing repo, won't adopt? → changesets
              Rare releases? → manual trigger

Versioning rules

  • Monorepo default: changesets. Use release-please only when conventional commits already drive the repo. Treat semantic-release in monorepos as a last resort, not the default.
  • Single-package repo without conventional commits that wants a human release gate: changesets is a viable choice — it is not monorepo-only. Alternatively, adopt conventional commits and choose release-please.
  • If conventional commits are weak or absent in an existing repo, do not silently pick semantic-release or release-please. For greenfield repos, adopting conventional commits is a valid starting choice — pick release-please if the team commits to the format going forward.
  • For existing published packages, bootstrap before the first automated run:

- semantic-release: initial tag / baseline release state - release-please: config + manifest aligned to the current published version - changesets: initialized config and contributor workflow for changeset files

⚠️ Steering (F-05): Distinguish greenfield (team can choose to adopt conventional commits going forward) from existing repo (commit history already exists without them). For greenfield, picking release-please + committing to conventional commits is valid. For existing repos with inconsistent history, changesets avoids the commit-discipline prerequisite.

3) Route to the exact workflow template

Do not hand-assemble publish YAML from memory if a matching reference already exists.

⚠️ Steering (F-13): Use the workflow template's configuration files as the starting point. If the versioning reference (e.g., release-please.md) shows different or additional config options, treat them as customization, not the baseline. The workflow template is the source of truth for the config file set.
AuthVersioningWorkflow template
OIDCsemantic-releasereferences/workflows/oidc-workflows.md1. OIDC + semantic-release
OIDCchangesetsreferences/workflows/oidc-workflows.md2. OIDC + changesets
OIDCrelease-pleasereferences/workflows/oidc-workflows.md3. OIDC + release-please
OIDCmanual triggerreferences/workflows/oidc-workflows.md4. OIDC + Manual Trigger
Tokensemantic-releasereferences/workflows/token-workflows.md1. Token + semantic-release
Tokenchangesetsreferences/workflows/token-workflows.md2. Token + changesets
Tokenrelease-pleasereferences/workflows/token-workflows.md3. Token + release-please
Tokenmanual triggerreferences/workflows/token-workflows.md4. Token + Manual Trigger

Monorepo routing

  • Read references/monorepo/publishing-patterns.md before choosing a monorepo flow.
  • Prefer the changesets template for most workspaces repos.
  • Use the release-please template when the repo already relies on conventional commits and wants a Release PR gate.
  • Do not default to semantic-release for monorepos unless the repo is already invested in that ecosystem and the limitation is understood.

4) Pre-implementation prerequisites

Before editing or validating the workflow, confirm:

Package/repo prerequisites

  • The code is pushed to a GitHub repository (the workflow runs on GitHub Actions).
  • package.json.repository.url exactly matches the GitHub repo URL, including casing.
  • Scoped public packages set publishConfig.access: "public" or an equivalent publish flag.
  • Prefer publishConfig.provenance: true so provenance is not a human-memory step.
  • The repo's lockfile is committed and CI uses deterministic installs (npm ci or the repo's equivalent).
  • npm pack --dry-run shows the intended tarball contents.
  • If npm pack --dry-run includes src/ files while main, module, types, or exports point at dist/, stop and fix packaging before touching CI/CD.
  • Packaging details such as files, exports, types, and dual ESM/CJS output are correct. Use references/packaging/package-config.md for those details.

CI prerequisites

  • actions/setup-node uses registry-url: https://registry.npmjs.org
  • publish jobs run build/test before publish
  • explicit concurrency is present to avoid publish races
  • permissions are least-privilege and set deliberately
  • For production hardening, consider pinning GitHub Actions to full SHAs with a tag comment (e.g., actions/checkout@<sha> # v4). The reference templates use tags for readability — pin to SHAs before shipping to production. See references/security/supply-chain.md for SHA pinning guidance.
⚠️ Steering (F-17): The workflow templates use @v4 style tags for readability. For production, pin to full commit SHAs with a tag comment: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4. This prevents supply-chain attacks via mutable tags.

First-publish / OIDC bootstrap (critical for greenfield)

⚠️ Steering (F-11): OIDC requires the package to already exist on npm. For a brand-new package, you hit a chicken-and-egg problem: you can't link a non-existent package to your GitHub repo.

Even when the long-term target is OIDC, the first release must use token-based auth to bootstrap the package on npm.

Bootstrap steps for first publish with OIDC:

  1. Create a granular access token on npmjs.com (see references/auth/granular-tokens.md).
  2. Add it as NPM_TOKEN in your repo's GitHub Actions secrets.
  3. Publish once manually: npm publish --access public (or use the token-based workflow template for the first release).
  4. Go to https://www.npmjs.com/package/<your-package>/accessPublishing accessAdd GitHub Actions to link the package to your repo.
  5. Remove the NPM_TOKEN secret and switch the workflow to pure OIDC.

Migration prerequisites

  • For semantic-release, ensure full git history (fetch-depth: 0) and baseline tags exist.
  • For release-please, ensure both config and manifest files exist with the manifest version matching package.json. For never-published packages, use the package.json version (typically 1.0.0 or 0.1.0).
  • For changesets, ensure contributors know when to add a changeset and how empty changesets are handled.
⚠️ Steering (F-10/F-18): "Current version" in the release-please manifest means the version in package.json. For greenfield packages that have never been published, set the manifest to match package.json exactly. Do not guess "0.0.0" unless package.json says "0.0.0".

Guardrails: avoid half-configured release automation

  • Prefer OIDC over granular tokens, and granular tokens over classic automation tokens.
  • Prefer changesets over semantic-release for monorepos unless there is a strong existing reason not to.
  • Prefer release-please over semantic-release when the team wants a human-reviewed Release PR.
  • Prefer workflow templates from the references over inventing a new workflow from memory.
  • Do not choose semantic-release without real conventional-commit discipline, fetch-depth: 0, and a current npm plugin/toolchain that supports the auth mode you selected.
  • Do not create a release-please workflow without the two-job pattern: one job creates/updates the Release PR, and a second publish job runs only when release_created == 'true'.
  • Do not create a changesets flow without a contributor rule for adding changesets.
  • Do not assume OIDC works on self-hosted runners.
  • Do not commit tokenized .npmrc files or hardcode _authToken values. A placeholder-based .npmrc is fine; real tokens are not.
  • Do not forget scoped public package access settings; E403 on a scoped package often means public access was never configured.
  • Do not rely on a human remembering --provenance; prefer package or tool config that bakes it in.
  • Do not use pull_request_target for untrusted code to reach release secrets or publish permissions.
  • If the repo is mid-migration, finish the auth + versioning + workflow + bootstrap state together. Half-migrated release automation is worse than a temporary manual process.

Verification before calling the setup done

Always run

  • npm pack --dry-run — verify tarball contents
  • build/test in the same workflow that publishes
  • a check that the intended versioning tool is actually wired, not just installed

Auth-specific checks

CheckOIDCToken
Runner typeGitHub-hostedAny
Permissionscontents: read, id-token: writeN/A
Registry configactions/setup-noderegistry-url: https://registry.npmjs.orgSame
Secret wiringNone needed (no NODE_AUTH_TOKEN)NPM_TOKEN in secrets, NODE_AUTH_TOKEN in publish step
Post-publish verifynpm audit signaturesnpm whoami (diagnostic only)

Tool-specific checks

ToolDry-run commandKey filesCritical check
semantic-releasenpx semantic-release --dry-run.releaserc or release.config.jsFull git history, baseline tags, plugin order
changesetsnpx changeset status.changeset/config.jsonRelease/version PR path matches template
release-pleaserelease-please release-pr --repo-url=<owner/repo> --token=TOKEN --dry-run (optional, requires CLI install).release-please-config.json, .release-please-manifest.jsonManifest version matches package.json, publish gated on release_created == 'true'
⚠️ Steering (F-15): release-please has no built-in dry-run equivalent to npx semantic-release --dry-run. Verify by confirming config + manifest files exist and the manifest version matches package.json. The CLI dry-run above is optional and requires npm i -g release-please.

Recovery routing

If the task is about an existing failure, jump straight to the narrowest reference instead of rereading everything.

ProblemRead firstImmediate focus
OIDC / provenance failurereferences/troubleshooting/common-issues.md, then references/auth/oidc-trusted-publishing.mdmissing id-token: write, missing contents: read, wrong repo URL, self-hosted runner, missing npmjs registry config
Token auth failurereferences/troubleshooting/common-issues.md, then references/auth/granular-tokens.mdexpired token, wrong scopes, wrong secret wiring, rotation mistakes
semantic-release failurereferences/troubleshooting/common-issues.md, then references/versioning/semantic-release.mdshallow clone, missing baseline tag, commit messages not releasable, old plugin versions
changesets failurereferences/troubleshooting/common-issues.md, then references/versioning/changesets.mdforgotten changesets, release PR drift, access/public config, prerelease state
release-please failurereferences/troubleshooting/common-issues.md, then references/versioning/release-please.mdmanifest drift, missing releasable commits, duplicate/stuck Release PRs, broken publish gating
Published wrong version / broken packagereferences/troubleshooting/common-issues.mdunpublish within 72 hours if allowed, otherwise deprecate and patch forward
Token leak / security incidentreferences/security/supply-chain.mdrevoke, rotate, audit publishes, harden workflow before re-enabling release

Smallest reading set by scenario

Public single-package repo, fully automatic

  • references/auth/oidc-trusted-publishing.md
  • references/versioning/semantic-release.md
  • references/workflows/oidc-workflows.md1. OIDC + semantic-release
  • references/security/supply-chain.md

Public single-package repo, reviewable release gate

  • references/auth/oidc-trusted-publishing.md
  • references/versioning/release-please.md or references/versioning/changesets.md
  • references/workflows/oidc-workflows.md3. OIDC + release-please or 2. OIDC + changesets
  • references/security/supply-chain.md

Monorepo / workspaces

  • references/monorepo/publishing-patterns.md
  • references/versioning/changesets.md (default) or references/versioning/release-please.md
  • matching OIDC/token workflow section
  • references/security/supply-chain.md

Private package, self-hosted runner, or non-GitHub CI

  • references/auth/granular-tokens.md
  • chosen versioning reference
  • matching section in references/workflows/token-workflows.md

Failing existing workflow

  • references/troubleshooting/common-issues.md
  • auth reference for the current auth mode
  • versioning reference for the current tool

Steering experiences — quick reference

These are the highest-impact traps found during derailment testing. Each is documented in detail at the relevant decision point above and in the reference files.

TrapImpactWhat to do
Setting NODE_AUTH_TOKEN env var locally without setup-node's .npmrcP0 — npm ignores the token, falls back to interactive login, triggers EOTPNODE_AUTH_TOKEN only works when .npmrc contains ${NODE_AUTH_TOKEN}. Locally, use --//registry.npmjs.org/:_authToken=TOKEN CLI flag instead.
Seeing EOTP and assuming the token type is wrongP0 — misdiagnosis, wasted cyclesEOTP means npm is using the *interactive session auth*, not your token. Run npm whoami to confirm. The token isn't reaching npm — fix the wiring, not the token.
Not checking shell profile (~/.zshrc, ~/.bashrc) for existing NPM_TOKENP1 — user already has a token but agent creates a new one or asks for oneAlways grep NPM_TOKEN ~/.zshrc ~/.bashrc before asking the user to create or provide a token.
Using NODE_AUTH_TOKEN/NPM_TOKEN and calling it "OIDC"P0 — silent wrong authOIDC means zero npm secrets. If the publish step has NODE_AUTH_TOKEN, it is token auth.
First-publish with OIDC on a package that does not exist on npm yetP0 — 404 errorBootstrap: publish once with a granular token, then switch to OIDC.
Picking semantic-release/release-please without conventional commitsP0 compound — blockedUse changesets if the team will not adopt conventional commits.
Treating --//registry.npmjs.org/:_authToken=TOKEN as always wrongP1 — blocks local publishThe "❌ Wrong" label in the granular-tokens reference applies to CI logs only. On a local terminal, the CLI flag is the most reliable token-passing method.
Assuming changesets is monorepo-onlyP1 — wrong tool choicechangesets works for single-package repos and does not require conventional commits.
Confusing greenfield "will adopt" with existing "does not have"P1 — wrong guidanceGreenfield can adopt conventional commits (design choice). Existing repos without them need changesets.
Copying config from versioning reference instead of workflow templateP1 — config mismatchWorkflow template is baseline; versioning reference shows customization options.
Using @v4 action tags in productionP1 — supply-chain riskPin to full SHAs with tag comments for production workflows.
Not verifying manifest version matches package.jsonP1 — release-please misfireManifest must match package.json. For greenfield, use the package.json version exactly.

Final reminder

Keep SKILL.md focused on decisions, sequencing, and guardrails. Read only:

  1. the auth reference,
  2. the versioning reference,
  3. the exact workflow-template section,
  4. and security/troubleshooting only if needed.

Do not expand into full YAML or packaging deep dives here when the references already cover them.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

32.05%
按下载量换算62

Claude

31.5%
按下载量换算61

Cursor

20.48%
按下载量换算40

Gemini CLI

9.26%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills