Skip to content

Commit 3fa2b32

Browse files
committed
refine docs
1 parent 026dd81 commit 3fa2b32

File tree

4 files changed

+91
-68
lines changed

4 files changed

+91
-68
lines changed

โ€Ždocs/install/cli_install.md

+20-8
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,29 @@
99

1010
### Detail Installation
1111
```bash
12-
# Step 1: Ensure that NPM is installed on your system. Then install mermaid-js. (If you don't have npm in your computer, please go to the Node.js official website to install Node.js https://nodejs.org/ and then you will have npm tool in your computer.)
13-
npm --version
14-
sudo npm install -g @mermaid-js/mermaid-cli
15-
16-
# Step 2: Ensure that Python 3.9+ is installed on your system. You can check this by using:
12+
# Step 1: Ensure that Python 3.9+ is installed on your system. You can check this by using:
13+
# You can use conda to initialize a new python env
14+
# conda create -n metagpt python=3.9
15+
# conda activate metagpt
1716
python3 --version
1817

19-
# Step 3: Clone the repository to your local machine, and install it.
18+
# Step 2: Clone the repository to your local machine for latest version, and install it.
2019
git clone https://github.com/geekan/MetaGPT.git
2120
cd MetaGPT
22-
pip install -e.
21+
pip3 install -e . # or pip3 install metagpt # for stable version
22+
23+
# Step 3: setup your LLM key in the config2.yaml file
24+
mkdir ~/.metagpt
25+
cp config/config2.yaml ~/.metagpt/config2.yaml
26+
vim ~/.metagpt/config2.yaml
27+
28+
# Step 4: run metagpt cli
29+
metagpt "Create a 2048 game in python"
30+
31+
# Step 5 [Optional]: If you want to save the artifacts like diagrams such as quadrant chart, system designs, sequence flow in the workspace, you can execute the step before Step 3. By default, the framework is compatible, and the entire process can be run completely without executing this step.
32+
# If executing, ensure that NPM is installed on your system. Then install mermaid-js. (If you don't have npm in your computer, please go to the Node.js official website to install Node.js https://nodejs.org/ and then you will have npm tool in your computer.)
33+
npm --version
34+
sudo npm install -g @mermaid-js/mermaid-cli
2335
```
2436

2537
**Note:**
@@ -35,7 +47,7 @@ pip install -e.
3547

3648
- don't forget to the configuration for mmdc path in config.yml
3749

38-
```yml
50+
```yaml
3951
mermaid:
4052
puppeteer_config: "./config/puppeteer-config.json"
4153
path: "./node_modules/.bin/mmdc"

โ€Ždocs/install/cli_install_cn.md

+23-10
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,29 @@
1010
### ่ฏฆ็ป†ๅฎ‰่ฃ…
1111

