Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions templates/commands/tasks.md
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,7 @@ Every task MUST strictly follow this format:
- Map each entity to the user story(ies) that need it
- If entity serves multiple stories: Put in earliest story or Setup phase
- Relationships → service layer tasks in appropriate story phase
- For each field with constraints in data-model.md (max length, nullable/required, enum values, validation rules), quote the constraint verbatim in the task description so it is not left to implementation-time discretion

4. **From Setup/Infrastructure**:
- Shared infrastructure → Setup phase (Phase 1)
Expand Down
29 changes: 29 additions & 0 deletions tests/test_tasks_template_constraints.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
"""Regression test for #4383: tasks.md loses data-model field constraints.

The /speckit.tasks command template maps data-model.md entities to task
descriptions but did not require that field-level constraints (max length,
nullable/required, enum values, validation rules) be carried into the
generated task text verbatim. Without an explicit instruction, the
implementing agent falls back to its own defaults instead of the value
recorded in data-model.md.
"""

from pathlib import Path

REPO_ROOT = Path(__file__).parent.parent
TASKS_TEMPLATE = REPO_ROOT / "templates" / "commands" / "tasks.md"


def test_data_model_section_requires_verbatim_field_constraints():
content = TASKS_TEMPLATE.read_text(encoding="utf-8")

from_data_model_start = content.index("**From Data Model**")
next_section_start = content.index("**From Setup/Infrastructure**")
section = content[from_data_model_start:next_section_start]

assert "quote the constraint verbatim in the task description" in section.lower(), (
"The 'From Data Model' task-organization rules must instruct the "
"agent to quote field constraints (max length, nullable, enum, "
"validation rules) from data-model.md verbatim in task descriptions, "
"not merely mention that constraints exist."
)
Loading