Skip to content

Commit cc98617

Browse files
committed
release: prepare v1.1.0
1 parent e965f65 commit cc98617

8 files changed

Lines changed: 144 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,50 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
66

77
---
88

9+
## [v1.1.0] — 2026-03-18
10+
11+
### Added
12+
- `packages/sdd-core` as typed reusable SDD logic for workspace, spec, validation, gate, roadmap, status, and logbook operations.
13+
- `packages/sdd-mcp` as a real MCP server with:
14+
- `stdio` transport
15+
- `Streamable HTTP` transport
16+
- 12 operational tools
17+
- static resources plus active project resource templates
18+
- beginner-friendly MCP prompts
19+
- MCP smoke tests for both transports:
20+
- `npm run mcp:smoke`
21+
- `npm run mcp:http:smoke`
22+
- Copy/paste client configuration examples for:
23+
- Cursor
24+
- Claude Code
25+
- Codex
26+
- Root `.mcp.json` so the repository can be connected quickly in project-scoped MCP workflows.
27+
- Bilingual MCP setup guides:
28+
- `docs/en/33-mcp-server-guide.md`
29+
- `docs/es/33-guia-servidor-mcp.md`
30+
- Launch kit docs for diffusion and reuse:
31+
- `docs/en/34-launch-kit.md`
32+
- `docs/es/34-kit-lanzamiento.md`
33+
34+
### Changed
35+
- README and README.es now surface MCP as a first-class entry point with links to setup guides and copy/paste configs.
36+
- MCP tools now expose `outputSchema` and return `structuredContent` for stronger client compatibility.
37+
- Project context is now available through MCP resource templates for:
38+
- `specs/INDEX.md`
39+
- project log
40+
- latest handoff
41+
- project idea
42+
- per-spec documents
43+
44+
### Verified
45+
- `npm run typecheck`
46+
- `npm run build`
47+
- `npm run mcp:smoke`
48+
- `npm run mcp:http:smoke`
49+
- `./scripts/validate-sdd.sh . --strict`
50+
- `./scripts/check-sdd-policy.sh .`
51+
- `./scripts/check-sdd-gate.sh .`
52+
953
## [v1.0.1] — 2026-03-14
1054

1155
### Added

README.es.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</p>
99

1010
<p>
11-
<img src="https://img.shields.io/badge/version-v1.0.1-blue?style=for-the-badge" alt="Version">
11+
<img src="https://img.shields.io/badge/version-v1.1.0-blue?style=for-the-badge" alt="Version">
1212
<a href="./START_HERE_NON_TECH.md"><img src="https://img.shields.io/badge/🧑‍💼_NO_TÉCNICO-Iniciar-green?style=for-the-badge" alt="Inicio no técnico"></a>
1313
<a href="./AI_START_HERE.md"><img src="https://img.shields.io/badge/🤖_INICIO_IA-Abrir-purple?style=for-the-badge" alt="AI Start"></a>
1414
<a href="./QUICKSTART.md"><img src="https://img.shields.io/badge/🚀_QUICKSTART-5_Minutos-ff6b35?style=for-the-badge" alt="Quickstart"></a>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</p>
99

1010
<p>
11-
<img src="https://img.shields.io/badge/version-v1.0.1-blue?style=for-the-badge" alt="Version">
11+
<img src="https://img.shields.io/badge/version-v1.1.0-blue?style=for-the-badge" alt="Version">
1212
<a href="./START_HERE_NON_TECH.md"><img src="https://img.shields.io/badge/🧑‍💼_NON--TECH-Start-green?style=for-the-badge" alt="Non Technical Start"></a>
1313
<a href="./AI_START_HERE.md"><img src="https://img.shields.io/badge/🤖_AI_START-Open-purple?style=for-the-badge" alt="AI Start"></a>
1414
<a href="./QUICKSTART.md"><img src="https://img.shields.io/badge/🚀_QUICKSTART-5_Minutes-ff6b35?style=for-the-badge" alt="Quickstart"></a>

docs/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ flowchart LR
4646
- Workflow: [EN](./en/02-workflow.md) | [ES](./es/02-flujo-de-trabajo.md)
4747
- Spec Kit integration: [EN](./en/08-github-spec-kit-integration.md) | [ES](./es/08-integracion-github-spec-kit.md)
4848
- MCP server guide: [EN](./en/33-mcp-server-guide.md) | [ES](./es/33-guia-servidor-mcp.md)
49+
- Launch kit: [EN](./en/34-launch-kit.md) | [ES](./es/34-kit-lanzamiento.md)
4950
- Continuous refinement: [EN](./en/11-continuous-refinement.md) | [ES](./es/11-refinamiento-continuo.md)
5051
- Quality checklists: [EN](./en/21-quality-checklists-by-stage.md) | [ES](./es/21-checklists-calidad-por-etapa.md)
5152

