🚀 Quick Start Guide¶
This guide will help you get started with shapi in just a few minutes.
Prerequisites¶
- Ollama with Mistral:7b model installed (see Installation Guide)
- Python 3.8 or higher
- Basic familiarity with command line
Your First Architecture¶
-
Start with a simple command:
-
Interactive Mode:
Then type your requirements in the interactive prompt.
Basic Commands¶
Generate Architecture¶
# Basic usage
shapi "Your architecture requirements here"
# Specify output format (default: markdown)
shapi --format json "Your requirements"
# Save output to a file
shapi "Your requirements" > architecture.md
Interactive Shell¶
# Start interactive shell
shapi shell
# In the shell:
> help # Show available commands
> clear # Clear screen
> exit # Exit the shell
Example Workflow¶
-
Define your requirements:
-
Review the generated architecture in the terminal output
-
Generate implementation code:
-
Save the output to a file for future reference:
Advanced Example¶
-
Generate a microservices architecture:
-
Review the generated architecture
-
Refine and iterate:
Next Steps¶
- Explore more features of shapi
- Check out the API Reference for advanced usage
- Review the installation guide for configuration options
Getting Help¶
- Run
shapi --help
for command-line options - Open an issue for bugs or feature requests