Ejecuta cualquier Skill en Manus
con un clic
con un clic
Ejecuta cualquier Skill en Manus con un clic
Comenzar$pwd:
$ git log --oneline --stat
stars:191
forks:36
updated:26 de abril de 2026, 04:11
Explorador de archivos
SKILL.md
| name | feature-developer |
| description | Implements new features, domains, and API endpoints. |
| version | 1.0.0 |
Use this skill when adding or changing application features.
Controller -> Use Case / Service -> Model
| Component | Location |
|---|---|
| Domain app | src/fastdjango/core/<domain>/ |
| Model | src/fastdjango/core/<domain>/models.py |
| DTOs | src/fastdjango/core/<domain>/dtos.py |
| Use case/service | src/fastdjango/core/<domain>/use_cases.py or services.py |
| FastAPI delivery | src/fastdjango/core/<domain>/delivery/fastapi/ |
| Django admin delivery | src/fastdjango/core/<domain>/delivery/django/admin.py |
| Celery delivery | src/fastdjango/core/<domain>/delivery/celery/ |
| FastAPI composition | src/fastdjango/entrypoints/fastapi/factories.py |
| Celery composition | src/fastdjango/entrypoints/celery/ |
src/fastdjango/core/<domain>/.BaseUseCase or BaseService.This project uses diwire recursive auto-wiring. Most services, use cases,
controllers, and factories do not need manual registration. Add explicit
registration only when mapping an abstraction or overriding a dependency in tests.
make format
make lint
make test
docs/en/how-to/add-new-domain.mddocs/en/how-to/add-celery-task.mddocs/en/concepts/service-layer.mddocs/en/concepts/controller-pattern.mddocs/en/concepts/ioc-container.mdreferences/domain-checklist.mdreferences/controller-patterns.mdreferences/testing-new-features.md