> ## Documentation Index
> Fetch the complete documentation index at: https://docs.buntime.sh/llms.txt
> Use this file to discover all available pages before exploring further.

# Multi-file Projects

> Build complex applications with multiple files

## Overview

Build complex applications across multiple files. buntime.sh supports full project structures with imports, dependencies, and organized code.

<Note>
  Full documentation coming soon. See [API Reference](/api-reference/execution/execute) for multi-file execution examples.
</Note>

## Quick Example

```typescript theme={null}
await client.execute({
  sessionId: session.id,
  files: [
    { path: 'utils.ts', content: 'export const add = (a, b) => a + b;' },
    { path: 'index.ts', content: 'import { add } from "./utils"; console.log(add(2, 3));' }
  ],
  command: 'bun run index.ts'
});
```
