Skip to content

Commit a2846b9

Browse files
author
cowork-bot
committed
fix(marketing): correct broken bare pip install in AGENTS.md (use self-hosted index/git+)
1 parent 24a77af commit a2846b9

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

AGENTS.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@
44
Compare deployment configurations across environments. Detect drift between staging and production configs. Preview infrastructure changes with human-readable diffs, cost impact estimation, and rollback commands.
55

66
## Build & Test Commands
7-
- Install: `pip install -e .` or `pip install deploydiff`
7+
- Install (editable, from this repo): `pip install -e .`
8+
- Install (prebuilt wheel from the self-hosted index): `pip install --index-url https://coding-dev-tools.github.io/pypi-index/simple/ deploydiff`
9+
- Install (from source): `pip install git+https://github.com/Coding-Dev-Tools/deploydiff.git`
10+
- NOTE: `deploydiff` is NOT on public PyPI — use the self-hosted index or a `git+` URL above.
811
- Test: `pytest tests/` (or `python -m pytest tests/ -v --tb=short`)
912
- Lint: `ruff check .`
1013
- Build: `pip install build twine && python -m build && twine check dist/*`

0 commit comments

Comments
 (0)