You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* fix: correct click-to-mcp install advice to working git+ URL
click-to-mcp is not published on PyPI (pip install click-to-mcp -> 'No
matching distribution found'), so the runtime error messages that tell
users to 'pip install click-to-mcp' are wrong and leave them stuck.
This restores the git+ install form (previously added in a5874e0 and
accidentally reverted by aa004b0) across cli.py and mcp_server.py.
Reviewed and approved by council_gate_code_edit (APPROVE).
* fix(marketing): correct deploydiff install claims (remove false PyPI badge, git+ install, honesty note)
* fix(marketing): correct broken bare pip install in AGENTS.md (use self-hosted index/git+)
* fix(renderer): remove module_path doubling in rendered address + add 3 edge-case tests
---------
Co-authored-by: senior-dev-rotation-B <agent@cowork-ops.local>
Co-authored-by: cowork-bot <bot@coding-dev-tools.local>
Copy file name to clipboardExpand all lines: AGENTS.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,10 @@
4
4
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.
5
5
6
6
## 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`
0 commit comments