New YaCOMAS created with AI tools and spec driven development
reference: https://github.com/orgs/community/discussions/174352
yacomas-ai/
├─ frontend/
│ ├─ src/
│ │ ├─ features/ # Each feature has its own folder
│ │ │ ├─ auth/ # Authentication
│ │ │ │ ├─ components/
│ │ │ │ └─ utils/
│ │ │ └─ dashboard/ # Dashboard
│ │ │ ├─ components/
│ │ │ └─ utils/
│ │ └─ shared/ # Reusable components/utilities
│ └─ package.json
├─ backend/
│ ├─ src/
│ │ ├─ features/ # Each backend feature
│ │ │ ├─ auth/
│ │ │ │ ├─ controllers/
│ │ │ │ ├─ routes/
│ │ │ │ └─ models/
│ │ │ └─ tasks/
│ │ │ ├─ controllers/
│ │ │ ├─ routes/
│ │ │ └─ models/
│ │ └─ shared/ # Reusable helpers/utilities/types
│ └─ package.json
├─ README.md
└─ .gitignore