基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/hyperlist/feishu-multi-agent --skill project-switcher命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
飞书多 Agent 系统搭建指南。当用户要求创建新的功能 Agent、配置飞书群聊绑定、 搭建多 Agent 协作系统时激活此 skill。 触发词:创建 agent、新建 agent、添加 agent、create agent、多 agent、飞书绑定。
Git 工作流规范。管理分支、commit、PR 的标准流程。 用户发送 /git 或涉及版本控制操作时触发。
Delegate tasks to agents asynchronously. Triggers on "让XX做", "delegate to", "assign to", "派发", "布置任务".
| name | project-switcher |
| description | 多项目管理和目录切换。用户发送 /repo 时列出项目,选择后切换工作目录。 适用于 coder agent 同时维护多个代码仓库的场景。 |
/repo — 列出所有注册的项目/repo <名称或编号> — 切换到指定项目config/projects.json 获取项目列表.current_project编辑 config/projects.json 注册项目:
{
"projects": [
{
"name": "my-app",
"path": "/path/to/my-app",
"description": "主项目",
"language": "Python",
"git": "git@github.com:user/my-app.git"
}
]
}
scripts/list_projects.py — 列出项目scripts/switch_project.py — 切换项目 + 记录历史