Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Project memory, planning, execution, and verified completion inside Codex.</p>

<p>
<a href="https://github.com/code-yeongyu/lazycodex/stargazers">
<a href="https://github.com/code-yeongyu/lazycodex">
<img alt="Stars" src="https://img.shields.io/github/stars/code-yeongyu/lazycodex?style=for-the-badge&color=c69ff5&logoColor=D9E0EE&labelColor=302D41" />
</a>
</p>
Expand Down
2 changes: 1 addition & 1 deletion packages/web/e2e/landing.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ test.describe("landing page — install + commands", () => {
})

test.describe("landing page — links + footer", () => {
test("github stars pill links to the stargazers url with a count", async ({ page }) => {
test("github stars pill links to the github repo with a count", async ({ page }) => {
await page.goto("/")
const stars = page.locator(`a[href="${SITE_CONFIG.githubStarsUrl}"]`).first()
await expect(stars).toBeVisible()
Expand Down
4 changes: 3 additions & 1 deletion packages/web/lib/site-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ export const SITE_CONFIG = {
installCommandAutonomous: "npx lazycodex-ai install --no-tui --codex-autonomous",
installEquivalent: "npx --yes --package oh-my-openagent omo install --platform=codex",
githubUrl: "https://github.com/code-yeongyu/lazycodex",
githubStarsUrl: "https://github.com/code-yeongyu/lazycodex/stargazers",
// GitHub returns 404 on /stargazers for logged-out visitors, so the stars
// pill links to the repo page — where the star button lives anyway.
githubStarsUrl: "https://github.com/code-yeongyu/lazycodex",
omoUrl: "https://github.com/code-yeongyu/oh-my-openagent",
siteUrl: "https://lazycodex.ai",
docsPath: "/docs",
Expand Down