Skip to content

Commit 6f67dc4

Browse files
committed
docs: fix directory hierarchy in README examples (#2638)
1 parent 51e6a14 commit 6f67dc4

1 file changed

Lines changed: 43 additions & 41 deletions

File tree

README.md

Lines changed: 43 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -400,23 +400,24 @@ The produced specification should contain a set of user stories and functional r
400400
At this stage, your project folder contents should resemble the following:
401401

402402
```text
403-
└── .specify
404-
├── memory
405-
│ └── constitution.md
406-
├── scripts
407-
│ └── bash
408-
│ ├── check-prerequisites.sh
409-
│ ├── common.sh
410-
│ ├── create-new-feature.sh
411-
│ ├── setup-plan.sh
412-
│ └── setup-tasks.sh
413-
├── specs
414-
│ └── 001-create-taskify
415-
│ └── spec.md
416-
└── templates
417-
├── plan-template.md
418-
├── spec-template.md
419-
└── tasks-template.md
403+
.
404+
├── .specify
405+
│ ├── memory
406+
│ │ └── constitution.md
407+
│ ├── scripts
408+
│ │ └── bash
409+
│ │ ├── check-prerequisites.sh
410+
│ │ ├── common.sh
411+
│ │ ├── create-new-feature.sh
412+
│ │ ├── setup-plan.sh
413+
│ │ └── setup-tasks.sh
414+
│ └── templates
415+
│ ├── plan-template.md
416+
│ ├── spec-template.md
417+
│ └── tasks-template.md
418+
└── specs
419+
└── 001-create-taskify
420+
└── spec.md
420421
```
421422

422423
### **STEP 3:** Functional specification clarification (required before planning)
@@ -463,30 +464,31 @@ The output of this step will include a number of implementation detail documents
463464
```text
464465
.
465466
├── CLAUDE.md
466-
├── memory
467-
│ └── constitution.md
468-
├── scripts
469-
│ └── bash
470-
│ ├── check-prerequisites.sh
471-
│ ├── common.sh
472-
│ ├── create-new-feature.sh
473-
│ ├── setup-plan.sh
474-
│ └── setup-tasks.sh
475-
├── specs
476-
│ └── 001-create-taskify
477-
│ ├── contracts
478-
│ │ ├── api-spec.json
479-
│ │ └── signalr-spec.md
480-
│ ├── data-model.md
481-
│ ├── plan.md
482-
│ ├── quickstart.md
483-
│ ├── research.md
484-
│ └── spec.md
485-
└── templates
486-
├── CLAUDE-template.md
487-
├── plan-template.md
488-
├── spec-template.md
489-
└── tasks-template.md
467+
├── .specify
468+
│ ├── memory
469+
│ │ └── constitution.md
470+
│ ├── scripts
471+
│ │ └── bash
472+
│ │ ├── check-prerequisites.sh
473+
│ │ ├── common.sh
474+
│ │ ├── create-new-feature.sh
475+
│ │ ├── setup-plan.sh
476+
│ │ └── setup-tasks.sh
477+
│ └── templates
478+
│ ├── CLAUDE-template.md
479+
│ ├── plan-template.md
480+
│ ├── spec-template.md
481+
│ └── tasks-template.md
482+
└── specs
483+
└── 001-create-taskify
484+
├── contracts
485+
│ ├── api-spec.json
486+
│ └── signalr-spec.md
487+
├── data-model.md
488+
├── plan.md
489+
├── quickstart.md
490+
├── research.md
491+
└── spec.md
490492
```
491493

492494
Check the `research.md` document to ensure that the right tech stack is used, based on your instructions. You can ask Claude Code to refine it if any of the components stand out, or even have it check the locally-installed version of the platform/framework you want to use (e.g., .NET).

0 commit comments

Comments
 (0)