61bb2876d6
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
29 lines
949 B
Markdown
29 lines
949 B
Markdown
# CLAUDE.md
|
|
|
|
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
|
|
|
|
## Projektübersicht
|
|
|
|
**tools** ist eine Sammlung nützlicher Werkzeuge für die Entwicklung. Zentral ist
|
|
`mkpyproject`, das ein neues Python-Projekt nach Standard-Template anlegt (vgl.
|
|
`python_template`/`sproject`). Weitere Skripte richten Umgebungen und Anthropic-Zugänge
|
|
ein.
|
|
|
|
## Projektstruktur
|
|
|
|
```text
|
|
tools/
|
|
├── bin/ # Skripte (.bat/.sh)
|
|
│ ├── mkpyproject # Neues Python-Projekt nach Template anlegen
|
|
│ ├── install_tools / uninstall_tools
|
|
│ ├── anth-mista / anth-schoen # Anthropic-/Umgebungs-Setups
|
|
│ └── setenv
|
|
├── lib/ # Python-Quellcode (mkpyproject.py)
|
|
└── templates/ # Projektvorlagen
|
|
```
|
|
|
|
## Nutzung
|
|
|
|
- Werkzeuge installieren: `bin\install_tools.bat`
|
|
- Neues Python-Projekt erzeugen: `bin\mkpyproject.bat` (bzw. `mkpyproject.sh`)
|