fix: update canonical GitHub URL to feliperun/expert-agent#5
Merged
Conversation
The repository moved from `feliperbroering/expert-agent` to `feliperun/expert-agent` (GitHub redirects both). This brings all URLs referenced in-tree in line with the canonical location, so users who follow these pointers don't stumble on a redirect. Touched: - cli/expert/brand.py: CLI banner tail (user-visible) - cli/tests/test_brand.py: matching assertion - pyproject.toml: project.urls (Homepage/Repository/Issues) - README.md: badges + install snippets - CONTRIBUTING.md: git clone URL - SECURITY.md: advisory URL - docs/PRIVATE_AGENT_REPO.md: install + `uses:` in CI example - docs/AGENT_E2E_SETUP.md: install + `uses:` in CI example - .github/workflows/expert-e2e.yml: `uses:` in header comment and the inline `uv tool install` step - .github/ISSUE_TEMPLATE/config.yml: security-advisories link `CHANGELOG.md` historical entries intentionally left untouched — GitHub transparently redirects those commit/compare links, and rewriting published release notes is worse than the redirect hop. `AGENTS.md` / `cli/expert/ui.py` / `cli/expert/brand.py` comments that reference `feliperbroering/eai` are kept — that's a separate project of the author and hasn't moved. Made-with: Cursor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The repository moved from
feliperbroering/expert-agenttofeliperun/expert-agent(GitHub transparently redirects both, sonothing is broken today), but the banner and docs still pointed at
the old owner. This PR aligns every in-tree URL with the canonical
location so users following links land there without a redirect hop.
Diff
cli/expert/brand.py— user-visible banner tailcli/tests/test_brand.py— matching assertionpyproject.toml—project.urls(Homepage / Repository / Issues)README.md— CI badge, install snippets, E2E exampleCONTRIBUTING.md—git cloneURLSECURITY.md— advisory URLdocs/PRIVATE_AGENT_REPO.md— install snippets + CI exampledocs/AGENT_E2E_SETUP.md— install snippets + CI examples.github/workflows/expert-e2e.yml— header comment + inlineuv tool installstep.github/ISSUE_TEMPLATE/config.yml— security-advisories link.gitignore— ignore localgh-run-monitorskill artefactsNot touched:
CHANGELOG.mdhistorical entries — rewriting published releasenotes is worse than the redirect hop.
AGENTS.md/brand.py/ui.pycomments mentioningfeliperbroering/eai— that's a separate project and it hasn'tmoved.
Test plan
ruff check .cleanmypy backend cliclean (46 files)pytest88/88 greenexpert --versionwould now render the new URL (verifiedby the updated
test_brand.pyassertion)Made with Cursor