Quick Start
This guide will help you get up and running with the MARY CLI quickly.
Basic Commands
After installing the MARY CLI, you can use these commands to get started:
Check Available Commands
mary help
This will display all available commands and their descriptions.
Create a New Project
mary init my-project
This command initializes a new MARY project in the my-project
directory with a default configuration.
Configure Your Project
mary config
This interactive command helps you set up your project configuration.
Working with Tasks
MARY CLI enables efficient task management:
# Create a new task
mary task create "Implement user authentication"
# List all tasks
mary task list
# Mark a task as completed
mary task complete <task-id>
Next Steps
Now that you're familiar with the basic commands, refer to the official CLI documentation on GitHub for detailed information on all available commands and options.