Kapitelarchitektur und Gliederung der Masterarbeit. Verwaltet die Struktur, schlaegt vor wo Inhalte hingehoeren, validiert den logischen Fluss zwischen Kapiteln.
This skill manages the structural backbone of the Master Thesis. It maintains the chapter outline, validates logical flow between sections, and ensures every piece of content lands in the right place. The thesis is written in German, in LaTeX, and follows the conventions of a German computer science Master Thesis (Informatik Masterarbeit).
The thesis follows the canonical German CS thesis structure, adapted to the specific topic of multi-agent orchestration with the juliaz_agents system:
The canonical structure is maintained in thesis/latex/structure.json. This file is the single source of truth for the thesis outline.
{
"thesis_title": "Multi-Agent-Orchestrierung mit Large Language Models: Entwurf und Implementierung des juliaz_agents-Systems",
"author": "Raphael",
"chapters": [
{
"id": "01-einleitung",
"title": "Einleitung",
"file": "chapters/01-einleitung.tex",
"sections": [
{"id": "1.1", "title": "Problemstellung und Motivation"},
{"id": "1.2", "title": "Forschungsfragen"},
{"id": "1.3", "title": "Aufbau der Arbeit"}
],
"status": "draft",
"word_count_target": 2000,
"dependencies": []
}
]
}
Given a topic or piece of content, determine which chapter and section it belongs to:
Check that the thesis argument progresses logically:
Maintain a dependency graph between sections:
02-grundlagen:MAS -> used by 04-konzept:Agentenmodell02-grundlagen:MCP -> used by 04-konzept:Kommunikationsarchitektur, 05-implementierung:MCP-Bridge02-grundlagen:Tool-Use -> used by 04-konzept:Entwurfsentscheidungen, 05-implementierung:Julia-OrchestratorWhen chapters grow unbalanced:
structure.json01-einleitung, etc.) are stable identifiers used across all skills