Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

autoshipautoship 搜索

Agent Skill

autoship 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,706

周安装

69

GitHub Stars

33

下载量

535
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/mblode/agent-skills --skill autoship

简介

autoship 用于查找、检索和筛选相关信息,支持关键词定位。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中需要快速定位候选结果时使用。
  • 通过 GitHub 安装,使用 npx skills add 命令添加指定仓库的 skill。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网或文件读写。
  • autoship 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Autoship

Automate npm releases with a changeset -> fix -> push -> monitor -> merge -> publish workflow.

Reference Files

FileRead when
references/changeset-and-commit.mdCreating a changeset, fixing quality issues, or committing and pushing
references/ci-polling.mdWatching CI with the Monitor tool, diagnosing failures, or handling retries
references/version-pr-and-publish.mdSearching for the Version Packages PR, merging it, or watching the release workflow

Intent Map

IntentStepsNotes
Full autoship (ship / release / publish)1 through 5Default entry point. Runs end-to-end through publish without intermediate prompts
Create changeset onlyStep 1Stage a release without pushing
Fix quality and pushSteps 1-2Changeset + fixes + commit, no CI watch
Watch CI onlySteps 3-5When changes are already pushed
Merge version PR onlySteps 4-5When CI already passed. Auto-merges once preconditions are met

Safety Tiers

Invoking autoship is standing consent for the full release flow. Do not pause mid-flow for re-confirmation; gate risky steps with objective preconditions instead.

  • GREEN -- execute directly: gh run list, gh run view, gh pr list, gh pr checks, npm view, reading CI status, listing changesets, reading package.json scripts, git log, git status.
  • YELLOW -- announce then execute: npm run changeset / writing changeset files, running lint/typecheck/test/format fixers, git add/commit/push, starting Monitor background watches, and gh pr merge of the Version Packages PR opened by changesets/action once its identity is confirmed and all checks are green.
  • RED -- explicit confirmation required: force-pushing, history rewrites, and any destructive git operations.

Workflow

Copy this checklist to track progress:

Autoship progress:
- [ ] Step 1: Create changeset (default patch)
- [ ] Step 2: Fix lint, types, tests, format
- [ ] Step 3: Commit + push changeset (do NOT run `changeset version`)
- [ ] Step 4: Monitor CI and find/merge the Version Packages PR
- [ ] Step 5: Watch release workflow to completion

Step 1: Create changeset (default patch)

  • Load references/changeset-and-commit.md.
  • Check for existing pending changesets: ls.changeset/*.md 2>/dev/null | grep -v README.md.
  • If changesets exist, ask the user whether to create an additional one or skip.
  • Default to patch bump type. Only use minor or major when the user explicitly requests it.
  • Write the changeset file directly for non-interactive agent mode.
  • Infer the changeset summary from recent commits with git log --oneline -10.

Step 2: Fix lint, types, tests, format

  • Load references/changeset-and-commit.md.
  • Discover available scripts from package.json.
  • Run quality gates in order: lint, typecheck, test, format.
  • If any gate fails, attempt to auto-fix (e.g., --fix, prettier --write).
  • Retry each gate up to 3 times after applying fixes.
  • If a gate still fails after retries, stop and report to the user.

Step 3: Commit + push changeset

  • Stage the changeset file and any auto-fixes, commit, and push.
  • Do NOT run npx changeset version locally. CI's changesets/action runs it inside the Version Packages PR.
  • The pushed commit must contain the pending .changeset/*.md file so CI's "Changeset Status" check passes.

Step 4: Monitor CI and find/merge the Version Packages PR

  • Load references/ci-polling.md and references/version-pr-and-publish.md.
  • After pushing, start a Monitor watch that emits a line each time the latest workflow run on the current branch reaches a terminal state (completed). The agent reacts to each emitted line; no /loop re-prompt needed.
  • Do not stop prematurely. A single idle snapshot does not mean CI is done — keep the monitor running until at least one workflow run reports completed.
  • On failure: read logs, classify as flaky or real. Retry flaky failures up to 3 times with gh run rerun <id> --failed. For real failures: fix, commit, push, restart the monitor.
  • Once CI is green, search for an open PR titled "Version Packages" or on branch changeset-release/main. If not found immediately, start a second Monitor watch that polls for the PR for up to 10 minutes (the changesets bot needs time).
  • Before merging, verify ALL of the following preconditions:

- PR title is exactly "Version Packages" OR head branch is changeset-release/main (do not merge any other PR). - Every check on the PR shows state: completed and conclusion: success. - PR is mergeable (mergeable: MERGEABLE, not CONFLICTING or UNKNOWN).

  • Announce in one short line ("Merging Version Packages PR #N — @"), then merge with gh pr merge <number> --squash --delete-branch. Do not pause for confirmation; invoking autoship is the consent.
  • If any precondition fails, stop and report — do not merge.

Step 5: Watch the publish run to completion

  • Load references/version-pr-and-publish.md and references/ci-polling.md.
  • Merging the Version Packages PR triggers the SAME release workflow again. Because no pending changesets remain, changesets/action now executes the publish: script (changeset publish).
  • Identify the workflow file (commonly release.yml, npm-publish.yml, or publish.yml) in .github/workflows/.
  • Start a Monitor watch on that workflow's latest run on main, emitting a line when it reaches a terminal state.
  • Terminal conditions: workflow succeeds (report published version) or fails (report with logs).
  • Do NOT auto-retry publish failures. These typically need human investigation (npm auth, registry, OIDC/provenance, tag conflict).
  • On success, verify with npm view <package> version and stop any remaining Monitor watches.

Anti-patterns

  • Running npm publish directly instead of using the changesets workflow.
  • Merging the Version Packages PR before its CI checks pass.
  • Stopping CI monitoring after the first poll shows no runs (workflows take time to queue).
  • Creating a changeset with major bump without explicit user instruction.
  • Force-pushing to the default branch.
  • Auto-retrying publish failures (these are typically real auth, registry, OIDC/provenance, or tag-conflict issues).
  • Polling tighter than ~30s, which wastes GitHub API rate limit. Monitor scripts should sleep 30 or longer between gh calls.
  • Never run npx changeset version locally. CI's changesets/action runs it inside the Version Packages PR. Running it locally consumes the changeset file, the pushed commit has no pending changeset, CI's "Changeset Status" check fails, and no Version Packages PR is opened.
  • Hand-editing CHANGELOG.md or package.json version as part of autoship — CI generates both.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.14%
按下载量换算199

Claude

31.01%
按下载量换算166

Cursor

19.55%
按下载量换算105

Gemini CLI

10.12%
按下载量换算54

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/mblode/agent-skills --skill autoship 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills