Files
myagents/Makefile
T
Zhengshou Lai b98d35c387 feat: add mybot CLI with update, chat, and Claude project config
- Click entrypoint: mybot update (make install / pip -e), mybot chat (claude in repo)
- Optional --dangerously-skip-permissions for Claude Code
- Makefile install; hatchling package layout
- .gitignore: venv, build artifacts, workspace (local symlinks)

Made-with: Cursor
2026-04-06 13:11:10 +08:00

16 lines
318 B
Makefile

ROOT_DIR := $(shell pwd)
.PHONY: help install
help:
@echo "Usage: make [target]"
@echo ""
@echo " install Editable pip install of mybot (uses uv when available)"
install:
@if command -v uv >/dev/null 2>&1; then \
uv pip install -e "$(ROOT_DIR)"; \
else \
python3 -m pip install -e "$(ROOT_DIR)"; \
fi