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
8 changes: 8 additions & 0 deletions src/components/Nav.astro
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,13 @@ const { currentPath = '' } = Astro.props;
<span class="dropdown-item-desc">6 real, runnable domains</span>
</span>
</a>
<a href="https://registry.traverse-framework.com" target="_blank" rel="noopener" class="dropdown-item" role="menuitem">
<span class="dropdown-icon">⬡</span>
<span>
<span class="dropdown-item-title">Registry Catalog</span>
<span class="dropdown-item-desc">Browse every published capability</span>
</span>
</a>
<a href="/compare.html" class="dropdown-item" role="menuitem">
<span class="dropdown-icon">⬡</span>
<span>
Expand Down Expand Up @@ -166,6 +173,7 @@ const { currentPath = '' } = Astro.props;
<a href="/docs.html">Docs</a>
<a href="/questions.html">All Questions</a>
<a href="/examples.html">Examples</a>
<a href="https://registry.traverse-framework.com" target="_blank" rel="noopener">Registry Catalog →</a>
<a href="/compare.html">Compare</a>
<a href="/security-audit.html">Security Audit</a>
<a href="/blog.html">Blog</a>
Expand Down
3 changes: 2 additions & 1 deletion src/pages/agents.astro
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ const _body = `<section class="page-hero">
<div class="section-header">
<div class="section-label">Building with a coding agent</div>
<h2>A Claude Skill that checks the registry before it writes anything.</h2>
<p><a href="https://github.com/traverse-framework/claude-skills" target="_blank" rel="noopener">traverse-framework/claude-skills</a> hosts Claude Skills for building apps with Traverse — starting with <code>traverse-app-builder</code>, which checks the registry for a capability that already fits, authors a new one as a real JSON-Schema contract only when nothing does, compiles it to <code>wasm32-wasip1</code>, composes several into a multi-node workflow, and validates all of it against the real <code>traverse-cli</code>. It also states this platform's current execution limitations plainly, since a skill that overclaims what Traverse can run today is worse than no skill at all.</p>
<p><a href="https://github.com/traverse-framework/claude-skills" target="_blank" rel="noopener">traverse-framework/claude-skills</a> hosts Claude Skills for building apps with Traverse — starting with <code>traverse-app-builder</code>, which checks the registry for a capability that already fits, authors a new one as a real JSON-Schema contract only when nothing does, compiles it to genuinely executable, ABI-compliant WASM, composes several into a multi-node workflow, and validates and runs all of it against the real <code>traverse-cli</code>. It also states this platform's current limitations plainly, since a skill that overclaims what Traverse can run today is worse than no skill at all.</p>
<p>Before authoring anything new, check the <a href="https://registry.traverse-framework.com" target="_blank" rel="noopener">Registry Catalog</a> — every published capability, browsable with real coverage and use-case data, not just a raw JSON index.</p>
<a href="https://github.com/traverse-framework/claude-skills" target="_blank" rel="noopener" class="btn btn-ghost btn-sm">See the skill →</a>
</div>
</div>
Expand Down
Loading