Token导航 LogoToken导航TokenDH.com
运维和基础设施敏感数据github未标认证来源可访问clear审计通过

bunjs-docker-masterybunjs Docker mastery 部署

Agent Skill

用于辅助云资源、部署、容器、基础设施和运维自动化任务。它适合让 Agent 检查配置、整理部署步骤、分析资源状态、生成排障思路或辅助云服务接入。使用时需要明确目标环境、账号权限、区域和资源组,区分本地测试与生产操作;涉及删除资源、重启服务、修改网络或权限配置时,应先确认影响范围。

总安装

582

周安装

24

GitHub Stars

5

下载量

190
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/modra40/claude-codex-skills-directory --skill bunjs-docker-mastery

简介

bunjs-docker-mastery 用于辅助云资源、部署、容器和基础设施运维任务,适合检查配置和生成部署方案。

  • 它可帮助分析 Bun.js 应用与 Docker 集成时的最佳实践,包括日志、健康检查和优雅关闭。
  • 使用时需明确目标环境、账号权限和资源组,区分测试与生产操作。
  • 涉及删除或修改资源时,应先评估影响范围,避免误操作。
  • 该技能提供排障思路,不替代实际部署执行。

SKILL.md

Bun.js + Docker Mastery

Operate

  • Confirm the goal, scope, Bun version, deployment target, Docker constraints, database choice, traffic profile, and definition of done.
  • Prefer small vertical slices with tests and explicit tradeoffs.
  • Use Bun-native capabilities when they simplify the system, but do not force Bun-specific APIs where the standard Web platform is already clear.
  • Optimize for operability: graceful shutdown, structured logs, health checks, timeouts, and safe defaults are part of the baseline.
The goal is not just “fast on benchmarks”. The goal is a service that stays easy to debug and safe to run in production.

Default Standards

  • Keep src/index.ts as bootstrap only; move app wiring to src/app.ts and business logic to services/use-cases.
  • Validate environment variables and request payloads at the boundary.
  • Prefer explicit error types and one global error mapping strategy.
  • Keep TypeScript strict; avoid any, hidden type assertions, and implicit runtime contracts.
  • Prefer idempotent handlers for side-effecting endpoints where retries can happen.
  • Treat database, cache, and outbound HTTP as failure-prone dependencies: always define timeouts and degradation behavior.

“Bad vs Good” (common production pitfalls)

// ❌ BAD: parsing untrusted input directly in the service layer.
const user = await userService.create(await c.req.json())

// ✅ GOOD: validate at the HTTP boundary before entering business logic.
const payload = c.req.valid("json")
const user = await userService.create(payload)
// ❌ BAD: fire-and-forget async work with no ownership or logging.
void sendWebhook(order)

// ✅ GOOD: await or queue the side effect with explicit failure handling.
await webhookPublisher.publish(order).catch((error) => {
  logger.error({ error, orderId: order.id }, "publish webhook failed")
  throw new AppError("Webhook publish failed", 503, "WEBHOOK_UNAVAILABLE")
})

Recommended Structure

src/
├── index.ts
├── app.ts
├── config/
├── routes/
├── controllers/
├── services/
├── repositories/
├── middlewares/
├── utils/
└── types/

Validation Commands

  • Run bun install --frozen-lockfile.
  • Run bun run test.
  • Run bunx tsc --noEmit if the project uses standalone TypeScript checks.
  • Run bunx @biomejs/biome check..
  • Run bun run build before release.
  • Run Docker build validation for production images when Docker is part of the deliverable.

Runtime and API Guardrails

  • Use a single request ID / trace ID strategy and include it in logs and error responses where appropriate.
  • Set request body limits, timeouts, and rate limits for public endpoints.
  • Do not leak stack traces, secrets, or database errors to clients.
  • Prefer Bun.password for password hashing instead of legacy bcrypt stacks unless compatibility requires otherwise.
  • Make shutdown explicit: stop accepting traffic, drain in-flight work, and close DB/Redis clients.

Docker & Deployment Defaults

  • Use multi-stage Docker builds.
  • Run as non-root.
  • Pin Bun base image versions; avoid floating latest tags.
  • Add /health and /ready endpoints for orchestration environments.
  • Keep image contents minimal and deterministic.

Testing Defaults

  • Unit tests for pure logic and service policies.
  • Integration tests for database repositories and route behavior.
  • E2E tests only for critical user flows.
  • Keep mocks small and close to the consumer boundary.

References

Scripts & Assets

  • scripts/init-project.sh - initialize a Bun project from the template.
  • scripts/healthcheck.ts - health endpoint template.
  • assets/project-template/ - project boilerplate.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

25.9%
按下载量换算49

trae

22.28%
按下载量换算42

Gemini CLI

18.57%
按下载量换算35

Antigravity

12.78%
按下载量换算24

windsurf

6.77%
按下载量换算13

github-copilot

3.5%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills