- English: 02-workflow.md
- Español: ../es/02-flujo-de-trabajo.md
Use this when you are not technical and want the AI to do setup + guidance end-to-end:
Using https://github.com/juanklagos/spec-driven-development-template, create everything needed to carry out my project end-to-end.
My project is: [describe your project in plain language].
If my project is new, initialize it with this template and GitHub Spec Kit.
If my project already exists, adapt it to idea/specs/bitacora without breaking current behavior.
Guide me step by step for my level (beginner/intermediate/advanced), using simple language.
Do not skip specification, plan, tasks, refinement trace, logbook, and validation.
| Step | Action | Outcome |
|---|---|---|
| 1 | Define idea | Clear project direction |
| 2 | Create specification | Defined scope |
| 3 | Plan and split tasks | Structured execution |
| 4 | Implement | Real deliverable |
| 5 | Update logbook | Full traceability |
| 6 | Refine | Continuous improvement |
flowchart LR
A["Idea"] --> B["Specification"]
B --> C["Plan"]
C --> D["Tasks"]
D --> E["Implementation"]
E --> F["Logbook"]
F --> G["Refinement"]
G --> B
Complete idea/IDEA_GENERAL.md.
Create a numbered folder in specs/.
Example:
specs/001-authentication/
spec.mdplan.mdtasks.mdresearch.mdhistory.mdcontracts/when needed
Implement tasks from tasks.md.
Update:
bitacora/global/PROJECT_LOG.mdbitacora/diaria/YYYY-MM-DD.mdbitacora/handoffs/when pending work remains
If ideas or requirements change, follow:
docs/en/11-continuous-refinement.md
- Start from a simple one-paragraph project description.
- Ask the AI to confirm the active spec before coding.
- Close every session with validation and a clear next step.
flowchart LR
A["Project idea"] --> B["Spec approved"]
B --> C["Plan aligned"]
C --> D["Tasks prioritized"]
D --> E["Implementation"]
E --> F["Validation + Logbook"]