docs: remove redundant docs, fold migration table into README

Clean up documentation redundancy:

- Delete docs/Archiv_fertig_-_Check_und_Installation.md: an AI hand-off
  transcript (first-person, stale test count, malformed markdown) whose
  useful content is already in INSTALL_FROM_ARCHIVE.md.
- Delete docs/How_to_use.md after moving its one unique asset -- the
  old-script -> new-command migration table -- into the README; drop it
  from the build_archive manifest.
- Fix INSTALL_FROM_ARCHIVE.md drift: list LICENSE/CHANGELOG.md in the
  archive allowlist and use `python -m pytest`.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Dieter Schlüter 2026-07-07 10:56:20 +02:00
commit 4a5c2e27e1
5 changed files with 15 additions and 89 deletions

View file

@ -123,6 +123,19 @@ Parametern, nicht die Qwen-Version.
Vollständige Optionsliste: `llamacppctl --help` oder die Manpage
(`man/llamacppctl.1`, siehe unten).
## Migration von den Shell-Skripten
`llamacppctl` ersetzt die einzelnen Shell-Skripte durch Actions **eines**
Werkzeugs (`--profile` ist optional; ohne greift die `[default]`-Sektion):
| Altes Skript | Neuer Aufruf |
|---|---|
| `start-llm-server.sh` | `llamacppctl --start --config llama.cpp.config [--profile <name>]` |
| `status-llm-server.sh` | `llamacppctl --check --config llama.cpp.config [--profile <name>]` |
| Stop-Skript | `llamacppctl --stop --config llama.cpp.config [--profile <name>]` |
| `switch-llm.sh` (Modellwechsel) | `llamacppctl --change --config llama.cpp.config [--profile <name>]` |
| (neu) direkter Chat-Test | `llamacppctl --chat --config llama.cpp.config -p "..."` |
## Sicherheitsmodell (Kurzfassung)
Für Details siehe [`docs/SECURITY_AND_OPERATIONS.md`](docs/SECURITY_AND_OPERATIONS.md).