APP_NAME=simpo-ai-capabilities
IMAGE_NAME=simpo/$(APP_NAME):local

.PHONY: test lint build docker-build clean

test:
	uv run pytest

lint:
	uv run ruff check .
	uv run mypy agent_specs service_adapters skills

build:
	uv build

docker-build:
	docker build -t $(IMAGE_NAME) .

clean:
	rm -rf dist .pytest_cache .ruff_cache .mypy_cache
