From 1bf4a6eb358e9fe1a71017f7decc142a5604feb9 Mon Sep 17 00:00:00 2001 From: Hasik Choi Date: Thu, 21 May 2026 22:38:35 +0900 Subject: [PATCH] docs: fix directory hierarchy in README examples (#2639) --- README.md | 84 ++++++++++++++++++++++++++++--------------------------- 1 file changed, 43 insertions(+), 41 deletions(-) diff --git a/README.md b/README.md index e954a195f..7d916a1e3 100644 --- a/README.md +++ b/README.md @@ -400,23 +400,24 @@ The produced specification should contain a set of user stories and functional r At this stage, your project folder contents should resemble the following: ```text -└── .specify - ├── memory - │ └── constitution.md - ├── scripts - │ └── bash - │ ├── check-prerequisites.sh - │ ├── common.sh - │ ├── create-new-feature.sh - │ ├── setup-plan.sh - │ └── setup-tasks.sh - ├── specs - │ └── 001-create-taskify - │ └── spec.md - └── templates - ├── plan-template.md - ├── spec-template.md - └── tasks-template.md +. +├── .specify +│ ├── memory +│ │ └── constitution.md +│ ├── scripts +│ │ └── bash +│ │ ├── check-prerequisites.sh +│ │ ├── common.sh +│ │ ├── create-new-feature.sh +│ │ ├── setup-plan.sh +│ │ └── setup-tasks.sh +│ └── templates +│ ├── plan-template.md +│ ├── spec-template.md +│ └── tasks-template.md +└── specs + └── 001-create-taskify + └── spec.md ``` ### **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 ```text . ├── CLAUDE.md -├── memory -│ └── constitution.md -├── scripts -│ └── bash -│ ├── check-prerequisites.sh -│ ├── common.sh -│ ├── create-new-feature.sh -│ ├── setup-plan.sh -│ └── setup-tasks.sh -├── specs -│ └── 001-create-taskify -│ ├── contracts -│ │ ├── api-spec.json -│ │ └── signalr-spec.md -│ ├── data-model.md -│ ├── plan.md -│ ├── quickstart.md -│ ├── research.md -│ └── spec.md -└── templates - ├── CLAUDE-template.md - ├── plan-template.md - ├── spec-template.md - └── tasks-template.md +├── .specify +│ ├── memory +│ │ └── constitution.md +│ ├── scripts +│ │ └── bash +│ │ ├── check-prerequisites.sh +│ │ ├── common.sh +│ │ ├── create-new-feature.sh +│ │ ├── setup-plan.sh +│ │ └── setup-tasks.sh +│ └── templates +│ ├── CLAUDE-template.md +│ ├── plan-template.md +│ ├── spec-template.md +│ └── tasks-template.md +└── specs + └── 001-create-taskify + ├── contracts + │ ├── api-spec.json + │ └── signalr-spec.md + ├── data-model.md + ├── plan.md + ├── quickstart.md + ├── research.md + └── spec.md ``` 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).