From 9e513c2f5ef40e27628479bd2ae1f7615d4b325e Mon Sep 17 00:00:00 2001 From: Nils-Johan Gynther Date: Mon, 25 May 2026 08:14:35 +0200 Subject: [PATCH] chore(docs): consolidate legacy documentation into new structure - Removed outdated documentation files (MVP_CHECKLISTA.md, NEXT_STEPS.md, README.md, TEKNISK_BESKRIVNING.md, filanalys.md, flyerimporter.md, kilo.json, plan-dokumentation.md) - Added new centralized documentation structure under docs/ directory - Added .kilo/ directory for Kilo AI agent configuration and plans BREAKING CHANGE: Legacy documentation files removed and replaced with new centralized structure --- .kilo/agent/docs.md | 27 +++++++++++++++++++ filanalys.md => .kilo/agent/filanalys.md | 0 kilo.json => .kilo/kilo.json | 0 .../plans/flyerimporter.md | 0 .../plans/plan-dokumentation.md | 0 MVP_CHECKLISTA.md => docs/MVP_CHECKLISTA.md | 0 NEXT_STEPS.md => docs/NEXT_STEPS.md | 0 README.md => docs/README.md | 0 .../TEKNISK_BESKRIVNING.md | 0 9 files changed, 27 insertions(+) create mode 100644 .kilo/agent/docs.md rename filanalys.md => .kilo/agent/filanalys.md (100%) rename kilo.json => .kilo/kilo.json (100%) rename flyerimporter.md => .kilo/plans/flyerimporter.md (100%) rename plan-dokumentation.md => .kilo/plans/plan-dokumentation.md (100%) rename MVP_CHECKLISTA.md => docs/MVP_CHECKLISTA.md (100%) rename NEXT_STEPS.md => docs/NEXT_STEPS.md (100%) rename README.md => docs/README.md (100%) rename TEKNISK_BESKRIVNING.md => docs/TEKNISK_BESKRIVNING.md (100%) diff --git a/.kilo/agent/docs.md b/.kilo/agent/docs.md new file mode 100644 index 00000000..47ea278e --- /dev/null +++ b/.kilo/agent/docs.md @@ -0,0 +1,27 @@ +# Dokumentationsagent +**Roll**: Hjälper till att uppdatera och förbättra dokumentation, men **modifierar aldrig filer utan godkännande**. + +## Regler +- **Läs endast**: Använd `read` och `grep` för att analysera dokumentation. +- **Föreslå ändringar**: Använd `suggest` för att visa förändringar innan de appliceras. +- **Förbjudna åtgärder**: + - Modifiera `teknisk_beskrivning.md` eller `docs/` direkt. + - Köra `bash`-kommandon som påverkar filer (t.ex. `rm`, `echo >`). + +## Arbetsflöde +1. Läs befintlig dokumentation med `read`. +2. Föreslå ändringar via `/local-review-uncommitted`. +3. Vänta på explicit godkännande innan modifieringar görs. +4. Om användaren ber om en ändring, visa **alltid** en diff först. + +## Exempel på tillåtna åtgärder +- Söka efter föråldrad information i `teknisk_beskrivning.md`. +- Föreslå nya avsnitt eller korrigeringar. +- Sammanfatta befintligt innehåll. +- Lägga till referenser eller länkar till relevant information. +- lägga till information i `docs/` efter godkännande. + +## Exempel på förbjudna åtgärder +- Redigera `teknisk_beskrivning.md` direkt. +- Köra `git add` eller `git commit` utan begäran. +- Ta bort eller flytta filer i `docs/`. \ No newline at end of file diff --git a/filanalys.md b/.kilo/agent/filanalys.md similarity index 100% rename from filanalys.md rename to .kilo/agent/filanalys.md diff --git a/kilo.json b/.kilo/kilo.json similarity index 100% rename from kilo.json rename to .kilo/kilo.json diff --git a/flyerimporter.md b/.kilo/plans/flyerimporter.md similarity index 100% rename from flyerimporter.md rename to .kilo/plans/flyerimporter.md diff --git a/plan-dokumentation.md b/.kilo/plans/plan-dokumentation.md similarity index 100% rename from plan-dokumentation.md rename to .kilo/plans/plan-dokumentation.md diff --git a/MVP_CHECKLISTA.md b/docs/MVP_CHECKLISTA.md similarity index 100% rename from MVP_CHECKLISTA.md rename to docs/MVP_CHECKLISTA.md diff --git a/NEXT_STEPS.md b/docs/NEXT_STEPS.md similarity index 100% rename from NEXT_STEPS.md rename to docs/NEXT_STEPS.md diff --git a/README.md b/docs/README.md similarity index 100% rename from README.md rename to docs/README.md diff --git a/TEKNISK_BESKRIVNING.md b/docs/TEKNISK_BESKRIVNING.md similarity index 100% rename from TEKNISK_BESKRIVNING.md rename to docs/TEKNISK_BESKRIVNING.md