Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion openspec/changes/todo-mvp/design.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Design: Todo MVP

## Status
proposed
pr-created

## Overview
A minimal TODO app: Node.js + Express REST API with an in-memory store,
Expand Down
14 changes: 7 additions & 7 deletions openspec/changes/todo-mvp/tasks.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

## Tasks

- [ ] 1. Initialize Node.js project with package.json (express, supertest, vitest)
- [ ] 2. Create `src/store.js` — in-memory todo store with CRUD methods
- [ ] 3. Create `src/server.js` — Express REST API with all 4 endpoints
- [ ] 4. Create `public/index.html` — simple frontend that calls the API
- [ ] 5. Create `test/api.test.js` — integration tests covering all scenarios from specs/api.md
- [ ] 6. Verify all tests pass with `npm test`
- [ ] 7. Open draft PR with summary, spec reference, changes, and test coverage
- [x] 1. Initialize Node.js project with package.json (express, supertest, vitest)
- [x] 2. Create `src/store.js` — in-memory todo store with CRUD methods
- [x] 3. Create `src/server.js` — Express REST API with all 4 endpoints
- [x] 4. Create `public/index.html` — simple frontend that calls the API
- [x] 5. Create `test/api.test.js` — integration tests covering all scenarios from specs/api.md
- [x] 6. Verify all tests pass with `npm test`
- [x] 7. Open draft PR with summary, spec reference, changes, and test coverage
Loading