Token导航 LogoToken导航TokenDH.com
运维和基础设施需要联网github未标认证来源可访问clear审计提醒

ln-783-container-launcherln 783 集装箱发射装置

Agent Skill

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

总安装

6,327

周安装

269

GitHub Stars

437

下载量

2,217
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/levnikolaevich/claude-code-skills --skill ln-783-container-launcher

简介

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

  • 适合围绕仓库状态、代码变更或协作事项进行整理。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装前建议确认权限范围和维护状态。ln-783-container-launcher 属于运维和基础设施类 Skill,可作为该场景下的辅助能力补充。
  • 注意是否会触发联网、命令执行或文件读写操作。

SKILL.md

Paths: File paths (shared/, references/, ../ln-*) are relative to skills repo root. If not found at CWD, locate this SKILL.md directory and go up one level for repo root. If shared/ is missing, fetch files via WebFetch from https://raw.githubusercontent.com/levnikolaevich/claude-code-skills/master/skills/{path}.

ln-783-container-launcher

Type: L3 Worker Category: 7XX Project Bootstrap


Purpose

Builds Docker images, launches containers, and performs comprehensive health verification using Docker native health checks and retry strategies.

Scope:

  • Detect and validate docker-compose.yml configuration
  • Build Docker images
  • Launch containers with proper startup order
  • Verify container health using native health checks
  • Provide access URLs and cleanup instructions

Out of Scope:

  • Building application code (handled by ln-781)
  • Running tests (handled by ln-782)
  • Container orchestration beyond single host (Kubernetes, Swarm)

When to Use

ScenarioUse This Skill
Standalone-capableYes
Standalone container launchYes
Development environment setupYes
Production deploymentNo, use proper CI/CD

Workflow

Step 1: Pre-flight Checks

Verify Docker environment readiness.

CheckFailure Action
Docker daemon runningReport error with installation instructions
Docker Compose availableReport error, suggest installation
Compose file existsReport error, list expected locations
Required ports freeReport conflict, suggest alternatives
Sufficient disk spaceWarn if low space (<2GB free)

Step 2: Parse Compose Configuration

Extract service information from docker-compose.yml.

InformationPurpose
Service namesTrack which containers to monitor
Exposed portsKnow which ports to check
Health check definitionsUse native health checks if defined
Dependencies (depends_on)Understand startup order
Volume mountsVerify paths exist

Step 3: Build Images

Build all images defined in compose file.

AspectStrategy
Build contextUse paths from compose file
Build argsPass through from compose configuration
CacheUse Docker layer cache for speed
FailureReport build errors with full log

Step 4: Launch Containers

Start containers with proper orchestration.

AspectStrategy
Startup orderRespect depends_on and healthcheck conditions
Detached modeRun in background
NetworkUse compose-defined networks
VolumesMount all defined volumes

Step 5: Health Verification

Verify all containers are healthy using appropriate strategy.

Strategy Selection:

ConditionStrategy
Service has healthcheck: in composeUse native Docker health status
Service has depends_on: condition: service_healthyWait for Docker health status
No healthcheck definedUse external HTTP probe with retry

Retry Configuration:

ParameterValueRationale
Max attempts10Allow slow-starting services
Initial delay5sGive containers time to start
BackoffExponential (5, 10, 20, 40s)Avoid overwhelming services
Max total wait120sReasonable upper limit

Health Check Methods:

MethodWhen to Use
Docker health statusWhen container has healthcheck defined
HTTP GET to exposed portFor web services without healthcheck
Container execFor services without exposed ports
TCP port checkFor databases and message queues

Step 6: Report Results

Return structured results to orchestrator.

Result Structure:

FieldDescription
containersArray of container status objects
healthChecksArray of health check results
accessUrlsMap of service name to access URL
overallStatushealthy / unhealthy / partial
startupDurationTime from launch to all healthy

Container Status Object:

FieldDescription
nameContainer name
serviceService name from compose
statusrunning / exited / restarting
healthhealthy / unhealthy / starting / none
portExposed port (if any)
startedAtContainer start timestamp

Health Check Result:

FieldDescription
urlChecked URL or endpoint
statusHTTP status code or check result
responseTimeTime to respond in ms
healthyBoolean health status

Error Handling

Error TypeAction
Docker daemon not runningReport with start instructions
Port already in useReport conflict, suggest docker compose down first
Image build failedReport with build logs
Container exitedReport with container logs
Health check timeoutReport with last known status and logs
Network unreachableCheck Docker network configuration

Options

OptionDefaultDescription
keepRunningtrueLeave containers running after verification
stopAfterfalseStop containers after successful verification
healthTimeout120Max seconds to wait for healthy status
showLogstrueShow container logs on failure
buildFirsttrueBuild images before starting
pullLatestfalsePull base images before build

Cleanup Instructions

Provide user with cleanup commands in report.

ActionDescription
Stop containersStop running containers, preserve data
Remove containers and networksClean up containers but keep volumes
Remove everythingFull cleanup including volumes and images

Critical Rules

  1. Use native health checks when available - more reliable than external probes
  2. Implement retry with backoff - services need time to initialize
  3. Always collect logs on failure - essential for debugging
  4. Parse compose file for ports - do not hardcode port numbers
  5. Respect depends_on order - critical for database-dependent services

Monitor Integration (Claude Code 2.1.98+)

MANDATORY READ: Load shared/references/monitor_integration_pattern.md

For container health verification, use Monitor to stream container logs:

PatternCommandtimeout_ms
Readiness signal`docker compose logs -f 2>&1 \grep --line-buffered -iE 'ready\listening\healthy\started'`healthTimeout * 1000
Error watch`docker compose logs -f 2>&1 \grep --line-buffered -iE 'error\fatal\panic\exit'`healthTimeout * 1000

Use persistent: true if keepRunning is true and ongoing log monitoring is needed. Fallback: if Monitor is unavailable, use retry loop with sleep + curl health check.


Definition of Done

  • Docker environment verified
  • All images built successfully
  • All containers running
  • All health checks passing
  • Access URLs provided
  • Results returned to orchestrator

Reference Files

  • Parent: ../ln-780-bootstrap-verifier/SKILL.md

Version: 2.0.0 Last Updated: 2026-01-10

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

29.53%
按下载量换算655

Gemini CLI

22.41%
按下载量换算497

Codex

19.96%
按下载量换算443

OpenCode

13.83%
按下载量换算307

Antigravity

8.18%
按下载量换算181

windsurf

3.18%
按下载量换算71

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills