-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
Description
Description
Implement template system for:
- Canvas templates
- Document templates
- Team templates
- Community templates
- Template sharing
Features
- Pre-made templates
- Custom template creation
- Template categories
- Template preview
- One-click instantiation
- Template marketplace
- Template versioning
Acceptance Criteria
- Create templates database table
- Build template browser UI
- Implement template creation
- Add template categories
- Create template preview
- Implement instantiation from template
- Add template sharing
- Create template marketplace
- Implement template search
- Add template ratings/reviews
Template Categories
- Design Systems
- Wireframes
- Flowcharts
- Presentations
- Project Plans
- Research Documents
- Meeting Notes
- Brainstorm Boards
Database Schema
CREATE TABLE templates (
id VARCHAR(255) PRIMARY KEY,
name VARCHAR(255),
description TEXT,
category VARCHAR(50),
content JSON,
createdBy VARCHAR(255),
isPublic BOOLEAN,
downloads INT,
rating DECIMAL(2,1),
createdAt DATETIME
);Type
Feature
Priority
Medium - Improves onboarding