2026-001/documents
2026-05-18 14:25:11 +00:00
..
arbeit feat: extract individual page markdown files from PDFs 2026-03-05 11:13:56 +00:00
Beispiel EPG's Move all example EPG files into a shared folder 2026-05-18 14:25:11 +00:00
EPG_Ausführungsbestimmungen feat: extract individual page markdown files from PDFs 2026-03-05 11:13:56 +00:00
fallunterlagen Benenne Drei-Häuser-Dokument für Leny um 2026-03-16 09:40:57 +00:00
praxis feat: extract individual page markdown files from PDFs 2026-03-05 11:13:56 +00:00
theory/diagnostics Add diagnostics reference book on children and domestic violence 2026-05-14 08:59:53 +00:00
Übersicht Prozessschritte KPG fix: set startPage to 0 in metadata.jsonc for Übersicht Prozessschritte KPG 2026-03-09 18:52:14 +01:00
chat-session.txt Implement feature X to enhance user experience and fix bug Y in module Z 2026-03-08 18:58:54 +01:00
einsicht_vorlaeufige_themen_aus_journal_leny.md Cloned 2026-200 2026-03-02 21:09:09 +01:00
EPG_Strukturvorgaben_Arbeitshilfe.md Update to v3 of the structure 2026-03-02 23:49:25 +01:00
Füllung KPG (1).pdf Add 8 PDF documents to git tracking (force-added past *.pdf exclude rule) 2026-04-14 21:14:26 +00:00
Literaturverzeichnis_HF Flex_Version 1.0_20250709.pdf Add 8 PDF documents to git tracking (force-added past *.pdf exclude rule) 2026-04-14 21:14:26 +00:00
README.md Revert "Rebase: 16 local commits" 2026-03-17 10:45:14 +01:00
richtlinien_fur_schriftliche_facharbeiten_agogis.md Add guidelines for written academic papers, effective from 2024 2026-03-08 18:47:50 +01:00
WRITING-STYLE.md Add writing style and language guidelines to enhance content clarity and consistency 2026-03-08 18:55:52 +01:00

Documents

This directory contains documents related to the project. This document serves as an index and overview of the contents.

Documents should be added into the collection in subdirectories. Each document should contain a README.md file with the following structure:

# Document Role

Describe the role of this document in the project. For example, is it a reference book, a case study, a methodological guide, etc.?

# Clean up

Describe the conditions under which this document can be removed from the collection. For example, if it is a reference book, it might be kept indefinitely, while a case study might be removed after the project is completed.

Document Metadata

Each folder contains a metadata.jsonc file that provides metadata for the document. This metadata is used for rendering the document in the KPG app. The structure of the metadata file is as follows:

{
  "id": "unique-document-id",
  "title": "Document Title", // The title of the document to be displayed in the app
  "pdfPath": "path/to/document.pdf", // The relative path to the original PDF document
  "markdownPath": "path/to/document.md", // The relative path to the markdown transcription of the PDF
  "pageIndexPath": "path/to/pageIndex.json", // The relative path to the page index file
  "iconPath": "path/to/icon.png", // (Optional) The relative path to an icon representing the document
  "pageCount": totalNumberOfPages, // The total number of pages in the original PDF document
  "startPage": 0 // Whether we start the numbering with page 0 (cover page) or page 1 - essentially, whether the page has a non-numbered cover page or not.
}

Note: All paths are relative to the location of the metadata.jsonc file.

Example:

{
  // This file contains metadata used for rendering this document in the KPG app.
  "id": "praxis",
  "title": "Kooperative Prozessgestaltung in der Praxis",
  "pdfPath": "PDF Buch_Kooperative-Prozessgestaltung in der praxis.pdf",
  "markdownPath": "PDF Buch_Kooperative-Prozessgestaltung in der praxis.md",
  "pageIndexPath": "praxis.index.json",
  "pageCount": 297,
  "startPage": 0
}