From 9405fdf203ab4946382610d0136242684ef39fc4 Mon Sep 17 00:00:00 2001 From: cowork-bot Date: Mon, 13 Jul 2026 23:28:55 -0400 Subject: [PATCH 1/2] fix: replace dead --index-url install with verified-working git+ --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 219f226..e8be488 100644 --- a/README.md +++ b/README.md @@ -13,8 +13,7 @@ [![LibHunt](https://img.shields.io/badge/LibHunt-%E2%87%92-blue?logo=codeigniter)](https://www.libhunt.com/r/Coding-Dev-Tools/apiauth) ## Installation ```bash -pip install --index-url https://coding-dev-tools.github.io/pypi-index/simple/ apiauth -# or: pip install git+https://github.com/Coding-Dev-Tools/apiauth.git +pip install git+https://github.com/Coding-Dev-Tools/apiauth.git # Generate an API key apiauth generate api-key --name "My API Key" --service "api-gateway" --expiry-days 90 From fbd2a8fb87534569dd49e3a2ccdb0b3306a86c48 Mon Sep 17 00:00:00 2001 From: marketing-growth-agent Date: Tue, 14 Jul 2026 23:14:16 -0400 Subject: [PATCH 2/2] fix(marketing): remove broken --index-url install claim from AGENTS.md; git+ is the only working path --- AGENTS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AGENTS.md b/AGENTS.md index c184168..97be9e7 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -4,7 +4,7 @@ CLI tool for API key and JWT lifecycle management with encrypted local store — generate, store, verify, rotate, and revoke keys with an encrypted local keystore. ## Build & Test Commands -- Install: `pip install --index-url https://coding-dev-tools.github.io/pypi-index/simple/ apiauth` or `pip install git+https://github.com/Coding-Dev-Tools/apiauth.git` +- Install: `pip install git+https://github.com/Coding-Dev-Tools/apiauth.git` (the self-hosted PyPI index is not published, so the `--index-url` form does not work yet). - Test: `pytest tests/` (or `python -m pytest tests/ -v --tb=short`) - Lint: `ruff check src/ --target-version py310` - Build: `pip wheel . --wheel-dir dist/`