You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.en.md
+23-15Lines changed: 23 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,6 +36,16 @@ When using AI (Copilot, Claude, Cursor…) for development:
36
36
37
37
## Get Started in 30 Seconds
38
38
39
+
### Option 1: Install via Agent Skills (Recommended)
40
+
41
+
```bash
42
+
npx skills add lordmos/dev-crew
43
+
```
44
+
45
+
> Compatible with 44+ AI platforms (Claude Code, GitHub Copilot, Cursor, Codex, etc.). Automatically installs the DevCrew protocol into your agent. See [skills.sh](https://skills.sh).
46
+
47
+
### Option 2: Install via CLI
48
+
39
49
```bash
40
50
npm install -g @lordmos/dev-crew
41
51
cd your-project
@@ -186,23 +196,21 @@ crew agents # List all available specialists
> Even without CLI/MCP, manually placing `INSTRUCTIONS.md` works. Skills make the workflow more efficient.
213
+
> Three access methods: install to any agent via `npx skills add`, operate via CLI, or call programmatically via MCP Server. Even without any tools, manually placing `INSTRUCTIONS.md` works.
description: Initialize a DevCrew workspace — creates INSTRUCTIONS.md, project config, agent memory files, and document templates for AI team orchestration.
5
+
metadata:
6
+
author: lordmos
7
+
version: 0.5.0
8
+
---
9
+
10
+
# crew init — 初始化 DevCrew 工作区
11
+
12
+
在当前项目中创建 DevCrew 多 Agent 协作所需的完整工作区结构。
13
+
14
+
## 何时使用
15
+
16
+
- 从零开始一个新项目,需要 AI 团队协作
17
+
- 为已有项目引入 DevCrew 协议
18
+
- 用户说"初始化"、"设置 DevCrew"、"set up dev-crew"
19
+
20
+
## 使用方法
21
+
22
+
### CLI(推荐)
23
+
24
+
```bash
25
+
npx @lordmos/dev-crew init [options]
26
+
```
27
+
28
+
**参数:**
29
+
30
+
| 选项 | 说明 | 示例 |
31
+
|------|------|------|
32
+
|`--platform, -p`| 目标 AI 平台,自动写入平台指令文件 |`--platform copilot`|
0 commit comments