ln-780-bootstrap-verifier by levnikolaevich/claude-code-skills
npx skills add https://github.com/levnikolaevich/claude-code-skills --skill ln-780-bootstrap-verifier路径说明: 文件路径 (
shared/、references/、../ln-*) 相对于技能仓库根目录。如果在当前工作目录未找到,请定位此 SKILL.md 文件所在目录,然后向上返回一级以找到仓库根目录。如果缺少shared/目录,请通过 WebFetch 从https://raw.githubusercontent.com/levnikolaevich/claude-code-skills/master/skills/{path}获取文件。
类型: L2 领域协调器 类别: 7XX 项目引导 父级: ln-700-project-bootstrap
通过委托给专门的执行器并汇总结果,编排最终的引导验证流程,生成全面的报告。
范围:
范围外:
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
| 场景 | 使用此技能 |
|---|---|
| ln-700 完成项目设置后 | 是 |
| 独立的构建验证 | 否,直接使用 ln-781 |
| 仅手动测试 | 否,直接使用 ln-782 |
| 仅启动容器 | 否,直接使用 ln-783 |
在开始验证流程之前,验证环境就绪状态。
| 检查项 | 检测方法 | 失败处理 |
|---|---|---|
| Docker 已安装 | 检查 docker 命令可用性 | 报告错误,跳过容器阶段 |
| Docker Compose | 检查 docker compose 版本 | 报告错误,跳过容器阶段 |
| 项目结构 | 扫描 package.json、*.csproj、docker-compose.yml | 根据检测到的组件调整工作流程 |
| 端口可用性 | 检查所需端口是否空闲 | 警告用户,建议替代方案 |
委托给 ln-781-build-verifier。
委托给 ln-782-test-runner。
委托给 ln-783-container-launcher。
将所有结果汇总成最终的验证报告。
报告章节:
| 章节 | 内容 |
|---|---|
| 构建结果 | 每个项目的状态、持续时间、输出路径 |
| 测试结果 | 每个测试套件的总数、通过数、失败数 |
| 容器状态 | 每个容器的名称、状态、端口、健康状况 |
| 健康检查 | 每个端点的 URL、状态码、响应时间 |
| 后续步骤 | 用户可执行的操作项 |
TodoWrite 格式(强制要求):
- Pre-flight checks (in_progress)
- Invoke ln-781-build-verifier (pending)
- Invoke ln-782-test-runner (pending)
- Invoke ln-783-container-launcher (pending)
- Generate verification report (pending)
| 阶段 | 执行器 | 上下文 |
|---|---|---|
| 2 | ln-781-build-verifier | Shared (Skill tool) — 针对检测到的项目类型进行构建验证 |
| 3 | ln-782-test-runner | Shared (Skill tool) — 测试套件执行 |
| 4 | ln-783-container-launcher | Shared (Skill tool) — 容器启动 + 健康检查 |
所有执行器: 通过 Skill tool 调用 — 执行器可以看到协调器的上下文。
需要顺序执行: 构建 -> 测试 -> 容器
调用示例:
Skill(skill: "ln-781-build-verifier", args: "{detected_project_types}")
Skill(skill: "ln-782-test-runner", args: "{build_status}")
Skill(skill: "ln-783-container-launcher", args: "{compose_file_path}")
| 选项 | 默认值 | 描述 |
|---|---|---|
| runTests | true | 执行测试阶段 |
| skipTestsOnFailure | false | 如果测试失败,继续执行容器阶段 |
| startContainers | true | 执行容器阶段 |
| keepContainersRunning | true | 验证后保持容器运行 |
| healthCheckTimeout | 120 | 等待容器健康状态的最大秒数 |
../ln-781-build-verifier/SKILL.md../ln-782-test-runner/SKILL.md../ln-783-container-launcher/SKILL.md强制阅读: 加载 shared/references/meta_analysis_protocol.md
技能类型:review-coordinator — workers only。在所有阶段完成后运行。使用 review-coordinator — workers only 格式输出到聊天。
版本: 2.0.0 最后更新: 2026-01-10
每周安装数
152
仓库
GitHub 星标数
245
首次出现
2026年1月24日
安全审计
安装于
claude-code140
cursor137
codex136
gemini-cli136
opencode136
github-copilot131
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. Ifshared/is missing, fetch files via WebFetch fromhttps://raw.githubusercontent.com/levnikolaevich/claude-code-skills/master/skills/{path}.
Type: L2 Domain Coordinator Category: 7XX Project Bootstrap Parent: ln-700-project-bootstrap
Orchestrates the final bootstrap verification pipeline by delegating to specialized workers and aggregating results into a comprehensive report.
Scope:
Out of Scope:
| Scenario | Use This Skill |
|---|---|
| After ln-700 completes project setup | Yes |
| Standalone build verification | No, use ln-781 directly |
| Manual testing only | No, use ln-782 directly |
| Container-only launch | No, use ln-783 directly |
Verify environment readiness before starting verification pipeline.
| Check | Detection Method | Failure Action |
|---|---|---|
| Docker installed | Check docker command availability | Report error, skip container phase |
| Docker Compose | Check docker compose version | Report error, skip container phase |
| Project structure | Scan for package.json, *.csproj, docker-compose.yml | Adapt workflow to detected components |
| Port availability | Check if required ports are free | Warn user, suggest alternatives |
Delegate to ln-781-build-verifier.
Delegate to ln-782-test-runner.
Delegate to ln-783-container-launcher.
Aggregate all results into final verification report.
Report Sections:
| Section | Content |
|---|---|
| Build Results | Status, duration, output paths per project |
| Test Results | Total, passed, failed counts per suite |
| Container Status | Name, status, port, health per container |
| Health Checks | URL, status code, response time per endpoint |
| Next Steps | Actionable items for user |
TodoWrite format (mandatory):
- Pre-flight checks (in_progress)
- Invoke ln-781-build-verifier (pending)
- Invoke ln-782-test-runner (pending)
- Invoke ln-783-container-launcher (pending)
- Generate verification report (pending)
| Phase | Worker | Context |
|---|---|---|
| 2 | ln-781-build-verifier | Shared (Skill tool) — build verification for detected project types |
| 3 | ln-782-test-runner | Shared (Skill tool) — test suite execution |
| 4 | ln-783-container-launcher | Shared (Skill tool) — container launch + health checks |
All workers: Invoke via Skill tool — workers see coordinator context.
Sequential execution required: Build -> Test -> Container
Invocations:
Skill(skill: "ln-781-build-verifier", args: "{detected_project_types}")
Skill(skill: "ln-782-test-runner", args: "{build_status}")
Skill(skill: "ln-783-container-launcher", args: "{compose_file_path}")
| Option | Default | Description |
|---|---|---|
| runTests | true | Execute test phase |
| skipTestsOnFailure | false | Continue to container phase if tests fail |
| startContainers | true | Execute container phase |
| keepContainersRunning | true | Leave containers running after verification |
| healthCheckTimeout | 120 | Max seconds to wait for healthy containers |
../ln-781-build-verifier/SKILL.md../ln-782-test-runner/SKILL.md../ln-783-container-launcher/SKILL.mdMANDATORY READ: Load shared/references/meta_analysis_protocol.md
Skill type: review-coordinator — workers only. Run after all phases complete. Output to chat using the review-coordinator — workers only format.
Version: 2.0.0 Last Updated: 2026-01-10
Weekly Installs
152
Repository
GitHub Stars
245
First Seen
Jan 24, 2026
Security Audits
Gen Agent Trust HubPassSocketPassSnykWarn
Installed on
claude-code140
cursor137
codex136
gemini-cli136
opencode136
github-copilot131
Azure 升级评估与自动化工具 - 轻松迁移 Functions 计划、托管层级和 SKU
90,800 周安装
Python设计模式与最佳实践指南 - 构建健壮高效代码
2,300 周安装
Cloudflare Sandbox SDK - 在Workers上构建安全代码执行环境 | 隔离沙箱开发
2,200 周安装
Docker模式最佳实践:多阶段构建、Docker Compose配置与容器化开发指南
2,300 周安装
竞争对手分析工具 - SEO与GEO技能库中的专业研究工具
2,300 周安装
Swift并发代码审查工具 - 专业版 | Swift 6.2 并发正确性检查
2,400 周安装
Spring Boot 安全最佳实践指南 | JWT认证、授权、SQL注入防护、密码编码
2,400 周安装