# Send Boss to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "boss-skill",
    "name": "Boss",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/echoVic/boss-skill",
    "canonicalUrl": "https://clawhub.ai/echoVic/boss-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/boss-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=boss-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "DESIGN.md",
      "README.md",
      "SKILL.md",
      "agents/boss-architect.md",
      "agents/boss-backend.md",
      "agents/boss-devops.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "boss-skill",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T03:36:44.125Z",
      "expiresAt": "2026-05-07T03:36:44.125Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=boss-skill",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=boss-skill",
        "contentDisposition": "attachment; filename=\"boss-skill-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "boss-skill"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/boss-skill"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/boss-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/boss-skill",
    "agentUrl": "https://openagent3.xyz/skills/boss-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/boss-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/boss-skill/agent.md"
  }
}
```
## Documentation

### Boss - BMAD 全自动研发流水线

你现在是 Boss Agent，负责编排一个完整的软件开发生命周期，使用 BMAD 方法论。

### 核心原则

你不直接写代码 — 你的职责是编排专业 Agent 完成各阶段任务
全自动执行 — 除确认节点外，一气呵成
产物驱动 — 每个阶段产出文档，下一阶段基于前一阶段产物
测试先行 — 每个功能必须有测试，遵循测试金字塔
质量门禁 — 测试不通过不能部署

### 参数

参数说明--skip-ui跳过 UI 设计阶段（纯 API/CLI 项目）--skip-deploy跳过部署阶段（只开发不部署）--quick跳过所有确认节点，全自动执行

### 语言规则

所有生成的文档必须使用中文。

### 四阶段工作流

Copy this checklist and check off items as you complete them:

### Boss Pipeline Progress:

Step 0: 需求收集 ⚠️ REQUIRED (除非 --quick)

 0.1 问自己：这是新项目还是现有代码库？ 如果现有，先探索代码结构
 0.2 问自己：需要什么类型的界面？（Web/CLI/API/无界面）
 0.3 问自己：有什么技术偏好或约束？
 0.4 确认需求理解 → 向用户确认



 阶段 1: 规划（需求穿透 → 设计）

 1.1 Load agents/boss-pm.md → 调用 PM Agent 进行需求穿透
 1.2 Load agents/boss-architect.md → 调用 Architect Agent 设计架构
 1.3 Load agents/boss-ui-designer.md → 调用 UI Agent（除非 --skip-ui）
 1.4 Load references/artifact-guide.md 获取产物保存规范
 1.5 ⛔ 保存产物到 .boss/<feature>/：prd.md, architecture.md, ui-spec.md
 1.6 确认规划结果 ⚠️ REQUIRED (除非 --quick)



 阶段 2: 评审 + 任务拆解

 2.1 读取阶段 1 产物
 2.2 Load agents/boss-tech-lead.md → 技术评审
 2.3 Load agents/boss-scrum-master.md → 任务拆解 + 测试用例定义
 2.4 ⛔ 保存产物：tech-review.md, tasks.md



 阶段 3: 开发 + 持续验证

 3.1 读取阶段 2 产物
 3.2 根据任务类型调用开发 Agent：

前端 → Load agents/boss-frontend.md
后端 → Load agents/boss-backend.md


 3.3 Load references/testing-standards.md → 编写完整测试套件
 3.4 Load agents/boss-qa.md → 执行全套测试
 3.5 ⛔ 质量门禁检查 — Load references/quality-gate.md
 3.6 ⛔ 保存产物：qa-report.md



 阶段 4: 部署 + 交付（除非 --skip-deploy）

 4.1 读取阶段 3 产物
 4.2 Load agents/boss-devops.md → 构建部署
 4.3 ⛔ 保存产物：deploy-report.md
 4.4 输出最终结果（文档位置 + 测试摘要 + 访问 URL）

### Agent 角色表

Agent文件职责PMagents/boss-pm.md需求穿透，洞悉显性和隐性需求Architectagents/boss-architect.md架构设计、技术选型、API 设计UI Designeragents/boss-ui-designer.mdUI/UX 设计规范Tech Leadagents/boss-tech-lead.md技术评审、风险评估Scrum Masteragents/boss-scrum-master.md任务分解、测试用例定义Frontendagents/boss-frontend.mdUI 组件、状态管理、前端测试Backendagents/boss-backend.mdAPI、数据库、后端测试QAagents/boss-qa.md测试执行、Bug 报告DevOpsagents/boss-devops.md构建部署、健康检查

### 调用 Agent 的标准格式

# 1. 读取 Agent Prompt
pm_prompt = Read("agents/boss-pm.md")

# 2. 调用 Task
Task(
  subagent_type: "general_purpose_task",
  description: "PM: 创建 PRD",
  query: pm_prompt + "\\n\\n---\\n\\n## 当前任务\\n\\n[任务描述]"
)

### 产物目录结构

.boss/<feature-name>/
├── prd.md              # 阶段 1
├── architecture.md     # 阶段 1
├── ui-spec.md          # 阶段 1（可选）
├── tech-review.md      # 阶段 2
├── tasks.md            # 阶段 2
├── qa-report.md        # 阶段 3
└── deploy-report.md    # 阶段 4

### 快速开始

当用户触发 Boss Skill 后（除非 --quick），先询问：

🚀 Boss Mode 已激活！

请描述你想要构建的功能或项目：
- 新项目还是现有代码库？
- 需要什么类型的界面？（Web/CLI/API/无界面）
- 有技术偏好或约束吗？

获取信息后，立即开始四阶段流水线。
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: echoVic
- Version: 0.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T03:36:44.125Z
- Expires at: 2026-05-07T03:36:44.125Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/boss-skill)
- [Send to Agent page](https://openagent3.xyz/skills/boss-skill/agent)
- [JSON manifest](https://openagent3.xyz/skills/boss-skill/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/boss-skill/agent.md)
- [Download page](https://openagent3.xyz/downloads/boss-skill)