feat: add E2B sandbox tools and update documentation navigation

- Add new e2b tool package for cloud sandbox code execution
- Update docs navigation with descriptions and developers guide section
- Configure blocks.yml for e2b tool discovery
This commit is contained in:
Ajax Davis 2026-01-20 08:05:19 +10:00
parent a3436ca5a5
commit ffc5807ba0
8 changed files with 1906 additions and 31 deletions

View file

@ -66,9 +66,20 @@ const NAV_SECTIONS = [
{
title: 'Resources',
items: [
{ id: 'faq', label: 'FAQ' },
{ id: 'troubleshooting', label: 'Troubleshooting' },
{ id: 'changelog', label: 'Changelog' },
{ id: 'faq', label: 'FAQ', description: 'Common questions' },
{ id: 'troubleshooting', label: 'Troubleshooting', description: 'Common issues' },
{ id: 'changelog', label: 'Changelog', description: 'Latest updates' },
{ id: 'style-guide', label: 'Style Guide', description: 'UI components' },
],
},
{
title: 'Developers',
items: [
{
id: 'developers-guide',
label: 'Developers Guide',
description: 'Scenarios, testing & quality',
},
],
},
];