在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用$pwd:
$ git log --oneline --stat
stars:0
forks:0
updated:2026年3月27日 11:54
SKILL.md
Audit duplicate Jekyll posts for canonical slug, listing fallout, and redirect needs
Write accurate API examples for library documentation blog posts
Safely refresh social-share branding in Jekyll includes
Core conventions and patterns for this codebase
| name | post-validation-sweep |
| description | Validate a new Jekyll post with build and local smoke checks |
| domain | jekyll-testing |
| confidence | high |
| source | repository |
Use this skill when a new blog post needs a final QA pass and the goal is to verify local rendering without rewriting content.
_config.yml matches _config_dev.yml before local validation so Jekyll builds and serves with the expected development settings.bundle exec jekyll clean before bundle exec jekyll build._site, which makes removed draft routes look healthy even when they would be missing in a clean publish.bundle exec jekyll build from the repo root to confirm the site renders into _site without Liquid or Markdown failures.dotnet build .\blog.sln to make sure the Playwright test solution still compiles after the content change.bundle exec jekyll serve --host 127.0.0.1 --port 4000 --incremental./archives/, and /tags/ over HTTP./archives/, confirm the new entry is listed under the correct year.redirect_from, make sure jekyll-redirect-from is enabled in _config.yml, _config_dev.yml, and _config_prod.yml; front matter alone is not enough.README.md to the winning permalink; redirects should protect legacy links, not become the new primary target./slug/, /YYYY/slug/, /YYYY/MM/DD/slug/) and confirm they return redirect pages instead of 404s./archives/ still lists every dated draft._site\YYYY\MM\ for the actual generated files and compare /archives/ entries to the resolved URLs so duplicate-date-to-one-route collisions are caught early.dotnet vs net), include legacy canonical URLs in the redirect smoke pass before deleting losing variants./tags/ index page with one <h2> section per tag./tag/<name>/ routes.http://127.0.0.1:4000/; the current 3-test Playwright suite is capable of going fully green.redirect_from works without jekyll-redirect-from enabled in the Jekyll config._site generation without checking the live local routes._config.yml environment setup as a publishable content change.