- English: 08-github-spec-kit-integration.md
- Español: ../es/08-integracion-github-spec-kit.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.
This template recommends GitHub Spec Kit as the main workflow engine.
| Phase | Command | Purpose |
|---|---|---|
| 1 | /speckit.constitution | Define project principles |
| 2 | /speckit.specify | Define what to build |
| 3 | /speckit.plan | Define how to build |
| 4 | /speckit.tasks | Generate executable tasks |
| 5 | /speckit.implement | Execute implementation |
flowchart LR
A["Constitution"] --> B["Specification"]
B --> C["Plan"]
C --> D["Tasks"]
D --> E["Implementation"]
E --> F["Logbook + Refinement"]
uv tool install specify-cli --from git+https://github.com/github/spec-kit.gituvx --from git+https://github.com/github/spec-kit.git specify init <PROJECT_NAME>specify init . --ai codex
# or
specify init --here --ai codexOne-time command alternative:
uvx --from git+https://github.com/github/spec-kit.git specify init . --ai codexIf this template is already available locally, you can bootstrap a project and initialize Spec Kit in one step:
./scripts/init-project-with-spec-kit.sh /path/project codexidea/defines global project intent.specs/stores numbered specifications.bitacora/stores real execution trace.
After Spec Kit commands, always update:
specs/INDEX.md- active spec
history.md bitacora/global/PROJECT_LOG.mdbitacora/diaria/bitacora/handoffs/when pending work exists
Then validate:
./scripts/validate-sdd.sh . --strict
./scripts/check-sdd-gate.sh .- 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"]