intent-engine 0.8.3

A command-line database service for tracking strategic intent, tasks, and events
Documentation
{
    "tasks": [
        {
            "name": "Test Root Task 1",
            "spec": "This is a root task for testing",
            "priority": "high",
            "children": [
                {
                    "name": "Test Child 1.1",
                    "spec": "First child of Root 1",
                    "priority": "medium"
                },
                {
                    "name": "Test Child 1.2",
                    "spec": "Second child of Root 1",
                    "children": [
                        {
                            "name": "Test Grandchild 1.2.1",
                            "spec": "Deeply nested task",
                            "priority": "low"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Test Root Task 2",
            "status": "todo",
            "children": [
                {
                    "name": "Test Child 2.1",
                    "depends_on": [
                        "Test Root Task 1"
                    ]
                }
            ]
        }
    ]
}