# skill-agentic-intent-parsing > Parses natural language strings into structured Todo commands. - Author: Murad Hasil - Repository: Murad-Hasil/evolution-of-todo - Version: 20260125022205 - Stars: 0 - Forks: 0 - Last Updated: 2026-02-06 - Source: https://github.com/Murad-Hasil/evolution-of-todo - Web: https://mule.run/skillshub/@@Murad-Hasil/evolution-of-todo~skill-agentic-intent-parsing:20260125022205 --- --- name: skill-agentic-intent-parsing description: Parses natural language strings into structured Todo commands. --- # Agentic Intent Parsing ## Instructions - Use LLM capabilities to extract 'Task Name', 'Due Date', and 'Priority' from raw text. - Map phrases like "do it tomorrow" to actual ISO dates. - Integrate with OpenAI Agents SDK. ## Examples User: "Remind me to buy milk tomorrow at 5pm." Output: { "action": "add", "task": "buy milk", "due": "2025-12-31T17:00:00" }