The model context package manager

Add AGENTS.md

Signed-off-by: Jan Ehrhardt <59441+jehrhardt@users.noreply.github.com>

jehrhardt.dev 93b4f585 d5c5db70

verified
Changed files
+41
+40
AGENTS.md
··· 1 + # CLAUDE.md 2 + 3 + This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository. 4 + 5 + ## Project Overview 6 + 7 + This is a minimal Python project called `mcpkg` configured with modern Python packaging using `pyproject.toml`. The project currently contains a simple "Hello World" script as a starting point. 8 + 9 + ## Development Setup 10 + 11 + - **Python Version**: 3.13 (specified in `.python-version`) 12 + - **Package Configuration**: Uses `pyproject.toml` for project metadata and tool configuration 13 + - **Type Checking**: Configured with Pyright (settings in `pyproject.toml`) 14 + 15 + ## Common Commands 16 + 17 + ### Running the Application 18 + 19 + ```bash 20 + uv run main.py 21 + ``` 22 + 23 + ### Package Management 24 + 25 + This project uses standard Python packaging with `pyproject.toml`. `uv` is used as a package manager. New dependencies can be added via: 26 + 27 + ```bash 28 + uv add <dependency> 29 + ``` 30 + 31 + ## Architecture 32 + 33 + Currently a single-file Python project with: 34 + 35 + - `main.py`: Entry point with basic hello world functionality 36 + - `pyproject.toml`: Project configuration and metadata 37 + - Standard Python `.gitignore` for build artifacts and virtual environments 38 + 39 + The project is set up for expansion into a proper Python package structure as needed. 40 +
+1
CLAUDE.md
··· 1 + AGENTS.md