npx claudepluginhub komluk/scaffolding --plugin scaffoldingThis skill uses the workspace's default tool permissions.
Guide for creating `design.md` (WHAT + HOW) and `tasks.md` (implementation checklist).
Integrates Mem0 persistent memory for Claude Code tasks using MCP tools. Retrieves relevant memories on new tasks, stores learnings like decisions and strategies, captures session states.
Creates web-based slidedecks for developers using Slidev with Markdown, Vue components, code highlighting, animations, interactive demos, and presenter notes. Use for technical presentations, conference talks, code walkthroughs, and workshops.
Guide for creating design.md (WHAT + HOW) and tasks.md (implementation checklist).
Read {specs_path}/proposal.md first. Reference its capabilities and impact sections.
Path Enforcement: The specs_path MUST be .scaffolding/conversations/{UUID}/specs/ where {UUID} is a valid UUID (format: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx). NEVER use descriptive folder names.
Write to: {specs_path}/design.md
| Section | Purpose | Format |
|---|---|---|
| Context | Background, current state, constraints | Prose |
| Goals / Non-Goals | Scope boundaries | Bullet lists |
| Specifications | Requirements + scenarios | GIVEN/WHEN/THEN |
| Decisions | Technical choices + rationale | Decision: Why X over Y |
| Risks / Trade-offs | Known limitations | [Risk] -> Mitigation |
| Migration Plan | Deploy + rollback steps | Checklist (if applicable) |
| Open Questions | Unresolved items | Numbered list |
### Requirement: user-session-timeout
The system SHALL terminate idle sessions after 30 minutes.
#### Scenario: session expires after inactivity
- **GIVEN** a user has an active session
- **WHEN** no activity occurs for 30 minutes
- **THEN** the session is invalidated and user is redirected to login
Rules:
## Decisions
### Use Redis for session storage
**Alternatives**: PostgreSQL, in-memory
**Rationale**: Sub-millisecond lookups, built-in TTL, already in stack
Include in all designs:
pytest; Frontend: npm run validateWrite to: {specs_path}/tasks.md
| Rule | Detail |
|---|---|
Group by ## N. Group Name | Numbered headings |
| Checkbox per task | - [ ] N.M Task description |
| Dependency order | Tasks ordered by what must come first |
| File paths | Include target file path in task |
| Acceptance criteria | Each task independently verifiable |
| Validation step | Include pytest / npm run validate per group |
| Size | Each task completable in one session |
## 1. Setup
- [ ] 1.1 Create `./backend` module structure
- [ ] 1.2 Add dependencies to `requirements.txt`
## 2. Core Implementation
- [ ] 2.1 Implement service in `./backend/service.py`
- [ ] 2.2 Add Pydantic schemas in `./backend/schemas.py`
- [ ] 2.3 Add router in `./backend/router.py`
- [ ] 2.4 Run validation: `pytest`
## 3. Frontend + Tests
- [ ] 3.1 Add types to `app/frontend/src/types/index.ts`
- [ ] 3.2 Create component, add unit + integration tests
- [ ] 3.3 Run validation: `npm run validate && pytest`
- [ ])