Quick Start
Go from zero to a fully managed project in less than 5 minutes.
1. Initialize Your Project
Scaffold a new project with a specific architecture. This creates the necessary components and base issues.
tasker init . --project-name "Ecommerce App" --architecture microservices
2. Create Components
Define the high-level services of your project.
tasker component create "auth-service" -p "Ecommerce App"
tasker component create "order-service" -p "Ecommerce App"
3. Create Your First Issues
tasker issue create "Implement Login" -c auth-service -p HIGH
tasker issue create "Database Setup" -c auth-service -p CRITICAL
4. Link Dependencies
Make sure everyone knows that Login depends on the Database.
tasker dependency add login_id --depends-on db_setup_id
5. Visualize the Graph
Check the status of your project's dependency health.
tasker status
Or use the built-in Vue Kanban board at http://localhost:8080.
6. Leverage the Agent
Let Tasker analyze your next steps.
tasker agent context --issue login_id