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
5 changes: 5 additions & 0 deletions scripts/check.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -916,6 +916,11 @@ assert(
assert(html.includes("Use Loop Library in your coding agent."));
assert(html.includes('href="./agents/"'));
assert(html.includes("Send an agent to the live guide"));
const skillPromoHtml = html.slice(
html.indexOf('id="agent-skill"'),
html.indexOf("</section>", html.indexOf('id="agent-skill"')),
);
assert(!skillPromoHtml.includes("Agent guide"));
assert(
html.includes(
"npx skills add Forward-Future/loop-library --skill loop-library",
Expand Down
3 changes: 0 additions & 3 deletions site/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -618,9 +618,6 @@ <h2 id="agent-skill-title">
-g</code
>
<div class="skill-action-row">
<a class="skill-github-link" href="./agents/">
Agent guide
</a>
<button
class="skill-copy-button"
type="button"
Expand Down
Loading