1212
```bash
13-
# ็ฌฌ 1 ๆญฅ๏ผš็กฎไฟๆ‚จ็š„็ณป็ปŸไธŠๅฎ‰่ฃ…ไบ† NPMใ€‚ๅนถไฝฟ็”จnpmๅฎ‰่ฃ…mermaid-js
14-
npm --version
15-
sudo npm install -g @mermaid-js/mermaid-cli
16-
17-
# ็ฌฌ 2 ๆญฅ๏ผš็กฎไฟๆ‚จ็š„็ณป็ปŸไธŠๅฎ‰่ฃ…ไบ† Python 3.9+ใ€‚ๆ‚จๅฏไปฅไฝฟ็”จไปฅไธ‹ๅ‘ฝไปค่ฟ›่กŒๆฃ€ๆŸฅ๏ผš
13+
# ๆญฅ้ชค 1: ็กฎไฟๆ‚จ็š„็ณป็ปŸๅฎ‰่ฃ…ไบ† Python 3.9 ๆˆ–ๆ›ด้ซ˜็‰ˆๆœฌใ€‚ๆ‚จๅฏไปฅไฝฟ็”จไปฅไธ‹ๅ‘ฝไปคๆฅๆฃ€ๆŸฅ:
14+
# ๆ‚จๅฏไปฅไฝฟ็”จ conda ๆฅๅˆๅง‹ๅŒ–ไธ€ไธชๆ–ฐ็š„ Python ็Žฏๅขƒ
15+
# conda create -n metagpt python=3.9
16+
# conda activate metagpt
1817
python3 --version
1918

20-
# ็ฌฌ 3 ๆญฅ๏ผšๅ…‹้š†ไป“ๅบ“ๅˆฐๆ‚จ็š„ๆœฌๅœฐๆœบๅ™จ๏ผŒๅนถ่ฟ›่กŒๅฎ‰่ฃ…ใ€‚
19+
# ๆญฅ้ชค 2: ๅ…‹้š†ไป“ๅบ“ๅˆฐๆ‚จ็š„ๆœฌๅœฐๆœบๅ™จไปฅ่Žทๅ–ๆœ€ๆ–ฐ็‰ˆๆœฌ๏ผŒๅนถๅฎ‰่ฃ…ๅฎƒใ€‚
2120
git clone https://github.com/geekan/MetaGPT.git
2221
cd MetaGPT
23-
pip install -e.
22+
pip3 install -e . # ๆˆ– pip3 install metagpt # ็”จไบŽ็จณๅฎš็‰ˆๆœฌ
23+
24+
# ๆญฅ้ชค 3: ๅœจ config2.yaml ๆ–‡ไปถไธญ่ฎพ็ฝฎๆ‚จ็š„ LLM ๅฏ†้’ฅ
25+
mkdir ~/.metagpt
26+
cp config/config2.yaml ~/.metagpt/config2.yaml
27+
vim ~/.metagpt/config2.yaml
28+
29+
# ๆญฅ้ชค 4: ่ฟ่กŒ metagpt ๅ‘ฝไปค่กŒ็•Œ้ข
30+
metagpt "็”จ python ๅˆ›ๅปบไธ€ไธช 2048 ๆธธๆˆ"
31+
32+
# ๆญฅ้ชค 5 [ๅฏ้€‰]: ๅฆ‚ๆžœๆ‚จๆƒณไฟๅญ˜่ฏธๅฆ‚่ฑก้™ๅ›พใ€็ณป็ปŸ่ฎพ่ฎกใ€ๅบๅˆ—ๆต็ญ‰ๅ›พ่กจไฝœไธบๅทฅไฝœ็ฉบ้—ด็š„ๅทฅไปถ๏ผŒๆ‚จๅฏไปฅๅœจๆ‰ง่กŒๆญฅ้ชค 3 ไน‹ๅ‰ๆ‰ง่กŒๆญคๆญฅ้ชคใ€‚้ป˜่ฎคๆƒ…ๅ†ตไธ‹๏ผŒ่ฏฅๆก†ๆžถๆ˜ฏๅ…ผๅฎน็š„๏ผŒๆ•ดไธช่ฟ‡็จ‹ๅฏไปฅๅฎŒๅ…จไธๆ‰ง่กŒๆญคๆญฅ้ชค่€Œ่ฟ่กŒใ€‚
33+
# ๅฆ‚ๆžœๆ‰ง่กŒๆญคๆญฅ้ชค๏ผŒ่ฏท็กฎไฟๆ‚จ็š„็ณป็ปŸไธŠๅฎ‰่ฃ…ไบ† NPMใ€‚็„ถๅŽๅฎ‰่ฃ… mermaid-jsใ€‚๏ผˆๅฆ‚ๆžœๆ‚จ็š„่ฎก็ฎ—ๆœบไธญๆฒกๆœ‰ npm๏ผŒ่ฏท่ฎฟ้—ฎ Node.js ๅฎ˜ๆ–น็ฝ‘็ซ™ https://nodejs.org/ ๅฎ‰่ฃ… Node.js๏ผŒ็„ถๅŽๆ‚จๅฐ†ๅœจ่ฎก็ฎ—ๆœบไธญๆ‹ฅๆœ‰ npm ๅทฅๅ…ทใ€‚๏ผ‰
34+
npm --version
35+
sudo npm install -g @mermaid-js/mermaid-cli
2436
```
2537

