Overview
- Skill Key
- gdp6539/ai-employee-skill
- Author
- AI-Company
- Source Repo
- openclaw/skills
- Version
- 1.0.0
- Source Path
- skills/gdp6539/ai-employee-skill
- Latest Commit SHA
- c6281feefddf91b42b4552a0b0436127233d4301
AI员工协作技能包 - 多AI角色配置、任务自动分配、进度监控、结果汇报。适合想要自动化运营的团队。
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 ai-employee-skill 技能。 若已安装,则直接安装 ai-employee-skill 技能。
# AI员工协作技能包
## 一句话介绍
把多个AI角色组织成虚拟团队,自动分配任务、监控进度、汇报结果。
## 解决什么问题?
- 一个人管不过来:多个项目并行 → AI团队自动分工
- 任务分配不均:不知道谁该做什么 → 智能任务分配
- 进度追踪困难:到处问进度 → 自动状态汇报
- 协作效率低:沟通成本高 → 结构化工作流
## 核心功能
- 🤖 多AI角色配置:老板、产品、技术、测试、运营...
- 📋 任务智能分配:根据角色自动派发任务
- 📊 状态实时监控:查看每个员工的工作状态
- 📝 结果自动汇报:日报、周报、任务完成通知
- 🔄 工作流编排:定义任务流转规则
- 💾 记忆持久化:AI员工有长期记忆
## 快速开始
### 安装
```bash
cd ai-employee-skill
npm install
```
### 配置员工
编辑 `config/employees.json`:
```json
{
"employees": [
{
"id": "boss",
"name": "老板AI",
"role": "战略决策",
"skills": ["战略分析", "资源分配", "绩效评估"]
},
{
"id": "pm",
"name": "产品AI",
"role": "产品规划",
"skills": ["需求分析", "产品设计", "文档撰写"]
}
]
}
```
### 启动公司
```bash
npm start
```
## 命令列表
| 命令 | 说明 |
|------|------|
| `/hire <角色>` | 招聘新AI员工 |
| `/fire <id>` | 解雇AI员工 |
| `/assign <任务>` | 分配任务 |
| `/status` | 查看团队状态 |
| `/report [日报/周报]` | 生成工作报告 |
| `/meeting` | 召开团队会议 |
## 文件结构
```
ai-employee-skill/
├── SKILL.md # 技能说明
├── README.md # 产品文档
├── TUTORIAL.md # 使用教程
├── package.json # 依赖配置
├── config.json # 系统配置
├── scripts/ # 核心脚本
│ ├── employee-manager.js # 员工管理
│ ├── task-dispatcher.js # 任务分发
│ ├── status-monitor.js # 状态监控
│ ├── report-generator.js # 报告生成
│ └── meeting-coordinator.js # 会议协调
├── templates/ # 员工模板
│ ├── boss-ai.md
│ ├── product-ai.md
│ ├── tech-ai.md
│ ├── test-ai.md
│ └── operation-ai.md
└── examples/ # 示例场景
├── startup-team.json
└── content-team.json
```
## 员工角色说明
| 角色 | 职责 | 核心能力 |
|------|-...
# AI员工协作技能包
> 让多个AI角色像真实团队一样协作工作
## 产品定位
这是一个**AI团队协作框架**,帮助用户:
1. 配置多个AI角色(老板、产品、技术、测试、运营等)
2. 自动分配和追踪任务
3. 监控工作进度
4. 生成工作报告
## 核心价值
| 痛点 | 解决方案 |
|------|----------|
| 一个人管不过来多个项目 | AI团队自动分工协作 |
| 任务分配混乱 | 智能任务分发系统 |
| 不知道进度如何 | 实时状态监控面板 |
| 写周报日报太烦 | 自动生成工作报告 |
## 快速开始
### 1. 安装
```bash
git clone <repo-url>
cd ai-employee-skill
npm install
```
### 2. 配置员工
编辑 `config/employees.json`:
```json
{
"company": "我的AI公司",
"employees": [
{
"id": "boss",
"name": "老板AI",
"role": "CEO",
"responsibilities": ["战略决策", "资源分配"],
"model": "gpt-4",
"memoryPath": "./memory/boss"
},
{
"id": "pm",
"name": "产品AI",
"role": "产品经理",
"responsibilities": ["需求分析", "PRD撰写"],
"model": "gpt-4",
"memoryPath": "./memory/pm"
}
]
}
```
### 3. 定义工作流
编辑 `config/workflow.json`:
```json
{
"flows": [
{
"name": "产品开发流程",
"steps": [
{"role": "boss", "action": "assign", "next": "pm"},
{"role": "pm", "action": "design", "next": "tech"},
{"role": "tech", "action": "develop", "next": "test"},
{"role": "test", "action": "verify", "next": "boss"}
]
}
]
}
```
### 4. 启动
```bash
npm start
```
## 命令参考
### 员工管理
```bash
# 招聘新员工
/hire <role> --name <名字> --skills <技能列表>
# 查看员工列表
/employees
# 查看员工详情
/employee <id>
# 解雇员工
/fire <id>
```
### 任务管理
```bash
# 创建任务
/task create <任务描述>
# 分配任务
/task assign <taskId> <员工ID>
# 查看任务状态
/task status <taskId>
# 完成任务
/task complete <taskId> <结果描述>
```
### 监控和报告
```bash
# 团队状态
/status
# 今日工作
/today
# 生成日报
/report daily
# 生成周报
/report weekly
# 召开会议
/meeting <主题>
```
## 架构设计
```
┌───────────────...
heyixuan2
Bambu Lab 3D printer control and automation. Activate when user mentions: printer status, 3D printing, slice, analyze model, generate 3D, AMS filament, print monitor, Bambu Lab, or any 3D printing task. Full pipeline: search → generate → analyze → colorize → preview → open BS → user slice → print → monitor. Supports all 9 Bambu Lab printers (A1 Mini, A1, P1S, P2S, X1C, X1E, H2C, H2S, H2D).
capt-marbles
Generative Engine Optimization (GEO) for AI search visibility. Optimize content to appear in ChatGPT, Perplexity, Claude, and Google AI Overviews. Use when optimizing websites, pages, or content for LLM discoverability and citation.
carlulsoe
Local speech-to-text with NVIDIA Parakeet TDT 0.6B v3 (ONNX on CPU). 30x faster than Whisper, 25 languages, auto-detection, OpenAI-compatible API. Use when transcribing audio files, converting speech to text, or processing voice recordings locally without cloud APIs.
carlzhao007
飞书消息自动处理与进度反馈技能。安装后后台运行,监听飞书任务消息并自动创建独立进程处理。 在处理前后发送实时进度反馈(任务确认、进度百分比、完成通知)。 支持任务类型识别、智能解析、错误重试、并发控制、状态持久化。 使用场景:飞书自动化工作流、任务进度追踪、批量任务处理、需要实时反馈的场景。
cartoonitunes
BottyFans agent skill for autonomous creator monetization. Lets AI agents register, build a profile, publish posts (public, subscriber-only, or pay-to-unlock), upload media, accept USDC subscriptions and tips on Base, send and receive DMs, track earnings, and appear on the creator leaderboard. Use this skill when an agent needs to monetize content, interact with fans, manage a creator profile, handle payments in USDC, or operate as an autonomous creator on the BottyFans platform.
camopel
Local arXiv paper manager with semantic search. Crawls arXiv categories, downloads PDFs, chunks content, and indexes with FAISS + Ollama embeddings. No cloud API keys required — everything runs locally.