feat: migrate agents to monorepo and update federation configs

This commit is contained in:
2026-07-17 21:15:33 +02:00
parent 38a9a11772
commit 8db07e5d21
10 changed files with 256 additions and 18 deletions
+6 -17
View File
@@ -5,31 +5,20 @@ federation:
conflict_strategy: "team-wins"
team_repos:
- context: privat
url: "https://github.com/andreknie/privat-team.git"
branch: main
sync_direction: bidirectional
sync_frequency: "on-push"
shared_mirror:
enabled: true
paths:
- "shared/tools/common-scripts/"
- "shared/config/base-config.yaml"
mode: read-only
- context: dhive
url: "https://gitlab.dhive.io/team/dhive-mono.git"
url: "https://git.d-hive.de/team/dhive-mono.git"
branch: main
sync_direction: bidirectional
sync_frequency: "on-push"
shared_mirror:
enabled: true
paths:
- "shared/tools/"
- "shared/powers/db-dxp-platform/"
- "shared/mcp-servers/"
- "privat/"
- "shared/AI-Orchestrator/"
- "shared/OrgMyLife/"
mode: read-only
- "shared/config/"
- "shared/tools/"
mode: bidirectional
- context: bahn
url: "https://gitlab.2700.2db.it/team/bahn-workspace.git"
@@ -218,7 +218,7 @@ class SharedMirrorConfig:
enabled: bool
paths: list[str] = field(default_factory=list)
mode: Literal["read-only"] = "read-only"
mode: Literal["read-only", "bidirectional"] = "read-only"
@dataclass