Merge pull request #573 from tinesoft/fix/docs

docs: fix the paths of generated files (moved under a `.specify/` fol…
This commit is contained in:
Den Delimarsky
2025-09-25 12:40:19 -07:00
committed by GitHub

View File

@@ -337,7 +337,7 @@ The first step should be establishing your project's governing principles using
/constitution Create principles focused on code quality, testing standards, user experience consistency, and performance requirements. Include governance for how these principles should guide technical decisions and implementation choices. /constitution Create principles focused on code quality, testing standards, user experience consistency, and performance requirements. Include governance for how these principles should guide technical decisions and implementation choices.
``` ```
This step creates or updates the `/memory/constitution.md` file with your project's foundational guidelines that the AI agent will reference during specification, planning, and implementation phases. This step creates or updates the `.specify/memory/constitution.md` file with your project's foundational guidelines that the AI agent will reference during specification, planning, and implementation phases.
### **STEP 2:** Create project specifications ### **STEP 2:** Create project specifications
@@ -376,21 +376,22 @@ The produced specification should contain a set of user stories and functional r
At this stage, your project folder contents should resemble the following: At this stage, your project folder contents should resemble the following:
```text ```text
── memory ── .specify
│ └── constitution.md ├── memory
├── scripts │ └── constitution.md
├── check-prerequisites.sh ├── scripts
│ ├── common.sh │ ├── check-prerequisites.sh
│ ├── create-new-feature.sh │ ├── common.sh
│ ├── setup-plan.sh │ ├── create-new-feature.sh
── update-claude-md.sh ── setup-plan.sh
├── specs │ └── update-claude-md.sh
│ └── 001-create-taskify ├── specs
└── spec.md └── 001-create-taskify
└── templates │ └── spec.md
── plan-template.md ── templates
├── spec-template.md ├── plan-template.md
└── tasks-template.md ├── spec-template.md
└── tasks-template.md
``` ```
### **STEP 3:** Functional specification clarification (required before planning) ### **STEP 3:** Functional specification clarification (required before planning)