Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计提醒

bun-publish-setupBun publish 设置

Agent Skill

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

总安装

275

周安装

11

GitHub Stars

3

下载量

89
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/mrsekut/agent-skills --skill bun-publish-setup

简介

用于首次发布 Bun 库到 npm 并完成 GitHub Actions 自动化发布配置。

  • 自动校验 package.json、tsconfig、README 等文件完整性并提供修复建议。
  • 支持 dry-run 预览发布内容,确认无误后执行实际发布操作。
  • 需提前登录 npm 并拥有仓库推送权限,适合有持续集成需求的项目。
  • bun-publish-setup 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

bun-publish-setup

First-time npm publish for bun libraries and GitHub Actions setup for automated publishing.

Prerequisites

  • bun is installed
  • Logged in to npm (npm whoami to verify)
  • GitHub repository exists

Workflow

  1. Pre-publish checks & fixes — Validate and fix package.json, tsconfig, build, README, etc.
  2. First publish — Confirm with dry-run, then run bun publish
  3. GitHub Actions setup — Create workflow for auto-publish on version tag push

Phase 1: Pre-publish Checks & Fixes

1-1: Validate & Fix package.json

Read package.json and validate the following fields. Suggest fixes for any missing or incorrect fields.

Required fields:

  • name — Package name. Check if scoped (@scope/name)
  • version0.1.0 or 1.0.0 is appropriate for first publish
  • description — Brief description of the package
  • license — e.g. MIT. Verify consistency with LICENSE file

Recommended fields:

  • repository — GitHub repository URL. Can be inferred from git remote get-url origin
  • keywords — Keywords for npm search
  • author — Author info

Entry points (for TypeScript libraries):

  • main — CJS entry point (e.g. ./dist/index.js)
  • module — ESM entry point (e.g. ./dist/index.mjs)
  • types — Type definitions (e.g. ./dist/index.d.ts)
  • exports — Conditional exports. Recommended format:
{
	"exports": {
		".": {
			"types": "./dist/index.d.ts",
			"import": "./dist/index.mjs",
			"require": "./dist/index.js"
		}
	}
}

Published files:

  • files — Files/directories to include in the npm package (e.g. ["dist", "README.md", "LICENSE"]). Ensure unnecessary files are excluded.

1-2: Check Package Name Availability

npm view <package-name>
  • 404 means the name is available
  • If already taken, suggest alternative names to the user

1-3: Validate tsconfig.json

For TypeScript projects, verify:

  • declaration: true — Type definition generation is enabled
  • outDir — Build output directory matches package.json entry points
  • declarationDir — Type definition output directory (if configured)

1-4: Run Build (only if build script exists)

Only run if a build script is defined in package.json. Not needed for projects that publish TS source directly.

bun run build
  • Verify build succeeds
  • Verify expected files are generated in the output directory

1-5: Check README.md

  • Verify README.md exists
  • If missing, suggest creating one

1-6: Check LICENSE File

  • Verify LICENSE file exists
  • Verify consistency with license field in package.json
  • If missing, suggest creating one based on the license field

Phase 2: First Publish

2-1: Dry-run Preview

bun publish --dry-run

Check the output for:

  • Unnecessary files (source code, tests, config files, etc.) in the publish list
  • Reasonable package size

If issues found, go back to Phase 1 to fix.

2-2: Publish

Present dry-run results to the user and get confirmation before publishing.

bun publish

For scoped packages on first publish, --access public is required:

bun publish --access public

Note: On first publish, bun will prompt for browser-based npm authentication. Tell the user to press ENTER to open the authentication URL in their browser and complete the login. Wait for the user to confirm authentication is done before proceeding.

2-3: Verify Publication

npm view <package-name>

Verify the package was published successfully.

Phase 3: GitHub Actions Setup

3-1: Create Workflow File

Create .github/workflows/publish.yml:

# yaml-language-server:$schema=https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/github-workflow.json
name: npm publish

on:
  push:
    tags:
      - "*"

jobs:
  publish:
    runs-on: ubuntu-latest
    timeout-minutes: 10
    permissions:
      contents: read
      id-token: write
    steps:
      - uses: actions/checkout@v4
        with:
          fetch-depth: 0

      - uses: actions/setup-node@v4
        with:
          registry-url: "https://registry.npmjs.org"
          node-version: 24

      - uses: oven-sh/setup-bun@v2
      - run: bun install --frozen-lockfile
      - run: bun run build

      - name: Update npm
        run: npm install -g npm@latest

      # Include this step only if a build script exists
      - run: bun run build

      - run: npm publish --provenance --access public

For scoped packages, change to npm publish --access public. Remove the build step if no build script exists.

3-2: Configure npm Publishing Access

Guide the user through setting up GitHub Actions publishing from the npm package settings:

  1. Go to the package's access page: https://www.npmjs.com/package/<package-name>/access
  2. Under publishing access, select GitHub Actions
  3. Fill in the form:

- Organization or user: GitHub username or org (e.g. mrsekut) - Repository: Repository name (e.g. bun-publish-setup) - Workflow filename: publish.yml - Environment name: leave blank

3-3: Release Flow

Explain the release process to the user:

# 1. Bump version (automatically creates commit & tag)
npm version patch  # or minor, major

# 2. Push with tags → GitHub Actions auto-publishes to npm
git push --follow-tags

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.09%
按下载量换算33

Claude

28.1%
按下载量换算25

Cursor

19.05%
按下载量换算17

Gemini CLI

9.98%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills