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
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
node_modules/
.npm-cache/
dist/
docs/.vitepress/cache/
docs/.vitepress/dist/
docs/.astro/
packages/*/dist/
packages/*/temp/
coverage/
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ Runnable examples live in [`examples/`](./examples/) and are indexed in [`exampl
## Docs

- [Public Docs](https://execbox.aallam.com)
- [Getting Started Guide](./docs/getting-started.md)
- [Execbox Architecture Overview](./docs/architecture/README.md)
- [Getting Started Guide](./docs/src/content/docs/getting-started.md)
- [Execbox Architecture Overview](./docs/src/content/docs/architecture/index.md)
75 changes: 0 additions & 75 deletions docs/.vitepress/config.ts

This file was deleted.

10 changes: 0 additions & 10 deletions docs/.vitepress/theme/custom.css

This file was deleted.

5 changes: 0 additions & 5 deletions docs/.vitepress/theme/index.ts

This file was deleted.

102 changes: 0 additions & 102 deletions docs/architecture/README.md

This file was deleted.

76 changes: 76 additions & 0 deletions docs/astro.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
import starlight from "@astrojs/starlight";
import { defineConfig } from "astro/config";
import mermaid from "astro-mermaid";

export default defineConfig({
site: "https://execbox.aallam.com",
integrations: [
mermaid({
autoTheme: true,
enableLog: false,
mermaidConfig: {
securityLevel: "loose",
},
}),
starlight({
title: "execbox",
description:
"Portable code execution for MCP tools and wrapped MCP servers.",
customCss: ["/src/styles/custom.css"],
lastUpdated: true,
pagefind: true,
social: [
{
icon: "github",
label: "GitHub",
href: "https://github.com/aallam/execbox",
},
],
sidebar: [
{
label: "Start",
items: [
{ label: "Overview", link: "/" },
{ label: "Getting Started", slug: "getting-started" },
{ label: "Runtime Choices", slug: "runtime-choices" },
],
},
{
label: "Use",
items: [
{ label: "Examples", slug: "examples" },
{
label: "MCP Provider",
slug: "architecture/execbox-mcp-and-protocol",
},
{
label: "Remote Runner",
slug: "architecture/execbox-remote-workflow",
},
],
},
{
label: "Understand",
items: [
{ label: "Security", slug: "security" },
{ label: "Architecture", slug: "architecture" },
{ label: "Performance", slug: "performance" },
],
},
{
label: "Reference",
items: [
{
label: "Protocol",
slug: "architecture/execbox-protocol-reference",
},
{
label: "Runner Specification",
slug: "architecture/execbox-runner-specification",
},
],
},
],
}),
],
});
53 changes: 0 additions & 53 deletions docs/index.md

This file was deleted.

7 changes: 7 additions & 0 deletions docs/src/content.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { defineCollection } from "astro:content";
import { docsLoader } from "@astrojs/starlight/loaders";
import { docsSchema } from "@astrojs/starlight/schema";

export const collections = {
docs: defineCollection({ loader: docsLoader(), schema: docsSchema() }),
};
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Execbox Core Architecture
---
title: Execbox Core Architecture
description: Provider resolution, execution contracts, shared runner semantics, and errors in execbox core.
---

This page covers the parts of execbox that stay stable regardless of which executor package you choose.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Execbox Executors
---
title: Execbox Executors
description: Compare inline QuickJS, worker-hosted QuickJS, and remote executor trade-offs.
---

This page explains how the available executors differ and what trade-offs they make.

Expand Down
Loading
Loading