init_project
Create project structure and task breakdown using Spec-Driven Development methodology. Input project requirements to generate organized development workflow and file organization.
Instructions
【初始化工程】按照 Spec-Driven Development 方式创建项目结构和任务分解,参考 https://github.com/github/spec-kit
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| input | No | 项目需求描述(可以是文字描述或文件内容) | |
| project_name | No | 项目名称 |
Input Schema (JSON Schema)
{
"properties": {
"input": {
"description": "项目需求描述(可以是文字描述或文件内容)",
"type": "string"
},
"project_name": {
"description": "项目名称",
"type": "string"
}
},
"required": [],
"type": "object"
}