Review Shared Context Engineering plans and identify the next ready task.
100
100%
Does it follow best practices?
Impact
Pending
No eval scenarios have been run
Passed
No known issues
context/plans/.context/ is missing, ask once: "context/ is missing. Bootstrap SCE baseline now?"
sce-bootstrap-context and continue.context/.context/context-map.md, context/overview.md, and context/glossary.md before broad exploration.SCE plans are Markdown files stored in context/plans/. Tasks are tracked as checkboxes:
# Plan: Add user authentication
## Tasks
- [x] Scaffold auth module
- [x] Add password hashing utility
- [ ] Implement login endpoint <- next task (first unchecked)
- [ ] Write integration tests
- [ ] Update context/current-state.mdThe first unchecked - [ ] item is the next task to review and prepare.
context/plans/ as active execution artifacts; completed plans are disposable and not a durable context source.context/decisions/ instead of completed plan files.Produce a structured readiness summary after review:
## Plan Review - [plan filename]
**Completed tasks:** 2 of 5
**Next task:** Implement login endpoint
**Acceptance criteria:**
- POST /auth/login returns JWT on success
- Returns 401 on invalid credentials
**Issues found:**
- Blocker: JWT secret source not specified (env var? config file?)
- Ambiguity: Should failed attempts be rate-limited in this task or a later one?
**ready_for_implementation: no**
**Required decisions before proceeding:**
1. Confirm JWT secret source
2. Confirm rate-limiting scopeWhen all issues are resolved:
**ready_for_implementation: yes**
Proceeding with: Implement login endpointready_for_implementation: yes|no.sce-bootstrap-context - creates the context/ baseline required by this skill