(data: BasicProjectData)
| 551 | |
| 552 | |
| 553 | def _project_header_for_save(data: BasicProjectData) -> dict: |
| 554 | header = dict(data) |
| 555 | header["include_agents_md"] = _normalize_include_agents_md( |
| 556 | header.get("include_agents_md", True) |
| 557 | ) |
| 558 | return header |
| 559 | |
| 560 | |
| 561 | def get_context_project_name(context: "AgentContext") -> str | None: |
no test coverage detected