Skip to content
Merged
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
1 change: 1 addition & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ plugins:

exclude:
- node_modules
- copy-wip
- configurator
- configurator-archive
- core
Comment on lines 8 to 13

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Action required

1. Docs rewrite not published 🐞 Bug ≡ Correctness

This PR adds the rewritten landing page/README under copy-wip/ but also excludes copy-wip from
the Jekyll build, so the deployed Pages site will not include the new content. The published
homepage (index.md) therefore continues to ship stale facts (v0.6.19, 840 tokens, sixteen layers)
and the wrong npm package link.
Agent Prompt
## Issue description
The PR adds updated “first-contact” copy as `copy-wip/github-pages-index.html` and `copy-wip/github-readme.md`, but `_config.yml` excludes `copy-wip` from the Jekyll build. The Pages deployment workflow builds the site via Jekyll using this config, so `copy-wip/` content will not be present in `_site/`.

As a result, `index.md` remains the deployed homepage and continues to contain stale/incorrect facts (token count, layer count, hardcoded release version, and the npm link).

## Issue Context
- GitHub Pages is built by `.github/workflows/deploy-configurator.yml` using `actions/jekyll-build-pages@v1`, which honors `_config.yml` exclusions.
- The new copy is currently only present under `copy-wip/`.

## Fix Focus Areas
- _config.yml[8-18]
- .github/workflows/deploy-configurator.yml[67-93]
- index.md[123-244]
- copy-wip/github-pages-index.html[1-40]
- copy-wip/github-readme.md[1-40]

## Suggested fix
- Move/port the rewritten landing page content into the actual published homepage (`index.md`), or otherwise update the Pages build so the new landing page is generated at `/`.
- Apply the rewritten README content to the repository’s actual `README.md` (or add an explicit build step that replaces it), instead of leaving it only in `copy-wip/`.
- If `copy-wip/` is intended to be published for review, remove it from `_config.yml` `exclude:` (or add an `include:`/copy step) and ensure the desired route is linked/served.

ⓘ Copy this prompt and use it to remediate the issue with your preferred AI generation tools

Expand Down
Loading