24 lines
618 B
Markdown
24 lines
618 B
Markdown
---
|
|
description: Create a specification and store it in spec.md.
|
|
---
|
|
|
|
## User Input
|
|
|
|
```text
|
|
$ARGUMENTS
|
|
```
|
|
|
|
## Outline
|
|
|
|
1. **Ask the user** for the feature directory path (e.g., `specs/my-feature`). Do not proceed until provided.
|
|
|
|
2. Create the directory and write `.specify/feature.json`:
|
|
```json
|
|
{ "feature_directory": "<feature_directory>" }
|
|
```
|
|
|
|
3. Create a specification from the user input and store it in `<feature_directory>/spec.md`.
|
|
- Overview, functional requirements, user scenarios, success criteria
|
|
- Every requirement must be testable
|
|
- Make informed defaults for unspecified details
|