auto-sync: tudo-para-ia-mais-humana 2026-05-02 02:40:16

This commit is contained in:
2026-05-02 02:40:16 -03:00
parent 65c84a7166
commit 6ff1645171
39 changed files with 2774 additions and 2080 deletions

View File

@@ -391,10 +391,15 @@ def write_gitea_plan_artifacts(
write_json(project_root / "dados" / "repository-mesh-gitea-plan.json", plan)
write_text(project_root / "matrizes" / "repository-mesh-gitea-plan.csv", gitea_plan_csv(plan))
write_text(project_root / "ecossistema" / "REPOSITORY-MESH-GITEA.md", gitea_plan_markdown(plan))
central_written: list[Path] = []
if central_platform_folder is not None:
reports = central_platform_folder / "reports"
reports.mkdir(parents=True, exist_ok=True)
write_text(reports / "PENDENCIAS-CODEX__repository-mesh-gitea.md", gitea_plan_markdown(plan))
path = central_platform_folder / "reports" / "PENDENCIAS-CODEX__repository-mesh-gitea.md"
try:
write_text(path, gitea_plan_markdown(plan))
except OSError:
pass
else:
central_written.append(path)
records = [
GeneratedFile(
path="dados/repository-mesh-gitea-plan.json",
@@ -424,10 +429,10 @@ def write_gitea_plan_artifacts(
relation_to_order="000_sincronizacao-dos-espelhos",
),
]
if central_platform_folder is not None:
for central_path in central_written:
records.append(
GeneratedFile(
path=str(central_platform_folder / "reports" / "PENDENCIAS-CODEX__repository-mesh-gitea.md"),
path=str(central_path),
description="Pendencias Gitea registradas na central.",
function="repository mesh central gitea",
file_type="markdown",
@@ -437,4 +442,3 @@ def write_gitea_plan_artifacts(
)
)
return tuple(records)