@@ -55,8 +56,8 @@ flowchart LR
5556
- Validated prompt bank: [EN](./en/26-validated-prompt-bank.md) | [ES](./es/26-banco-prompts-validados.md)
5657

5758
## Full index / Índice completo
58-
- EN docs list: `docs/en/00` to `docs/en/31`
59-
- ES docs list: `docs/es/00` to `docs/es/31`
59+
- EN docs list: `docs/en/00` to `docs/en/34`
60+
- ES docs list: `docs/es/00` to `docs/es/34`
6061

6162
## Documentation audits / Auditorías de documentación
6263
- EN: [32-documentation-audit-2026-03-14](./en/32-documentation-audit-2026-03-14.md)

docs/en/34-launch-kit.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Launch Kit
2+
3+
## Purpose
4+
5+
This page stores short launch-ready copy for diffusion of the framework.
6+
7+
## Short update
8+
9+
```text
10+
Spec-Driven Development Template now includes a real MCP server.
11+
12+
New in v1.1.0:
13+
- local `sdd-mcp` server
14+
- stdio + Streamable HTTP
15+
- copy-paste configs for Cursor, Claude Code, and Codex
16+
- active project resources for idea, specs, logbook, and handoffs
17+
18+
Repository:
19+
https://github.com/juanklagos/spec-driven-development-template
20+
```
21+
22+
## LinkedIn post
23+
24+
```text
25+
I just shipped v1.1.0 of my Spec-Driven Development Template.
26+
27+
The goal is simple: reduce the friction of starting real projects with SDD and make AI assistants follow a clean, repeatable flow.
28+
29+
New in this version:
30+
- real MCP server support
31+
- local `sdd-mcp` for operational SDD workflows
32+
- stdio + Streamable HTTP
33+
- copy-paste configs for Cursor, Claude Code, and Codex
34+
- active project resources for idea, specs, roadmap, status, logbook, and handoffs
35+
36+
Repository:
37+
https://github.com/juanklagos/spec-driven-development-template
38+
39+
This is meant to help teams and solo builders move from idea -> spec -> plan -> tasks -> validation with less ambiguity and better traceability.
40+
```
41+
42+
## Short release note
43+
44+
```text
45+
v1.1.0 adds a real MCP layer to the SDD framework: typed core logic, local MCP server, structured tool outputs, active project resources, HTTP transport, and client-ready configs.
46+
```

docs/es/34-kit-lanzamiento.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Kit de lanzamiento
2+
3+
## Propósito
4+
5+
Esta página guarda copy corto y reutilizable para la difusión del framework.
6+
7+
## Actualización corta
8+
9+
```text
10+
Spec-Driven Development Template ahora incluye un servidor MCP real.
11+
12+
Nuevo en v1.1.0:
13+
- servidor local `sdd-mcp`
14+
- stdio + Streamable HTTP
15+
- configuraciones copy/paste para Cursor, Claude Code y Codex
16+
- resources del proyecto activo para idea, specs, bitácora y handoffs
17+
18+
Repositorio:
19+
https://github.com/juanklagos/spec-driven-development-template
20+
```
21+
22+
## Post para LinkedIn
23+
24+
```text
25+
Acabo de publicar la versión v1.1.0 de mi Spec-Driven Development Template.
26+
27+
El objetivo es simple: reducir la fricción de iniciar proyectos reales con SDD y lograr que los asistentes de IA sigan un flujo limpio y repetible.
28+
29+
Nuevo en esta versión:
30+
- soporte MCP real
31+
- `sdd-mcp` local para flujos operativos de SDD
32+
- stdio + Streamable HTTP
33+
- configuraciones copy/paste para Cursor, Claude Code y Codex
34+
- resources del proyecto activo para idea, specs, roadmap, estado, bitácora y handoffs
35+
36+
Repositorio:
37+
https://github.com/juanklagos/spec-driven-development-template
38+
39+
Esto está pensado para ayudar a equipos y builders individuales a pasar de idea -> spec -> plan -> tasks -> validación con menos ambigüedad y mejor trazabilidad.
40+
```
41+
42+
## Nota corta de release
43+
44+
```text
45+
v1.1.0 agrega una capa MCP real al framework SDD: core tipado, servidor MCP local, salidas estructuradas, resources del proyecto activo, transporte HTTP y configuraciones listas para clientes.
46+
```

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "spec-driven-development-template",
33
"private": true,
4-
"version": "1.0.1",
4+
"version": "1.1.0",
55
"type": "module",
66
"workspaces": [
77
"packages/*"

0 commit comments

Comments
 (0)