Imported from ahmed-nagah-r/ai-dev-tools-zoomcamp-hw1 (
AGENTS.md). Install upstream withnpx skills add ahmed-nagah-r/ai-dev-tools-zoomcamp-hw1. Copyright stays with the author.
Agent instructions — Household Chores
Homework 1 for AI Dev Tools Zoomcamp 2026. Spec first, then backlog tasks one at a time.
Documents
_docs/plan.md— product spec and non-goals_docs/process.md— how work is organizedbacklog.md— ordered implementation tasks
Commands
uv sync— install dependenciesuv run python manage.py runserver— Django development serveruv run python manage.py test— whole Django test suiteuv run python manage.py migrate— apply migrations
Rules
- Implement one backlog task at a time. Do not skip ahead.
- Keep v1 inside the four features in
_docs/plan.md. Do not add auth, recurring chores, or extra pages. - Dependencies go in
pyproject.tomlviauv add. Do not add packages without asking. - Use Django templates and forms. Do not introduce a JavaScript framework.
- Tests use Django's test runner, not pytest.