2638
**ๆณจๆ„๏ผš**
@@ -33,11 +45,12 @@ pip install -e.
3345
npm install @mermaid-js/mermaid-cli
3446
```
3547

36-
- ไธ่ฆๅฟ˜่ฎฐๅœจconfig.ymlไธญไธบmmdc้…็ฝฎ้…็ฝฎ๏ผŒ
48+
- ไธ่ฆๅฟ˜่ฎฐๅœจconfig.ymlไธญไธบmmdc้…็ฝฎ
3749

3850
```yml
39-
puppeteer_config: "./config/puppeteer-config.json"
40-
path: "./node_modules/.bin/mmdc"
51+
mermaid:
52+
puppeteer_config: "./config/puppeteer-config.json"
53+
path: "./node_modules/.bin/mmdc"
4154
```
4255

4356
- ๅฆ‚ๆžœ`pip install -e.`ๅคฑ่ดฅๅนถๆ˜พ็คบ้”™่ฏฏ`[Errno 13] Permission denied: '/usr/local/lib/python3.11/dist-packages/test-easy-install-13129.write-test'`๏ผŒ่ฏทๅฐ่ฏ•ไฝฟ็”จ`pip install -e. --user`่ฟ่กŒใ€‚

โ€Ždocs/tutorial/usage.md

+24-25
Original file line numberDiff line numberDiff line change
@@ -34,29 +34,28 @@ metagpt "Write a cli snake game based on pygame"
3434
### Usage
3535

3636
```
37-
NAME
38-
metagpt - We are a software startup comprised of AI. By investing in us, you are empowering a future filled with limitless possibilities.
39-
40-
SYNOPSIS
41-
metagpt IDEA <flags>
42-
43-
DESCRIPTION
44-
We are a software startup comprised of AI. By investing in us, you are empowering a future filled with limitless possibilities.
45-
46-
POSITIONAL ARGUMENTS
47-
IDEA
48-
Type: str
49-
Your innovative idea, such as "Creating a snake game."
50-
51-
FLAGS
52-
--investment=INVESTMENT
53-
Type: float
54-
Default: 3.0
55-
As an investor, you have the opportunity to contribute a certain dollar amount to this AI company.
56-
--n_round=N_ROUND
57-
Type: int
58-
Default: 5
59-
60-
NOTES
61-
You can also use flags syntax for POSITIONAL ARGUMENTS
37+
Usage: metagpt [OPTIONS] [IDEA]
38+
39+
Start a new project.
40+
41+
โ•ญโ”€ Arguments โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ
42+
โ”‚ idea [IDEA] Your innovative idea, such as 'Create a 2048 game.' [default: None] โ”‚
43+
โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ
44+
โ•ญโ”€ Options โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ
45+
โ”‚ --investment FLOAT Dollar amount to invest in the AI company. [default: 3.0] โ”‚
46+
โ”‚ --n-round INTEGER Number of rounds for the simulation. [default: 5] โ”‚
47+
โ”‚ --code-review --no-code-review Whether to use code review. [default: code-review] โ”‚
48+
โ”‚ --run-tests --no-run-tests Whether to enable QA for adding & running tests. [default: no-run-tests] โ”‚
49+
โ”‚ --implement --no-implement Enable or disable code implementation. [default: implement] โ”‚
50+
โ”‚ --project-name TEXT Unique project name, such as 'game_2048'. โ”‚
51+
โ”‚ --inc --no-inc Incremental mode. Use it to coop with existing repo. [default: no-inc] โ”‚
52+
โ”‚ --project-path TEXT Specify the directory path of the old version project to fulfill the incremental requirements. โ”‚
53+
โ”‚ --reqa-file TEXT Specify the source file name for rewriting the quality assurance code. โ”‚
54+
โ”‚ --max-auto-summarize-code INTEGER The maximum number of times the 'SummarizeCode' action is automatically invoked, with -1 indicating unlimited. This parameter is used for debugging the โ”‚
55+
โ”‚ workflow. โ”‚
56+
โ”‚ [default: 0] โ”‚
57+
โ”‚ --recover-path TEXT recover the project from existing serialized storage [default: None] โ”‚
58+
โ”‚ --init-config --no-init-config Initialize the configuration file for MetaGPT. [default: no-init-config] โ”‚
59+
โ”‚ --help Show this message and exit. โ”‚
60+
โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ
6261
```

โ€Ždocs/tutorial/usage_cn.md

+24-25
Original file line numberDiff line numberDiff line change
@@ -30,29 +30,28 @@ metagpt "ๅ†™ไธ€ไธชๅŸบไบŽpygame็š„ๅ‘ฝไปค่กŒ่ดชๅƒ่›‡"
3030
### ไฝฟ็”จ
3131

3232
```
33-
ๅ็งฐ
34-
metagpt - ๆˆ‘ไปฌๆ˜ฏไธ€ๅฎถAI่ฝฏไปถๅˆ›ไธšๅ…ฌๅธใ€‚้€š่ฟ‡ๆŠ•่ต„ๆˆ‘ไปฌ๏ผŒๆ‚จๅฐ†่ต‹่ƒฝไธ€ไธชๅ……ๆปกๆ— ้™ๅฏ่ƒฝ็š„ๆœชๆฅใ€‚
35-
36-
ๆฆ‚่ฆ
37-
metagpt IDEA <flags>
38-
39-
ๆ่ฟฐ
40-
ๆˆ‘ไปฌๆ˜ฏไธ€ๅฎถAI่ฝฏไปถๅˆ›ไธšๅ…ฌๅธใ€‚้€š่ฟ‡ๆŠ•่ต„ๆˆ‘ไปฌ๏ผŒๆ‚จๅฐ†่ต‹่ƒฝไธ€ไธชๅ……ๆปกๆ— ้™ๅฏ่ƒฝ็š„ๆœชๆฅใ€‚
41-
42-
ไฝ็ฝฎๅ‚ๆ•ฐ
43-
IDEA
44-
็ฑปๅž‹: str
45-
ๆ‚จ็š„ๅˆ›ๆ–ฐๆƒณๆณ•๏ผŒไพ‹ๅฆ‚"ๅ†™ไธ€ไธชๅ‘ฝไปค่กŒ่ดชๅƒ่›‡ใ€‚"
46-
47-
ๆ ‡ๅฟ—
48-
--investment=INVESTMENT
49-
็ฑปๅž‹: float
50-
้ป˜่ฎคๅ€ผ: 3.0
51-
ไฝœไธบๆŠ•่ต„่€…๏ผŒๆ‚จๆœ‰ๆœบไผšๅ‘่ฟ™ๅฎถAIๅ…ฌๅธๆŠ•ๅ…ฅไธ€ๅฎš็š„็พŽๅ…ƒ้‡‘้ขใ€‚
52-
--n_round=N_ROUND
53-
็ฑปๅž‹: int
54-
้ป˜่ฎคๅ€ผ: 5
55-
56-
ๅค‡ๆณจ
57-
ๆ‚จไนŸๅฏไปฅ็”จ`ๆ ‡ๅฟ—`็š„่ฏญๆณ•๏ผŒๆฅๅค„็†`ไฝ็ฝฎๅ‚ๆ•ฐ`
33+
Usage: metagpt [OPTIONS] [IDEA]
34+
35+
Start a new project.
36+
37+
โ•ญโ”€ Arguments โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ
38+
โ”‚ idea [IDEA] Your innovative idea, such as 'Create a 2048 game.' [default: None] โ”‚
39+
โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ
40+
โ•ญโ”€ Options โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ
41+
โ”‚ --investment FLOAT Dollar amount to invest in the AI company. [default: 3.0] โ”‚
42+
โ”‚ --n-round INTEGER Number of rounds for the simulation. [default: 5] โ”‚
43+
โ”‚ --code-review --no-code-review Whether to use code review. [default: code-review] โ”‚
44+
โ”‚ --run-tests --no-run-tests Whether to enable QA for adding & running tests. [default: no-run-tests] โ”‚
45+
โ”‚ --implement --no-implement Enable or disable code implementation. [default: implement] โ”‚
46+
โ”‚ --project-name TEXT Unique project name, such as 'game_2048'. โ”‚
47+
โ”‚ --inc --no-inc Incremental mode. Use it to coop with existing repo. [default: no-inc] โ”‚
48+
โ”‚ --project-path TEXT Specify the directory path of the old version project to fulfill the incremental requirements. โ”‚
49+
โ”‚ --reqa-file TEXT Specify the source file name for rewriting the quality assurance code. โ”‚
50+
โ”‚ --max-auto-summarize-code INTEGER The maximum number of times the 'SummarizeCode' action is automatically invoked, with -1 indicating unlimited. This parameter is used for debugging the โ”‚
51+
โ”‚ workflow. โ”‚
52+
โ”‚ [default: 0] โ”‚
53+
โ”‚ --recover-path TEXT recover the project from existing serialized storage [default: None] โ”‚
54+
โ”‚ --init-config --no-init-config Initialize the configuration file for MetaGPT. [default: no-init-config] โ”‚
55+
โ”‚ --help Show this message and exit. โ”‚
56+
โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ
5857
```

0 commit comments

Comments
ย (0)