diff --git a/agentic-development/overview.mdx b/agentic-development/overview.mdx index 58b1877..68e6d6c 100644 --- a/agentic-development/overview.mdx +++ b/agentic-development/overview.mdx @@ -11,7 +11,7 @@ AI-assisted development in Tilebox is built around giving agents the same operat Tilebox supports agents through a CLI-based setup. The CLI gives agents a deterministic terminal interface with structured output, machine-readable command discovery, and file-based inputs. Agent skills teach agents how to compose CLI commands into common Tilebox tasks, while the MCP server is available for AI tools where terminal access is limited, such as web-based chat agents. - + Configure an agent with the Tilebox CLI, Tilebox skills, and documentation context. @@ -33,4 +33,4 @@ Tilebox supports agents through a CLI-based setup. The CLI gives agents a determ ## Recommended setup -Use [Onboard your agent](/agentic-development/onboard-your-agent) if you want an AI coding agent to help with Tilebox work in a repository. It covers the default setup with CLI installation, CLI authentication, Tilebox skills, and documentation context. Use the MCP setup when your agent runs in a web or chat environment where commands and terminals are not easy to use. +Use [Onboard your agent](/onboard-your-agent) if you want an AI coding agent to help with Tilebox work in a repository. It covers the default setup with CLI installation, CLI authentication, Tilebox skills, and documentation context. Use the MCP setup when your agent runs in a web or chat environment where commands and terminals are not easy to use. diff --git a/agents.mdx b/agents.mdx index fd1cf30..f794d33 100644 --- a/agents.mdx +++ b/agents.mdx @@ -344,10 +344,10 @@ Tilebox docs: https://docs.tilebox.com ``` -Agent onboarding: +Agent setup: ```text -https://docs.tilebox.com/agentic-development/onboard-your-agent +https://docs.tilebox.com/onboard-your-agent ``` Tilebox MCP: diff --git a/assets/landing/agent-mode-dark.png b/assets/landing/agent-mode-dark.png new file mode 100644 index 0000000..88c9f34 Binary files /dev/null and b/assets/landing/agent-mode-dark.png differ diff --git a/assets/landing/agent-mode-light.png b/assets/landing/agent-mode-light.png new file mode 100644 index 0000000..647d8f5 Binary files /dev/null and b/assets/landing/agent-mode-light.png differ diff --git a/assets/landing/developer-mode-dark.png b/assets/landing/developer-mode-dark.png new file mode 100644 index 0000000..50b61eb Binary files /dev/null and b/assets/landing/developer-mode-dark.png differ diff --git a/assets/landing/developer-mode-light.png b/assets/landing/developer-mode-light.png new file mode 100644 index 0000000..beb5f25 Binary files /dev/null and b/assets/landing/developer-mode-light.png differ diff --git a/changelog.mdx b/changelog.mdx index be23e99..1ea1169 100644 --- a/changelog.mdx +++ b/changelog.mdx @@ -2,6 +2,7 @@ title: Product Updates description: A chronological record of new features, improvements, and other notable changes shipped across the Tilebox platform. Updated regularly with each new release. icon: rss +mode: center --- diff --git a/docs.json b/docs.json index ede3642..a7ab77e 100644 --- a/docs.json +++ b/docs.json @@ -24,8 +24,8 @@ { "group": "Get Started", "pages": [ - "introduction", "quickstart", + "onboard-your-agent", "console", "authentication" ] @@ -34,7 +34,6 @@ "group": "Agentic Development", "pages": [ "agentic-development/overview", - "agentic-development/onboard-your-agent", "agentic-development/ai-interfaces", "agentic-development/tilebox-cli", "agentic-development/tilebox-mcp", diff --git a/index.mdx b/index.mdx new file mode 100644 index 0000000..db6bc68 --- /dev/null +++ b/index.mdx @@ -0,0 +1,314 @@ +--- +title: Tilebox +sidebarTitle: Introduction +description: "One API for humans and agents to discover data, run workflows, and debug results across environments." +icon: house +mode: custom +'og:title': "Tilebox Docs" +--- + +export const HomeSearch = () => { + const openSearch = () => { + const isMac = typeof navigator !== "undefined" && /Mac|iPhone|iPad|iPod/.test(navigator.platform); + const event = new KeyboardEvent("keydown", { + key: "k", + code: "KeyK", + metaKey: isMac, + ctrlKey: !isMac, + bubbles: true, + }); + document.dispatchEvent(event); + window.dispatchEvent(event); + }; + + return ( + + ); +}; + +