Natural Language Task Parser – turn simple sentences into structured todos.
No more clicking dropdowns or selecting dates manually. Just type like a human.
- Parse tasks like
Submit report by Friday, high priority - Extracts:
- Title
- Due Date (e.g. “tomorrow 5pm”, “next week”)
- Priority (e.g. high, medium, low)
- ShadCN UI for clean input and task list
- Real-time NLP parsing using
date-fns(zero external paid APIs) - Extensible architecture (supports hooks, providers)
pnpm install
pnpm devYou'll need pnpm and Node.js 18+.
pnpm testTests are written using Jest and jsdom.
- React for UI
- TypeScript for type safety
- date-fns for date parsing
- ShadCN for UI components
- Jest for testing
- Tailwind CSS for styling
- Zod for schema validation
- Radix UI for accessible components
- Custom useTasks and useProjects hooks
Submit assignment by tomorrow 5pm priority high{
"title": "Submit assignment",
"dueDate": "2025-05-30T17:00:00.000Z",
"priority": "high"
}Plan trip next week low{
"title": "Plan trip",
"dueDate": "2025-06-05T00:00:00.000Z",
"priority": "low"
}Submit tax docs by 2025-06-10{
"title": "Submit tax docs",
"dueDate": "2025-06-10T00:00:00.000Z",
"priority": "medium"
}Buy groceries{
"title": "Buy groceries",
"dueDate": null,
"priority": "medium"
}src/
components/ # UI Components
context/ # Providers for Projects and Tasks
hooks/ # Custom hooks
pages/ # Pages (Dashboard, Landing, etc.)
utils/ # extractDate, extractPriority
tests/ # Unit tests
- AI Enhancements: Integrate AI for more complex task parsing
- Mobile Support: Responsive design for mobile devices
- Voice Input: Use speech recognition to add tasks
- Add Task Labels: Allow users to categorize tasks
- Calendar sync: Sync tasks with Google Calendar
- Notifications: Reminders for upcoming tasks
- Dark Mode: Theme toggle for dark mode
- Accessibility Improvements: Ensure full keyboard navigation and screen reader support
- Performance Optimizations: Reduce bundle size and improve load times
- Testing Coverage: Increase unit and integration test coverage
- Documentation: Improve README and inline comments
We welcome contributions! Please follow these steps:
- Fork the repository
- Create a new branch for your feature or bug fix
- Make your changes and commit them
- Push to your forked repository
- Create a pull request with a clear description of your changes
- Ensure your code passes all tests and adheres to the project's coding standards
This project is licensed under the MIT License. See the LICENSE file for details.