openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > CrazeeOpenclawSkill

OpenClaw任务分工协调skill,用于明确团队角色和CLI工具分工。当OpenClaw下发任务、分配工作、创建子任务、协调多Agent协作、或需要明确前后端分工和QA验收流程时使用此skill。

开发与 DevOps

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v1.0.1

统计:⭐ 0 · 38 · 0 current installs · 0 all-time installs

0

安装量(当前) 0

🛡 VirusTotal :良性 · OpenClaw :良性

Package:chenzhouming/openclaw-team-coordinator

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :良性

OpenClaw 评估

This is an instruction-only team-coordinator skill whose declared purpose (routing tasks between front-end/backend agents and QA) matches its instructions and it asks for no installs, binaries, or credentials.

目的

Name/description describe coordinating OpenClaw, Claude, Gemini CLI and Codex CLI; SKILL.md contains routing rules, role definitions, and QA criteria. The declared requirements (none) are proportional to an instruction-only coordination skill.

说明范围

The instructions are limited to task analysis, routing to the appropriate CLI agent, progress monitoring, and Claude-led QA. They do not reference files, secrets, or unrelated system paths. However, the runtime steps are high-level and vague (e.g., '调用对应CLI Agent', '监控执行进度') with no concrete invocation details, so actual implementation may need additional integration configuration.

安装机制

No install spec and no code files — nothing will be written to disk by the skill itself. This is the lowest-risk install posture.

证书

The skill requests no environment variables, credentials, or config paths. There are no apparent requests for unrelated secrets or permissions.

持久

always is false and model invocation is allowed (the normal default). The skill does not request permanent presence or claim to modify other skills or system-wide settings.

综合结论

This skill is a lightweight, instruction-only coordinator and appears internally consistent. Before installing or using it, confirm how your agent will 'call' the Gemini/Codex/Claude CLIs in practice — the skill does not provide implementation details. Ensure those CLI tools (and any credentials they require) are from trusted sources and you control which agent can invoke them. If you plan to allow autonomous agent actions, restrict which syst…

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「CrazeeOpenclawSkill」。简介:OpenClaw任务分工协调skill,用于明确团队角色和CLI工具分工。当OpenClaw下发任务、分配工作、创建子任务、协调多Agent协作、或需要明确前…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/chenzhouming/openclaw-team-coordinator/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: openclaw-team-coordinator
description: OpenClaw任务分工协调skill,用于明确团队角色和CLI工具分工。当OpenClaw下发任务、分配工作、创建子任务、协调多Agent协作、或需要明确前后端分工和QA验收流程时使用此skill。
---

# OpenClaw Team Coordinator

## 概述

OpenClaw作为主脑(PM)协调Gemini CLI(前端)和Codex CLI(后端),Claude负责QA验收。

## 团队架构

```
Claude (PM/主脑)
├── 任务规划与分配
├── 进度监控
└── QA验收
    │
    ├── Gemini CLI (前端)
    │   └── React/Vue/HTML/CSS/UI组件
    │
    └── Codex CLI (后端)
        └── API/数据库/业务逻辑
```

## CLI工具职责

| Agent | CLI工具 | 职责范围 |
|-------|---------|----------|
| Claude | Claude CLI | 主脑PM、任务分配、进度协调、QA验收 |
| Gemini CLI | Gemini CLI | 前端开发:React/Vue组件、样式、交互 |
| Codex CLI | Codex CLI | 后端开发:API、数据库、Server逻辑 |

## 任务分配规则

### 任务下发流程

1. **任务接收**:OpenClaw接收用户需求
2. **任务分析**:Claude分析任务类型(前端/后端/全栈)
3. **任务分发**:
   - 前端任务 → Gemini CLI
   - 后端任务 → Codex CLI
   - 全栈任务 → 分解后分别下发
4. **进度跟踪**:Claude跟踪各Agent进度
5. **QA验收**:Claude进行最终验收

### 任务类型判断

```
IF 任务包含 "前端" OR "UI" OR "界面" OR "React" OR "Vue" OR "HTML" OR "样式":
    → Gemini CLI

ELIF 任务包含 "后端" OR "API" OR "数据库" OR "Server" OR "逻辑":
    → Codex CLI

ELSE:
    → Claude先分析,再拆分下发
```

### QA验收标准

所有任务完成后必须经过Claude进行QA验收:
- 功能完整性
- 代码质量
- 安全性检查
- 性能评估

## 使用场景

- OpenClaw下发新任务
- 需要分配前端/后端工作
- 多Agent协作需要协调
- 任务进度跟踪
- 最终QA验收

## 快速开始

当收到任务时:
1. 分析任务类型
2. 调用对应CLI Agent
3. 监控执行进度
4. 执行Claude QA验收
5. 汇总结果反馈