Taskfy Documentation
Strategic Plans (JSON Format)
Taskfy allows you to import and export your Strategic Plans as JSON files. This enables you to share your plans, create templates, or back them up.
Plan JSON Structure
{
"id": "unique-plan-id",
"title": "E-commerce Launch",
"goal": "Build a full-stack e-commerce app",
"isPublic": false,
"tasks": [
{
"id": "task-1",
"title": "Setup Repository",
"description": "Initialize Git and Next.js",
"category": "Strategy",
"priority": 2,
"dependsOn": [],
"isCompleted": false
},
{
"id": "task-2",
"title": "Database Schema",
"category": "Execution",
"priority": 2,
"dependsOn": ["task-1"],
"isCompleted": false
}
]
}Importing & Exporting
- Exporting: Go to the Planner tab, open your plan, and click the Export (JSON) button in the header.
- Importing: In the Planner header, click the Import button and select a valid Taskfy JSON file. It will create a new plan in your account.