Yet-another-agent-harness sync-website
Sync the yaah marketing website (website/index.html) with the current project state — features, CLI commands, skills, agents, hooks, and installation instructions. Use this skill whenever the user adds, removes, or changes a feature, CLI command, hook, skill, agent, MCP server, or LSP provider AND the website should reflect that change. Also use when the user explicitly asks to update, sync, or refresh the website, or says things like 'update the site', 'keep the website current', 'reflect this on the website', or 'the website is out of date'.
git clone https://github.com/dirien/yet-another-agent-harness
T=$(mktemp -d) && git clone --depth=1 https://github.com/dirien/yet-another-agent-harness "$T" && mkdir -p ~/.claude/skills && cp -r "$T/.claude/skills/sync-website" ~/.claude/skills/dirien-yet-another-agent-harness-sync-website && rm -rf "$T"
.claude/skills/sync-website/SKILL.mdSync Website
Keep
website/index.html in sync with the yaah project's actual capabilities.
Why this matters
The website is a static single-page site in
website/. It auto-deploys to GitHub Pages on push to main (via .github/workflows/deploy-pages.yaml). When features change in the Go code but the website isn't updated, users see stale information.
Data sources and website sections
Each website section has a canonical source of truth. Read the source first, then update the HTML.
| Website section | HTML landmark | Source of truth |
|---|---|---|
| Hero stats (4 numbers) | | Count from registries below |
| Features grid | | features + packages |
| How It Works | | quick-start |
| Multi-Agent table | | — one file per agent |
| Install methods | | install section |
| CLI Reference | | + cobra commands |
How to count for hero stats
| Stat | How to count |
|---|---|
| Agents | Number of generators in (claude, opencode, codex, copilot) |
| Skills | — count directories that contain a SKILL.md |
| Hooks | Count distinct handler types in |
| Sub-Agents | — count files |
How to sync
-
Audit — Read the source of truth for the section that changed. Read
to see what's currently shown.website/index.html -
Diff — Identify what's new, removed, or changed.
-
Edit — Update
with the Edit tool. Match existing HTML patterns exactly:website/index.html- Feature cards:
with<div class="feature-card">
and<h3><p> - CLI items:
with<div class="cli-item">
for command,<code>
for description<p> - Stats:
with<div class="stat">
and<span class="stat-number"><span class="stat-label"> - Install cards:
with code blocks<div class="install-card">
- Feature cards:
-
Verify — Count items in the edited HTML to confirm they match the codebase.
Rules
- Only update sections where data actually changed.
- Preserve existing CSS classes, HTML structure, and visual design.
- Keep copy concise — one sentence per feature card, short CLI descriptions.
- Every claim on the website must be backed by code that exists right now.
- If a feature was removed from the code, remove it from the website.
- After editing, remind the user that the deploy triggers automatically on push (workflow watches
).website/**