blob: a893b662a9aba2695d965bf0a3d24fef99d44480 [file] [log] [blame] [view]
iomodo57910372025-07-25 18:31:40 +04001Example task file (tasks/example-task-file.md):
2
3---
4id: task-1704067200-abc123
5title: Implement user authentication
6description: Add login/logout functionality with JWT tokens
7owner_id: john.doe
8owner_name: John Doe
9status: in_progress
10priority: high
11created_at: 2024-01-01T10:00:00Z
12updated_at: 2024-01-01T15:30:00Z
13due_date: 2024-01-08T17:00:00Z
14completed_at: null
15archived_at: null
16---
17
18# Task Description
19
20Add login/logout functionality with JWT tokens for the web application.
21
22## Requirements
23
24- User registration and login forms
25- JWT token generation and validation
26- Password hashing with bcrypt
27- Session management
28- Logout functionality
29
30## Notes
31
32- Consider using bcrypt for password hashing
33- Implement refresh token mechanism
34- Add rate limiting for login attempts