Generate a Beanie document model with indexes, validation, and relationships
/plugin marketplace add Lobbi-Docs/claude/plugin install fastapi-backend@claude-orchestration[model_name] [--fields name:str,price:float] [--indexes field1,field2] [--embedded]# Generate Beanie Document Model Generate a MongoDB document model using Beanie ODM with proper indexing and validation. ## Required Information Before generating, gather: 1. **Model name** (e.g., "Product", "Order", "Customer") 2. **Fields** with types and constraints 3. **Indexes** - which fields need indexing 4. **Relationships** - links to other documents 5. **Embedded documents** - nested data structures ## Field Type Reference Common field types: - `str` - String - `int` - Integer - `float` - Float - `bool` - Boolean - `datetime` - DateTime - `EmailStr` - Validated email - `HttpU...