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
29 changes: 17 additions & 12 deletions docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -708,13 +708,23 @@ export default withMermaid(

"/dev-tools/": [
{
text: "Build and extend Plane",
text: "Build on and extend Plane",
items: [
{
text: "Agents",
link: "/dev-tools/agents/overview",
collapsed: false,
items: [
{ text: "Building an agent", link: "/dev-tools/agents/building-an-agent" },
{ text: "Best practices", link: "/dev-tools/agents/best-practices" },
{ text: "Signals and content payload", link: "/dev-tools/agents/signals-content-payload" },
],
},
{
text: "Build Plane App",
link: "/dev-tools/build-plane-app/overview",
collapsed: false,
items: [
{ text: "Overview", link: "/dev-tools/build-plane-app/overview" },
{ text: "Create an OAuth application", link: "/dev-tools/build-plane-app/create-oauth-application" },
{ text: "Choose token Flow", link: "/dev-tools/build-plane-app/choose-token-flow" },
{ text: "Handling webhooks", link: "/dev-tools/build-plane-app/webhooks" },
Expand All @@ -723,20 +733,15 @@ export default withMermaid(
{ text: "Complete examples", link: "/dev-tools/build-plane-app/examples" },
],
},

{
text: "Agents",
text: "MCP Server",
link: "/dev-tools/mcp-server",
collapsed: false,
items: [
{ text: "Overview", link: "/dev-tools/agents/overview" },
{ text: "Building an agent", link: "/dev-tools/agents/building-an-agent" },
{ text: "Best practices", link: "/dev-tools/agents/best-practices" },
{ text: "Signals and content payload", link: "/dev-tools/agents/signals-content-payload" },
],
items: [{ text: "For Claude Code", link: "/dev-tools/mcp-server-claude-code" }],
},
{ text: "Webhooks", link: "/dev-tools/intro-webhooks" },
{ text: "MCP Server", link: "/dev-tools/mcp-server" },
{ text: "MCP Server for Claude Code", link: "/dev-tools/mcp-server-claude-code" },
{ text: "Plane Compose", link: "/dev-tools/plane-compose" },
{ text: "Webhooks", link: "/dev-tools/intro-webhooks" },
],
},
],
Expand Down
4 changes: 4 additions & 0 deletions vercel.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,10 @@
{
"source": "/plane-one/introduction",
"destination": "/self-hosting/overview"
},
{
"source": "/dev-tools/build-plane-app",
"destination": "/dev-tools/build-plane-app/overview"
}
]
}