This commit is contained in:
ChenVadder 2023-08-02 23:14:46 +08:00
parent 5bdf07c721
commit c64b3d6e9c
3 changed files with 6 additions and 8 deletions

View file

@ -140,10 +140,9 @@ # Use code review will cost more money, but will opt for better code quality.
After running the script, you can find your new project in the `workspace/` directory.
### Preference of Platform or Tool
As the project becomes more complete, the cost of generating the outputs will also gradually increase. Therefore, it is recommended to explicitly specify the platform or tools you want to use when describing the requirements.
You can tell which platform or tool you want to use when stating your requirements.
```shell
python startup.py "Write a cli snake game that runs on Windows"
python startup.py "Write a cli snake game based on pygame"
```
### Usage

View file

@ -77,11 +77,11 @@ # 开启code review模式会会花费更多的money, 但是会提升代码质量
运行脚本后,您可以在 `workspace/` 目录中找到您的新项目。
### 平台或工具的倾向性
随着项目越来越完善,每一次生成项目的成本也会逐步上升,所以建议在阐述需求时显式地告知想要使用的平台或工具。
可以在阐述需求时告知想要使用的平台或工具。
例如:
```shell
python startup.py "写一个能够在Windows上运行的命令行贪吃蛇"
python startup.py "写一个基于pygame的命令行贪吃蛇"
```
### 代码实现

View file

@ -122,10 +122,9 @@ # コードレビューを利用すれば、コストはかかるが、より良
スクリプトを実行すると、`workspace/` ディレクトリに新しいプロジェクトが見つかります。
### プラットフォームまたはツールの設定
プロジェクトが完成するにつれて、生成される各プロジェクトのコストは徐々に増加するため、要件を説明する際に使用するプラットフォームやツールを明示的に伝えることをお勧めします。例:
要件を述べるときに、どのプラットフォームまたはツールを使用するかを指定できます。
```shell
python startup.py "Write a cli snake game that runs on Windows"
python startup.py "Write a cli snake game based on pygame"
```
### 使用方法